diff --git a/migrate_shards.py b/migrate_shards.py new file mode 100644 index 0000000000000000000000000000000000000000..ce172b52e23f559a1ef001dbce4dc1555a6fa098 --- /dev/null +++ b/migrate_shards.py @@ -0,0 +1,53 @@ +import os +import shutil +from pathlib import Path +import json + +SOURCE_ROOT = Path("source") + +def shard_numeric(id_val): + return f"{int(id_val) // 1000:03d}" + +def shard_string(slug): + return slug[0].lower() if slug else "_" + +CONFIG = { + "flights": shard_numeric, + "products": shard_numeric, + "reviews": shard_numeric, + "motors": shard_numeric, + "designs": shard_numeric, + "clubs": shard_numeric, + "parts": shard_string, + "glossary": shard_string, + "plans": shard_string, +} + +def migrate(): + for entity, shard_fn in CONFIG.items(): + detail_dir = SOURCE_ROOT / entity / "detail" + if not detail_dir.exists(): + continue + + print(f"Migrating {entity}...") + + # Iterate over files in the detail directory + files = [f for f in detail_dir.iterdir() if f.is_file() and f.suffix == ".json"] + + for f in files: + # Extract ID/slug from filename + name = f.stem + try: + # Most numeric ones are 000123.json + # Most string ones are slug.json + shard = shard_fn(name) + shard_path = detail_dir / shard + shard_path.mkdir(parents=True, exist_ok=True) + + dest = shard_path / f.name + shutil.move(str(f), str(dest)) + except Exception as e: + print(f"Error moving {f}: {e}") + +if __name__ == "__main__": + migrate() diff --git a/source/designs/detail/004743.json b/source/designs/detail/004/004743.json similarity index 100% rename from source/designs/detail/004743.json rename to source/designs/detail/004/004743.json diff --git a/source/designs/detail/004744.json b/source/designs/detail/004/004744.json similarity index 100% rename from source/designs/detail/004744.json rename to source/designs/detail/004/004744.json diff --git a/source/designs/detail/004745.json b/source/designs/detail/004/004745.json similarity index 100% rename from source/designs/detail/004745.json rename to source/designs/detail/004/004745.json diff --git a/source/designs/detail/004746.json b/source/designs/detail/004/004746.json similarity index 100% rename from source/designs/detail/004746.json rename to source/designs/detail/004/004746.json diff --git a/source/designs/detail/004747.json b/source/designs/detail/004/004747.json similarity index 100% rename from source/designs/detail/004747.json rename to source/designs/detail/004/004747.json diff --git a/source/designs/detail/004748.json b/source/designs/detail/004/004748.json similarity index 100% rename from source/designs/detail/004748.json rename to source/designs/detail/004/004748.json diff --git a/source/designs/detail/004/004749.json b/source/designs/detail/004/004749.json new file mode 100644 index 0000000000000000000000000000000000000000..3cb0fc79f0f48fb12fa8375b58648b617704d3ac --- /dev/null +++ b/source/designs/detail/004/004749.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dd0085d03bb69c883e947c4a1060085fc37b055f6dca0b28e3014a152cf60ba +size 1791 diff --git a/source/designs/detail/004/004750.json b/source/designs/detail/004/004750.json new file mode 100644 index 0000000000000000000000000000000000000000..e7381132f4aff5975b304badd668c56ef436bae4 --- /dev/null +++ b/source/designs/detail/004/004750.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4c36ed7892fca03a2e8f752b06d24ee7ea57c15b2e1b4ee33c66c0b9f30312 +size 1640 diff --git a/source/designs/detail/004/004751.json b/source/designs/detail/004/004751.json new file mode 100644 index 0000000000000000000000000000000000000000..0f35d9fd4ddab55bd19e50a0e4d1691848153e07 --- /dev/null +++ b/source/designs/detail/004/004751.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7876eefb72f75fc8796f4e0a1d3111ea6334d71982a840e9d7479aa6867cbfcc +size 1370 diff --git a/source/designs/detail/004/004752.json b/source/designs/detail/004/004752.json new file mode 100644 index 0000000000000000000000000000000000000000..2478a522b7212f9819fdea0de7138b261d26bc37 --- /dev/null +++ b/source/designs/detail/004/004752.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717a2dae07266a2f85c2769aeefa14c8f4b7aba5ce46a593ec5d0770e9729521 +size 1163 diff --git a/source/designs/detail/004/004753.json b/source/designs/detail/004/004753.json new file mode 100644 index 0000000000000000000000000000000000000000..f03099e588740c30c01a61c98c493d37de1ac59c --- /dev/null +++ b/source/designs/detail/004/004753.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe570c3f47be0d612ce2843ab9ce5f59b957618355b8b4e1f783930010461e97 +size 1154 diff --git a/source/designs/detail/004/004754.json b/source/designs/detail/004/004754.json new file mode 100644 index 0000000000000000000000000000000000000000..78d9a3c57134cede255b4f4f06f93b0a95732e2b --- /dev/null +++ b/source/designs/detail/004/004754.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9807a536c30a6b24b0c2d1934f8f5f66c8060120698f4c9cbd5f9fc8b34cab7 +size 1367 diff --git a/source/designs/detail/004/004755.json b/source/designs/detail/004/004755.json new file mode 100644 index 0000000000000000000000000000000000000000..8a75759d43d5e296343626bec2981ea92f76d70b --- /dev/null +++ b/source/designs/detail/004/004755.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fae5e7930de91f275e127f580b1d884ed4cb1456fed676755d0713372602846 +size 1702 diff --git a/source/designs/detail/004/004756.json b/source/designs/detail/004/004756.json new file mode 100644 index 0000000000000000000000000000000000000000..e8768d832f9263a0573a9a698c2bc96d109cf371 --- /dev/null +++ b/source/designs/detail/004/004756.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbd837c0a52f47b41d2d3cfd7a5c049948c5b5671fc1eddf26a62faabf6b859 +size 1619 diff --git a/source/designs/detail/004/004757.json b/source/designs/detail/004/004757.json new file mode 100644 index 0000000000000000000000000000000000000000..8cf603ec05d85244c0279c3cc30926e1676f859a --- /dev/null +++ b/source/designs/detail/004/004757.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db25e8567642ad00e87af3aa560d39cd865b64ff856384d8364d3010c56b27c7 +size 1977 diff --git a/source/designs/detail/004/004758.json b/source/designs/detail/004/004758.json new file mode 100644 index 0000000000000000000000000000000000000000..2d5fedf1845b92c1cad116be1b564d0a531acaf3 --- /dev/null +++ b/source/designs/detail/004/004758.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b8a433083a6784d5051bdd5368f3e505fbfe7e3267ecc4c12507e300af5812 +size 1705 diff --git a/source/designs/detail/004/004759.json b/source/designs/detail/004/004759.json new file mode 100644 index 0000000000000000000000000000000000000000..37af9313d719b6bf1df76b77a89dd48de3de96bb --- /dev/null +++ b/source/designs/detail/004/004759.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423b4dc243590dd49aa82887f22bafc5504b3f764d7f65479b292b3271eb6d13 +size 2083 diff --git a/source/designs/detail/004/004760.json b/source/designs/detail/004/004760.json new file mode 100644 index 0000000000000000000000000000000000000000..66a41de7fdd465343b6dc15efe93b7cb6d5eebed --- /dev/null +++ b/source/designs/detail/004/004760.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef48549378fa8855733f22320a827cad76408e3f2444ac2df5fc1fe4b92f4625 +size 1675 diff --git a/source/designs/detail/004/004761.json b/source/designs/detail/004/004761.json new file mode 100644 index 0000000000000000000000000000000000000000..e504331596919fe1dec0af4b5c367b50e9299833 --- /dev/null +++ b/source/designs/detail/004/004761.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aae5af0fbb0852557a1fe27b4fd6f0be5d1bc8f5e9ae51d803e2704484789edd +size 1405 diff --git a/source/designs/detail/004/004762.json b/source/designs/detail/004/004762.json new file mode 100644 index 0000000000000000000000000000000000000000..47d85d1109a9a6ed216b3b66c7308898012b1400 --- /dev/null +++ b/source/designs/detail/004/004762.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00072b0e44d78cc63e172a778cc7a4dbdfe3b83b6ba036f274f7884421927f63 +size 1202 diff --git a/source/designs/detail/004/004763.json b/source/designs/detail/004/004763.json new file mode 100644 index 0000000000000000000000000000000000000000..4b996327ea98e61fbde6d3f062901c2a563f68da --- /dev/null +++ b/source/designs/detail/004/004763.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e0e98352d89e9a3fde125cabe721f3667099074aa86928a9e97ab025313612 +size 1401 diff --git a/source/designs/detail/004/004764.json b/source/designs/detail/004/004764.json new file mode 100644 index 0000000000000000000000000000000000000000..98c09e2cd08eea827d37f3cc4e3ebe730b3f38b8 --- /dev/null +++ b/source/designs/detail/004/004764.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6106bd4527f33bbe26a47f6418e3408edd8ceaced1a431d20b403c56d7e4f23e +size 1343 diff --git a/source/designs/detail/004/004765.json b/source/designs/detail/004/004765.json new file mode 100644 index 0000000000000000000000000000000000000000..935b6f14021113bd81d4193481b28c1b29642f4d --- /dev/null +++ b/source/designs/detail/004/004765.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d05004c809600417433ab060368b9753514423686b1e5735f103ca5670be76 +size 1310 diff --git a/source/designs/detail/004/004766.json b/source/designs/detail/004/004766.json new file mode 100644 index 0000000000000000000000000000000000000000..14fd1db7054087d36707b38fac55ae38577335aa --- /dev/null +++ b/source/designs/detail/004/004766.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8714026437003e184ab025904a666404cfdc95d046183bd7646a799190ec25 +size 1471 diff --git a/source/designs/detail/004/004767.json b/source/designs/detail/004/004767.json new file mode 100644 index 0000000000000000000000000000000000000000..cb81bb90a4286b3d84247ba39c38bbcdfc68743f --- /dev/null +++ b/source/designs/detail/004/004767.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb88d80a2b3d99bf4762820b879a5e420dd10a5683e43d683b341e75cabd8e6 +size 1807 diff --git a/source/designs/detail/004/004768.json b/source/designs/detail/004/004768.json new file mode 100644 index 0000000000000000000000000000000000000000..95abb1734b26438dd727d64007392a25e191b456 --- /dev/null +++ b/source/designs/detail/004/004768.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4405dffb2250e9ab994b28ede6734d62e0b78636efae2ad8eea1fc336566715f +size 1832 diff --git a/source/designs/detail/004/004769.json b/source/designs/detail/004/004769.json new file mode 100644 index 0000000000000000000000000000000000000000..9a2960d520ee24bba26fb10c24b938277b8cd48d --- /dev/null +++ b/source/designs/detail/004/004769.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a59c0fb9607f3fc55de99572f58bb5bdc3a425146e322ec16219a7ca4ce734 +size 1192 diff --git a/source/designs/detail/004/004770.json b/source/designs/detail/004/004770.json new file mode 100644 index 0000000000000000000000000000000000000000..45feb2b04fe98fb1c3d817f6108dcee2bd75ece0 --- /dev/null +++ b/source/designs/detail/004/004770.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc53e9168c43c06936edabf6b425d23c7feb304dda3524fb38ca2764024c0e5 +size 1191 diff --git a/source/designs/detail/004/004771.json b/source/designs/detail/004/004771.json new file mode 100644 index 0000000000000000000000000000000000000000..c941ac5b714e57f67589cb85cff021060c0cd8f0 --- /dev/null +++ b/source/designs/detail/004/004771.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a8350461607e51a20b0b225b47e75726e8c0151f7ce7448707e2d47ce8bf696 +size 1340 diff --git a/source/designs/detail/004/004772.json b/source/designs/detail/004/004772.json new file mode 100644 index 0000000000000000000000000000000000000000..a949bb584b46b00a57a8ee28d5362c9c495c9f8e --- /dev/null +++ b/source/designs/detail/004/004772.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:110e51013c3fe31316b61a9b1ca5a739d1fa90e249fc65a86b847fcf15652429 +size 1590 diff --git a/source/designs/detail/004/004773.json b/source/designs/detail/004/004773.json new file mode 100644 index 0000000000000000000000000000000000000000..e849cb9e929005c9b868710d8d5e17533497fbf1 --- /dev/null +++ b/source/designs/detail/004/004773.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90f2edeb3fc118700a2af3ef659fd22eea515cf82fb4927dbc72f48602c122c +size 1524 diff --git a/source/designs/detail/004/004774.json b/source/designs/detail/004/004774.json new file mode 100644 index 0000000000000000000000000000000000000000..04dda702e194a2c0620ce68b3e9f1ff72276f6f5 --- /dev/null +++ b/source/designs/detail/004/004774.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34bf131717b6434972305317fb824354339b72cc689d120ab5ca03476314f7ed +size 1875 diff --git a/source/designs/detail/004/004775.json b/source/designs/detail/004/004775.json new file mode 100644 index 0000000000000000000000000000000000000000..6850e8c8114481dae2b645aa3488e9615b3eb3c4 --- /dev/null +++ b/source/designs/detail/004/004775.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f65e1f5b4331c544511d1632441217be31a3702122877b32a537d64bdeb9156a +size 1655 diff --git a/source/designs/detail/004/004776.json b/source/designs/detail/004/004776.json new file mode 100644 index 0000000000000000000000000000000000000000..7cb11b293f6a017054c80d77d928bb01d9ed77eb --- /dev/null +++ b/source/designs/detail/004/004776.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc30b451235fa323c4b6736209e9b8b0f07d467a9a880b645da619f82ea6d62 +size 1350 diff --git a/source/designs/detail/004/004777.json b/source/designs/detail/004/004777.json new file mode 100644 index 0000000000000000000000000000000000000000..4590656c4fc1056917527e8c3cef299a51e35665 --- /dev/null +++ b/source/designs/detail/004/004777.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af9f9b66b2ce6ef1416a563c39dc999bd3a056026f01ed3caf7c1cd16598923 +size 1580 diff --git a/source/designs/detail/004/004778.json b/source/designs/detail/004/004778.json new file mode 100644 index 0000000000000000000000000000000000000000..c32048edb6c03e5fa059b0dfddf785fe0323e76d --- /dev/null +++ b/source/designs/detail/004/004778.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356bb307c0ac41f3677badb8c528c6011acf3c8f7a32b87befa1f054673adce4 +size 1396 diff --git a/source/designs/detail/004/004779.json b/source/designs/detail/004/004779.json new file mode 100644 index 0000000000000000000000000000000000000000..e03f76ca4561c5551efd4ed9a1691f3f0cd1f347 --- /dev/null +++ b/source/designs/detail/004/004779.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9228623f4ad680fa9635eb42c7e722c6123c4c672ff677c305c2bc13299be22e +size 2054 diff --git a/source/designs/detail/004/004780.json b/source/designs/detail/004/004780.json new file mode 100644 index 0000000000000000000000000000000000000000..c191370ebc88d57582d5f58378c34804e37431ec --- /dev/null +++ b/source/designs/detail/004/004780.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a974a5cd1ba2d7637d4cf38f9319a7eac2794f3b185e89174b59108121ce5636 +size 1368 diff --git a/source/designs/detail/004/004795.json b/source/designs/detail/004/004795.json new file mode 100644 index 0000000000000000000000000000000000000000..0af919bb9eaec4ddc2087de74a313d79357c88b5 --- /dev/null +++ b/source/designs/detail/004/004795.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06234503913b0e8f6c2536aa1a9357262d64ec8e5690a67b27c8353200359512 +size 1213 diff --git a/source/designs/detail/004820.json b/source/designs/detail/004/004820.json similarity index 100% rename from source/designs/detail/004820.json rename to source/designs/detail/004/004820.json diff --git a/source/designs/detail/004/004821.json b/source/designs/detail/004/004821.json new file mode 100644 index 0000000000000000000000000000000000000000..20707d0b560bd549c3e8b079812181442df0f32f --- /dev/null +++ b/source/designs/detail/004/004821.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0bb296165d21a1649bbe9a482680034e61cb2af639c8c1a95a1a49ba4ded4a7 +size 1810 diff --git a/source/designs/detail/004/004822.json b/source/designs/detail/004/004822.json new file mode 100644 index 0000000000000000000000000000000000000000..601051fdaae5cc78523527dd301f343165968775 --- /dev/null +++ b/source/designs/detail/004/004822.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cf17a4db58f72feaefff8d50808d16b8496e77816e9f75ea9b1284b412092c +size 1665 diff --git a/source/designs/detail/004/004823.json b/source/designs/detail/004/004823.json new file mode 100644 index 0000000000000000000000000000000000000000..b3662ead2a4677def7caa812dc1dbcdc773fb02b --- /dev/null +++ b/source/designs/detail/004/004823.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d811f2995993f8ae9213523481c02fd30a21d144c51afc5a80ac1c96fb4af12 +size 1769 diff --git a/source/designs/detail/004/004824.json b/source/designs/detail/004/004824.json new file mode 100644 index 0000000000000000000000000000000000000000..9646b874c6331187fef12e17e4d3a4900fbb6105 --- /dev/null +++ b/source/designs/detail/004/004824.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fce2924144f3bd5f7b38bff4e6dc2e9b2fa26038581defd7070a66a98cc0496 +size 1252 diff --git a/source/designs/detail/004/004825.json b/source/designs/detail/004/004825.json new file mode 100644 index 0000000000000000000000000000000000000000..a99b5a258e383470a1f96eb080ed2221d75cc692 --- /dev/null +++ b/source/designs/detail/004/004825.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3591f9f535fc92b42bb21d2f13fbcfeda54d3ecf8109f8d32b4b12e8affd208 +size 1589 diff --git a/source/designs/detail/004/004826.json b/source/designs/detail/004/004826.json new file mode 100644 index 0000000000000000000000000000000000000000..b96300cf99cca1081dff9fa5bc99617b50417717 --- /dev/null +++ b/source/designs/detail/004/004826.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1904b9db3f9ce2a0693f46fdb75f321161eb345bfadf3eebb3c384d9282757 +size 1532 diff --git a/source/designs/detail/004/004827.json b/source/designs/detail/004/004827.json new file mode 100644 index 0000000000000000000000000000000000000000..09301b23e61dce239b367ea0f7b68cf2de8456b4 --- /dev/null +++ b/source/designs/detail/004/004827.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54f2011d456589f951a7a98695149dd62e410e368450ede787d92334c4107df0 +size 1971 diff --git a/source/designs/detail/004/004828.json b/source/designs/detail/004/004828.json new file mode 100644 index 0000000000000000000000000000000000000000..fa38a11fd192264ab4386b7f89b4b75b2fa0f2b9 --- /dev/null +++ b/source/designs/detail/004/004828.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc902f70c589803416bceab68651f442d7a4d9f9abb7d8b8b0362a77eac2acf2 +size 1465 diff --git a/source/designs/detail/004/004829.json b/source/designs/detail/004/004829.json new file mode 100644 index 0000000000000000000000000000000000000000..a6a968407e9093695a7b8b07ad00242e099e7af3 --- /dev/null +++ b/source/designs/detail/004/004829.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3736787df0e0b81a3c5a4be0b812a7b42e3a0a8c8f509c4d68dcf09c75a6085d +size 1768 diff --git a/source/designs/detail/004/004830.json b/source/designs/detail/004/004830.json new file mode 100644 index 0000000000000000000000000000000000000000..697ddc5690c8ba284c16b866fbc1b92e3838fca0 --- /dev/null +++ b/source/designs/detail/004/004830.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfca4cb5101fe6d0ce296fc43868f4e8c90c436c4ec0d5d622d18f855d50ade +size 1831 diff --git a/source/designs/detail/004/004831.json b/source/designs/detail/004/004831.json new file mode 100644 index 0000000000000000000000000000000000000000..9b1e77be9ccda878703583a05b1ac46dadbdb434 --- /dev/null +++ b/source/designs/detail/004/004831.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58ae57cd7f2dcc798ecdae99cff4f55293bfe6a058eeb58e72973c1c2e648c3 +size 2098 diff --git a/source/designs/detail/004/004832.json b/source/designs/detail/004/004832.json new file mode 100644 index 0000000000000000000000000000000000000000..52418ae3c049e9d39fc75023bb4b681153b569f4 --- /dev/null +++ b/source/designs/detail/004/004832.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d79c6c8a5321798dedb6d986e355c31cc444f6ab08790b139e8ff79228d603 +size 1804 diff --git a/source/designs/detail/004/004833.json b/source/designs/detail/004/004833.json new file mode 100644 index 0000000000000000000000000000000000000000..0d4b300b40b448058bba68ef09475f913217b688 --- /dev/null +++ b/source/designs/detail/004/004833.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cadc0f6046ddedc076cbdb2c800d220b8749ed254a543f00ed89077405a1429 +size 1794 diff --git a/source/designs/detail/004/004834.json b/source/designs/detail/004/004834.json new file mode 100644 index 0000000000000000000000000000000000000000..e460c6b11cb29293c8141d532e2ec41c43f84e5e --- /dev/null +++ b/source/designs/detail/004/004834.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04d50ce79148204d59d16c2e4ff3d558c6f553c4d6bfab87d805f9e2ef3a7da +size 1095 diff --git a/source/designs/detail/004/004835.json b/source/designs/detail/004/004835.json new file mode 100644 index 0000000000000000000000000000000000000000..26beb685a12908e036e8a25b8ec627117dd376f1 --- /dev/null +++ b/source/designs/detail/004/004835.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b629eeb0b255b0411d0223707e35b5e5780e9b149d91d5826f3477aab9f606 +size 1481 diff --git a/source/designs/detail/004/004836.json b/source/designs/detail/004/004836.json new file mode 100644 index 0000000000000000000000000000000000000000..86ef6873f665b2b6abee7e9580a47d3f752f9075 --- /dev/null +++ b/source/designs/detail/004/004836.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ab1dbaf3c3401b781947cb7d45d8a09498e572df8607d366695bad2f16633f +size 1297 diff --git a/source/designs/detail/004/004837.json b/source/designs/detail/004/004837.json new file mode 100644 index 0000000000000000000000000000000000000000..cb3752a4bb4112378624e56c93be18ccffb876c2 --- /dev/null +++ b/source/designs/detail/004/004837.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01950b3321e94747f2c088e207eb87292740ec2e48f0cd3b67c48ed69211a245 +size 1311 diff --git a/source/designs/detail/004/004838.json b/source/designs/detail/004/004838.json new file mode 100644 index 0000000000000000000000000000000000000000..f2f953bc49776974a3564e7dd2f77be980f149b0 --- /dev/null +++ b/source/designs/detail/004/004838.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2878986a3a7f2844b35d34fc791aea19b02e5f41a2658c58e8e2949d2c50accf +size 1997 diff --git a/source/designs/detail/004/004839.json b/source/designs/detail/004/004839.json new file mode 100644 index 0000000000000000000000000000000000000000..f06fc77ac0e4e0aa2b83cb8cc029e28e507f9753 --- /dev/null +++ b/source/designs/detail/004/004839.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eb2badf3f688f7c35477e3c8b9ab76d0daf8ae743f02e200b36aef36e0a9053 +size 1940 diff --git a/source/designs/detail/004/004840.json b/source/designs/detail/004/004840.json new file mode 100644 index 0000000000000000000000000000000000000000..820725f2108bf51b38d8556c762d552da5129401 --- /dev/null +++ b/source/designs/detail/004/004840.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003a6d7275b296c326d5d904cbeedc4c3596eb9fe8c5da3f29369da89bf2bb9a +size 1750 diff --git a/source/designs/detail/004/004841.json b/source/designs/detail/004/004841.json new file mode 100644 index 0000000000000000000000000000000000000000..5829f4d02b81ea9bd68ab4c0ed268f981a2d2ad8 --- /dev/null +++ b/source/designs/detail/004/004841.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229fad0689e486405ac6c86c10a65cebfe8e69111b54b78dcb41f68b04b1de60 +size 1578 diff --git a/source/designs/detail/004/004842.json b/source/designs/detail/004/004842.json new file mode 100644 index 0000000000000000000000000000000000000000..ebe1a2d534646b2eae8a64324dc2707b614de571 --- /dev/null +++ b/source/designs/detail/004/004842.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31f61026a5ced73211de4c30e60083ca0d0d7191d82f5543e4f122a336008441 +size 1937 diff --git a/source/designs/detail/004/004843.json b/source/designs/detail/004/004843.json new file mode 100644 index 0000000000000000000000000000000000000000..57310b483af9b4cf4fbd75fd4ea4e2f03942245e --- /dev/null +++ b/source/designs/detail/004/004843.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece7518d1e8ce4519afac2a376ded76d55eb4d1f639f15d463e2a7c10e78a190 +size 1948 diff --git a/source/designs/detail/004/004844.json b/source/designs/detail/004/004844.json new file mode 100644 index 0000000000000000000000000000000000000000..67bab338738ca4575574d067b21a7dae07888a28 --- /dev/null +++ b/source/designs/detail/004/004844.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:436a9170454c001741324ec5b2f207e0b3f5cc27c25c95f81851a71d288cd8d4 +size 1881 diff --git a/source/designs/detail/004/004845.json b/source/designs/detail/004/004845.json new file mode 100644 index 0000000000000000000000000000000000000000..2df7f867e3bbad55d95e6077dac874be2b931a9a --- /dev/null +++ b/source/designs/detail/004/004845.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a6b09d73c6f6ebfa6b48d1014fa140b729d63ad40a931ac087651f8dd5469ad +size 2056 diff --git a/source/designs/detail/004/004846.json b/source/designs/detail/004/004846.json new file mode 100644 index 0000000000000000000000000000000000000000..a62ac2c983182c4133636089cd9d386427154f72 --- /dev/null +++ b/source/designs/detail/004/004846.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82795bf848b23798a0b2ed3c35a46414f05850ea8f6a91ee465680db3da7919a +size 2117 diff --git a/source/designs/detail/004/004847.json b/source/designs/detail/004/004847.json new file mode 100644 index 0000000000000000000000000000000000000000..8422891048746fc8e48940c6051a4696dc27704f --- /dev/null +++ b/source/designs/detail/004/004847.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7cdacf27342ff82c916c6a4c11a1fbd24b47a232944a7a3b90b446ba549a094 +size 3317 diff --git a/source/designs/detail/004/004848.json b/source/designs/detail/004/004848.json new file mode 100644 index 0000000000000000000000000000000000000000..df0b8fccbc3a8b3d9aff47446de9dd16af7327c8 --- /dev/null +++ b/source/designs/detail/004/004848.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9be957ffd89081923f77f7b76ad0b76a50552bb0893d41ab47a6b223f47377 +size 2588 diff --git a/source/designs/detail/004/004849.json b/source/designs/detail/004/004849.json new file mode 100644 index 0000000000000000000000000000000000000000..70b01f0db941a93a81963d33f54ca96891eda363 --- /dev/null +++ b/source/designs/detail/004/004849.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717351c8c5acd085839fc29c82b3cc8ed96eb8af382deb6881e9684217e98da2 +size 1414 diff --git a/source/designs/detail/004/004850.json b/source/designs/detail/004/004850.json new file mode 100644 index 0000000000000000000000000000000000000000..e8cc869434e58ca22cff0bbb78c33d5bd8eabe9d --- /dev/null +++ b/source/designs/detail/004/004850.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea9065adcf14a8a6810d0d70c2c96b8e11ae853bd384e0775d5da038d248698 +size 1196 diff --git a/source/designs/detail/004/004851.json b/source/designs/detail/004/004851.json new file mode 100644 index 0000000000000000000000000000000000000000..b4c04eb336fd4b5eb6668145cd5c8c190695b04e --- /dev/null +++ b/source/designs/detail/004/004851.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f276842ba45541b874f9473126c70f1edccc17728d78151847bd9f4c673955 +size 1755 diff --git a/source/designs/detail/004/004852.json b/source/designs/detail/004/004852.json new file mode 100644 index 0000000000000000000000000000000000000000..50eb052e35ba9191059b62468f5b7cffc4b0dcb5 --- /dev/null +++ b/source/designs/detail/004/004852.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6df28c5bc1f9389fb086e61d2525790e688f30b0d21d3f7199576a186d6e8db +size 2187 diff --git a/source/designs/detail/004/004853.json b/source/designs/detail/004/004853.json new file mode 100644 index 0000000000000000000000000000000000000000..bbc31fb4e987ab7fa8b96e3f3369ada777b1cc21 --- /dev/null +++ b/source/designs/detail/004/004853.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4cd8160fcd6daa218523d748bfb3793a0e956cc7248deddf264e4a069de6ab7 +size 2476 diff --git a/source/designs/detail/004/004854.json b/source/designs/detail/004/004854.json new file mode 100644 index 0000000000000000000000000000000000000000..6bfcea5ee12f826c2cf43663926a4cc647022e7c --- /dev/null +++ b/source/designs/detail/004/004854.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c34e36939b97ae812993682e31357a3ed3883fefa69df255fe4c25ded377eed5 +size 1406 diff --git a/source/designs/detail/004/004855.json b/source/designs/detail/004/004855.json new file mode 100644 index 0000000000000000000000000000000000000000..b14c66480c930ee24ea7ff494cd79ffa0d86b261 --- /dev/null +++ b/source/designs/detail/004/004855.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30538947fa2b06e5078b47c25fd0fc554e00216ed6c5ae7474f005a5551b54bc +size 1710 diff --git a/source/designs/detail/004/004856.json b/source/designs/detail/004/004856.json new file mode 100644 index 0000000000000000000000000000000000000000..0a7170d6aca2efb4f88ee7e13bdcd81527953f45 --- /dev/null +++ b/source/designs/detail/004/004856.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203b6984c8fe2f4e96fb738a935f372a0d30e25918304711d6200d32f9d9e30c +size 1764 diff --git a/source/designs/detail/004/004857.json b/source/designs/detail/004/004857.json new file mode 100644 index 0000000000000000000000000000000000000000..d0a24511492254d99f412aaaf8ddc1ddd0cb9bc8 --- /dev/null +++ b/source/designs/detail/004/004857.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca6844b52fedad78d07e5797c2f32ea5be213da0c612441f74be38c3d41faba +size 1671 diff --git a/source/designs/detail/004/004858.json b/source/designs/detail/004/004858.json new file mode 100644 index 0000000000000000000000000000000000000000..3b15ad8b2ad91be8c870b6d77a556c071f57c684 --- /dev/null +++ b/source/designs/detail/004/004858.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400990384761122677aee7d35283b3916224d94ffd2846ab7bc787bd2a00be40 +size 1910 diff --git a/source/designs/detail/004/004859.json b/source/designs/detail/004/004859.json new file mode 100644 index 0000000000000000000000000000000000000000..82317c1ea1e32ac9f4f257e2895af8eb578037f4 --- /dev/null +++ b/source/designs/detail/004/004859.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:273a0c4c3cf0bc0c8a1fc84a1128bd0c48d8b58fe7b991fe66608dc79c0d937f +size 1199 diff --git a/source/designs/detail/004/004860.json b/source/designs/detail/004/004860.json new file mode 100644 index 0000000000000000000000000000000000000000..6f188a066432b585621bfb0d9fd88df503da806f --- /dev/null +++ b/source/designs/detail/004/004860.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368c279404b3461c309e17d75ee9d02ff6fd56d6eeacd3dc9d863cd24a7fb769 +size 1519 diff --git a/source/designs/detail/004/004861.json b/source/designs/detail/004/004861.json new file mode 100644 index 0000000000000000000000000000000000000000..441907b00eb13b62aadd4471a194f267428e67d1 --- /dev/null +++ b/source/designs/detail/004/004861.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2521cbe8c6a893046dea4ac74325d3b3910fb15e8c4a5b487574eff8b042522d +size 1809 diff --git a/source/designs/detail/004/004862.json b/source/designs/detail/004/004862.json new file mode 100644 index 0000000000000000000000000000000000000000..f2b9791b9bba1382b3ea3782f064f20b09cb8f22 --- /dev/null +++ b/source/designs/detail/004/004862.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439d3c5c56950d892061b88599157ed2450b6fa2eaacd93eeb134cad48d7efbb +size 1198 diff --git a/source/designs/detail/004/004863.json b/source/designs/detail/004/004863.json new file mode 100644 index 0000000000000000000000000000000000000000..5b999026d3bb92d1b4680254158eaa906fb26e1e --- /dev/null +++ b/source/designs/detail/004/004863.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ace5aad622654a86c881feb3fb3f626fd4b2e0e6b907708e2118342dc104c4 +size 1354 diff --git a/source/designs/detail/004/004864.json b/source/designs/detail/004/004864.json new file mode 100644 index 0000000000000000000000000000000000000000..a31f5ba11950523dc7a1c983b9eebc3cf212ec14 --- /dev/null +++ b/source/designs/detail/004/004864.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2605f00aa1befcf941e41372701906fa0942f79c2a648c11ed15eb735f8214e +size 1392 diff --git a/source/designs/detail/004/004865.json b/source/designs/detail/004/004865.json new file mode 100644 index 0000000000000000000000000000000000000000..f5181e4d8251bdeddac20688f94a038b38eee4fe --- /dev/null +++ b/source/designs/detail/004/004865.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb51312b609aa2ce66a3dc436f503ad2acdda1344d888adf53e959fac9a924d +size 1280 diff --git a/source/designs/detail/004/004866.json b/source/designs/detail/004/004866.json new file mode 100644 index 0000000000000000000000000000000000000000..60f1d3944e2097047f28cebb93a49a4388a1271c --- /dev/null +++ b/source/designs/detail/004/004866.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389403a80f67b9e437210d58fdc77ddafa549dbbfcbcde91a13085c8e516c8c6 +size 1467 diff --git a/source/designs/detail/004/004867.json b/source/designs/detail/004/004867.json new file mode 100644 index 0000000000000000000000000000000000000000..c7eee3327a2b14f6527845edd3c4276f12c369b5 --- /dev/null +++ b/source/designs/detail/004/004867.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f31c7a0ea6da4f61263bef8b6e77343fed99010dbb9c0c323bcce17619a46b62 +size 1453 diff --git a/source/designs/detail/004/004868.json b/source/designs/detail/004/004868.json new file mode 100644 index 0000000000000000000000000000000000000000..4e02e36b38fa2136ce6c10ff0b82a0cab9f2c438 --- /dev/null +++ b/source/designs/detail/004/004868.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289f502f1274b55e795003fa3e21b8077c23783b06305c33b731296a47353516 +size 1213 diff --git a/source/designs/detail/004/004869.json b/source/designs/detail/004/004869.json new file mode 100644 index 0000000000000000000000000000000000000000..00f5de425b8bfb76fb6624d52e42423157c5736a --- /dev/null +++ b/source/designs/detail/004/004869.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce4075dee0c7703c34e14d0cdd203fda2c30a9549c759b933d96098b67e6fa41 +size 1084 diff --git a/source/designs/detail/004/004870.json b/source/designs/detail/004/004870.json new file mode 100644 index 0000000000000000000000000000000000000000..2fea5e2381b8a27acf25719fe1c07b2aef028c20 --- /dev/null +++ b/source/designs/detail/004/004870.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81fb71c1183dc6c4a0ccb1c6078c9d12d9022152ff36d914e409a3a8aa23d88 +size 1347 diff --git a/source/designs/detail/004/004871.json b/source/designs/detail/004/004871.json new file mode 100644 index 0000000000000000000000000000000000000000..5cdcd3ef61db5a86b7e9d57aa0c507f740fff234 --- /dev/null +++ b/source/designs/detail/004/004871.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32bad6cefbef06b17fc26b51a0445b44990851b1846f54deefe3471d81ac7e74 +size 1107 diff --git a/source/designs/detail/004/004872.json b/source/designs/detail/004/004872.json new file mode 100644 index 0000000000000000000000000000000000000000..8b5118fc2e2bb953ba5c10c1d35dcaad210cf7fb --- /dev/null +++ b/source/designs/detail/004/004872.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c54c3d1da371bdde41c040b4e06726582c4e945e656743d4baf5aa31a475d34 +size 1187 diff --git a/source/designs/detail/004/004873.json b/source/designs/detail/004/004873.json new file mode 100644 index 0000000000000000000000000000000000000000..6ecaf9e71bd6726dfbb3b7deb5e4890362c17cf0 --- /dev/null +++ b/source/designs/detail/004/004873.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676d8a6e6463baddd4e8cad35371adea297bbf4835ef84ae43d64e0a4cdd3f4b +size 1091 diff --git a/source/designs/detail/004/004874.json b/source/designs/detail/004/004874.json new file mode 100644 index 0000000000000000000000000000000000000000..6d5ed15e99ef37407e18a4fc3ed5215d672fd5be --- /dev/null +++ b/source/designs/detail/004/004874.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bceb962ab8a4b26e03444db4f1ddfc97c3bc97bbf4ff5dc2ae075cdd65a623e +size 1067 diff --git a/source/designs/detail/004/004875.json b/source/designs/detail/004/004875.json new file mode 100644 index 0000000000000000000000000000000000000000..03eb72fd0e91f86d4358963b920766857e859563 --- /dev/null +++ b/source/designs/detail/004/004875.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ea18cf98001f6c8d906edb8d0d9ca0fdc4b861209961dbfb1f9c534caadf89e +size 1615 diff --git a/source/designs/detail/004/004876.json b/source/designs/detail/004/004876.json new file mode 100644 index 0000000000000000000000000000000000000000..268a6d5a193d504155f7dfe56110b9eb605f20e2 --- /dev/null +++ b/source/designs/detail/004/004876.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc78c92916fe2894336c9141ecfdacc51a8031ceb55c37dd12f6cc99393da89f +size 1167 diff --git a/source/designs/detail/004/004877.json b/source/designs/detail/004/004877.json new file mode 100644 index 0000000000000000000000000000000000000000..f8a74e96cf4e14a72a4ddd946217c4ecd84a10b8 --- /dev/null +++ b/source/designs/detail/004/004877.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ad51c73abb1fbed482261ef1f7f3e1f08f194ea3e71b17de430d55aad3be27 +size 1378 diff --git a/source/designs/detail/004/004878.json b/source/designs/detail/004/004878.json new file mode 100644 index 0000000000000000000000000000000000000000..4b51aa91aae16c55f1e5fda4545d262d19f5c9db --- /dev/null +++ b/source/designs/detail/004/004878.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415cc4e287f6d5a9e26c30c445dd1d100765b9e3d22e56ca0e1e178bbfe59402 +size 1269 diff --git a/source/designs/detail/004/004879.json b/source/designs/detail/004/004879.json new file mode 100644 index 0000000000000000000000000000000000000000..2a01e3dcee456c075205baa274289136cd86bfaf --- /dev/null +++ b/source/designs/detail/004/004879.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6ffb0800d3daa60b0f4851b2d12c10aa9ff843190bfa3555b23b174884dc0b +size 1317 diff --git a/source/designs/detail/004/004880.json b/source/designs/detail/004/004880.json new file mode 100644 index 0000000000000000000000000000000000000000..ab979bd5abc67c23f196b901ecccd2c44910591d --- /dev/null +++ b/source/designs/detail/004/004880.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1c4d8da957a6372af5c08a2936f86586c16836894c639cb5ec58317502965d +size 1210 diff --git a/source/designs/detail/004/004881.json b/source/designs/detail/004/004881.json new file mode 100644 index 0000000000000000000000000000000000000000..a2d583c534533d505df141b8e0e7724c70055e20 --- /dev/null +++ b/source/designs/detail/004/004881.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95066dfc3861e867d569ac0f9a4b331b3d9d26e3f107d1aaf41aad147802b969 +size 1140 diff --git a/source/designs/detail/004/004882.json b/source/designs/detail/004/004882.json new file mode 100644 index 0000000000000000000000000000000000000000..38ed88850f41881a2bc0142e24b89ee711c20362 --- /dev/null +++ b/source/designs/detail/004/004882.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a7ec2dd729a4a7c07bfc877d7103d07d5c3606063b9bacda2063689e1113781 +size 1938 diff --git a/source/designs/detail/004/004883.json b/source/designs/detail/004/004883.json new file mode 100644 index 0000000000000000000000000000000000000000..6a4cb42c01f5a4c2362e41c69a67d398aaf5c6be --- /dev/null +++ b/source/designs/detail/004/004883.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0f6652f388cb4f13aae1dbc39883746a8e2b50cbd3331b95b23a0e6d4ebabe +size 2744 diff --git a/source/designs/detail/004/004884.json b/source/designs/detail/004/004884.json new file mode 100644 index 0000000000000000000000000000000000000000..2d4a746eb04bf3cdf215fc90d022a702ce929c2b --- /dev/null +++ b/source/designs/detail/004/004884.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:245ea887e0f6cb864d10e8dbb9971e91a4de419a487f9844efda8d6d8575c069 +size 2265 diff --git a/source/designs/detail/004996.json b/source/designs/detail/004/004996.json similarity index 100% rename from source/designs/detail/004996.json rename to source/designs/detail/004/004996.json diff --git a/source/designs/detail/004997.json b/source/designs/detail/004/004997.json similarity index 100% rename from source/designs/detail/004997.json rename to source/designs/detail/004/004997.json diff --git a/source/designs/detail/004998.json b/source/designs/detail/004/004998.json similarity index 100% rename from source/designs/detail/004998.json rename to source/designs/detail/004/004998.json diff --git a/source/designs/detail/004999.json b/source/designs/detail/004/004999.json similarity index 100% rename from source/designs/detail/004999.json rename to source/designs/detail/004/004999.json diff --git a/source/designs/detail/005000.json b/source/designs/detail/005/005000.json similarity index 100% rename from source/designs/detail/005000.json rename to source/designs/detail/005/005000.json diff --git a/source/designs/detail/005001.json b/source/designs/detail/005/005001.json similarity index 100% rename from source/designs/detail/005001.json rename to source/designs/detail/005/005001.json diff --git a/source/designs/detail/005002.json b/source/designs/detail/005/005002.json similarity index 100% rename from source/designs/detail/005002.json rename to source/designs/detail/005/005002.json diff --git a/source/designs/detail/005/005003.json b/source/designs/detail/005/005003.json new file mode 100644 index 0000000000000000000000000000000000000000..734953107b3eae1336dde06f5026d93aceebc713 --- /dev/null +++ b/source/designs/detail/005/005003.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc01ea5eb08119268718c0ac0ae4e28e34a17002b961508a754fb9de4bb5d62 +size 1373 diff --git a/source/designs/detail/005/005004.json b/source/designs/detail/005/005004.json new file mode 100644 index 0000000000000000000000000000000000000000..c07d05d7ef442891e0d69f3a96a40cfa38241742 --- /dev/null +++ b/source/designs/detail/005/005004.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b37b48148216ddb2b1904f0fe0e66bc83fc95001c30d2fd08ca901406af3005 +size 1486 diff --git a/source/designs/detail/005/005005.json b/source/designs/detail/005/005005.json new file mode 100644 index 0000000000000000000000000000000000000000..39c26e28a9de130e7d509f7f0cad9b4c54d0a9de --- /dev/null +++ b/source/designs/detail/005/005005.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42bea7b3f4ebdd82cea77e62ef6519f3aa08971b4ed2bfcaf0d5eead29555b6f +size 1306 diff --git a/source/designs/detail/005/005006.json b/source/designs/detail/005/005006.json new file mode 100644 index 0000000000000000000000000000000000000000..3dee1ad963784338455b3328b397eb3bdedd8510 --- /dev/null +++ b/source/designs/detail/005/005006.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd21ac988439d8a9144f51fa7852b2537d882957aabf1a461aa6e9f117cb38f2 +size 1477 diff --git a/source/designs/detail/005/005007.json b/source/designs/detail/005/005007.json new file mode 100644 index 0000000000000000000000000000000000000000..2457db731600f659ef2178400d06bc5a99e568c5 --- /dev/null +++ b/source/designs/detail/005/005007.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e597643a4c17adbfaac24b63a5efe28b3f9696def0da2056d8823e2dab6a2c +size 1415 diff --git a/source/designs/detail/005/005008.json b/source/designs/detail/005/005008.json new file mode 100644 index 0000000000000000000000000000000000000000..19dafd34db36963a0cf476436c86c8bdefae7132 --- /dev/null +++ b/source/designs/detail/005/005008.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e6105a4cf7d2c14640f58cec15892e6d1cb197c87669f4c0c8498f20c51be6 +size 1191 diff --git a/source/designs/detail/005/005009.json b/source/designs/detail/005/005009.json new file mode 100644 index 0000000000000000000000000000000000000000..20308a423c6f076cdca0cb5c601a3c9818112e9b --- /dev/null +++ b/source/designs/detail/005/005009.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef65ff70648ed01f7e506557b541f1b2f780e19f68cd2d8ef1e69614e7dbe740 +size 1477 diff --git a/source/designs/detail/005/005010.json b/source/designs/detail/005/005010.json new file mode 100644 index 0000000000000000000000000000000000000000..93c35b48deaf95abfabc0f254ea240dc2e465a71 --- /dev/null +++ b/source/designs/detail/005/005010.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662da7b5cb11d9278dd73b4e4584ac3a22e5dce3d803958ae89c5570d66288ed +size 1344 diff --git a/source/designs/detail/005/005011.json b/source/designs/detail/005/005011.json new file mode 100644 index 0000000000000000000000000000000000000000..653268d5ba8c5a51fdfef83bcc07c1d701ea8da8 --- /dev/null +++ b/source/designs/detail/005/005011.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2196bcaea999d082191b3bcf1da52c67b868af1d0cccb1b1610e40e4c2eac28 +size 1531 diff --git a/source/designs/detail/005/005012.json b/source/designs/detail/005/005012.json new file mode 100644 index 0000000000000000000000000000000000000000..43990d6c219f0708a3408ec444cb642dcdf197c9 --- /dev/null +++ b/source/designs/detail/005/005012.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5c0f6a6a1a9ba572fd8b76e14b94d05d7db405c19506c5d08bf5134a0d164a +size 1271 diff --git a/source/designs/detail/005/005013.json b/source/designs/detail/005/005013.json new file mode 100644 index 0000000000000000000000000000000000000000..2fedf33b331f2843f3a6b8ecf7270107dfbb227e --- /dev/null +++ b/source/designs/detail/005/005013.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbbfb4a74b91ec55d107bf4777005c8a26f9aafce2504b360aa4001cc817210b +size 1337 diff --git a/source/designs/detail/005/005014.json b/source/designs/detail/005/005014.json new file mode 100644 index 0000000000000000000000000000000000000000..fea73b5ffbc9d604a48795aa0ac7871d245e2d6e --- /dev/null +++ b/source/designs/detail/005/005014.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68116a8068379ea3b8cf0ce81a23fbb3585d0a8ed70606bea66a0aa01d443c9c +size 1219 diff --git a/source/designs/detail/005/005015.json b/source/designs/detail/005/005015.json new file mode 100644 index 0000000000000000000000000000000000000000..ca8f196d8427cfbe99be853be86683c3f3c7e0ce --- /dev/null +++ b/source/designs/detail/005/005015.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3ef2a85f1da13be25f8b996dc794d254ea4ea8b33cc274e8c41a2ba6b8e66a +size 1380 diff --git a/source/designs/detail/005/005016.json b/source/designs/detail/005/005016.json new file mode 100644 index 0000000000000000000000000000000000000000..0b87083e389e660d4a5aba6a5d86d0f9d37c2b0d --- /dev/null +++ b/source/designs/detail/005/005016.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f496fe12e725b1fe6f4a5b38fb700307cfea90f7ff188531f4424c66bd7d5e14 +size 1370 diff --git a/source/designs/detail/005/005017.json b/source/designs/detail/005/005017.json new file mode 100644 index 0000000000000000000000000000000000000000..602ad035c52c44e4e868da17e01f33596a5386f5 --- /dev/null +++ b/source/designs/detail/005/005017.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c94a8f5f2ab698637ed88ba1e36041f29c7b2dec22b0f1595a3fb26a952c1b1 +size 1367 diff --git a/source/designs/detail/005/005018.json b/source/designs/detail/005/005018.json new file mode 100644 index 0000000000000000000000000000000000000000..a63d7874fcf8c9849f456bb1688f9125a3401875 --- /dev/null +++ b/source/designs/detail/005/005018.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3543d7fd6899652c2a921dad618a0f30fb4cc6d41cff1543cca316ce704cd399 +size 1243 diff --git a/source/designs/detail/005/005019.json b/source/designs/detail/005/005019.json new file mode 100644 index 0000000000000000000000000000000000000000..2485ff3fbaa7f5c0d089875d51f3f6788d774f36 --- /dev/null +++ b/source/designs/detail/005/005019.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bddffb33c4965916c8ca2cb3b32a5c5892c6758c0b2b172f5eba8520901f67c +size 1253 diff --git a/source/designs/detail/005/005020.json b/source/designs/detail/005/005020.json new file mode 100644 index 0000000000000000000000000000000000000000..560d55b70ca37f25b68734659817ff7c9f0f6d79 --- /dev/null +++ b/source/designs/detail/005/005020.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c44a4e7ff0476a7e7c8b26cc639efa101e5bc66d0c34eedc4887bcffa556925 +size 1357 diff --git a/source/designs/detail/005/005021.json b/source/designs/detail/005/005021.json new file mode 100644 index 0000000000000000000000000000000000000000..fc729cff1e575fe62c418f46ba45c8c72d550267 --- /dev/null +++ b/source/designs/detail/005/005021.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd100d7b58f1fcc45e4ef2870405dcb74dda2625813724f4b67cf1b27fd4fef7 +size 1268 diff --git a/source/designs/detail/005/005022.json b/source/designs/detail/005/005022.json new file mode 100644 index 0000000000000000000000000000000000000000..6268bd6218de2d0155a4bea495f4e6e83aefa747 --- /dev/null +++ b/source/designs/detail/005/005022.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:881a2b4a98dac8cb75726728f6a54714c9e18cb60e15d76a6be5000e9e080e13 +size 1381 diff --git a/source/designs/detail/005/005023.json b/source/designs/detail/005/005023.json new file mode 100644 index 0000000000000000000000000000000000000000..1519f695580a52fb3b24a066ff8f6a409ba789cb --- /dev/null +++ b/source/designs/detail/005/005023.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:324fab5ca224a89e079cfa7773625e8ca52f54a2c859d512243d1db5dea590f6 +size 1294 diff --git a/source/designs/detail/005/005024.json b/source/designs/detail/005/005024.json new file mode 100644 index 0000000000000000000000000000000000000000..012cf821a7a109f6b6aca196a9959e29552de1db --- /dev/null +++ b/source/designs/detail/005/005024.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96e8e9019d19209f05419df9e8647f09f23e61aa8c558332f94ffde0d3ada434 +size 1372 diff --git a/source/designs/detail/005/005025.json b/source/designs/detail/005/005025.json new file mode 100644 index 0000000000000000000000000000000000000000..4269a6451b4318ddaeaef23b0909b6cf4eb86f49 --- /dev/null +++ b/source/designs/detail/005/005025.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccb8ac3ffc8066116a946f680f11b8677b94b8e2df2826f9e805fc2077d9cf59 +size 1276 diff --git a/source/designs/detail/005/005026.json b/source/designs/detail/005/005026.json new file mode 100644 index 0000000000000000000000000000000000000000..720654ddc39dc98a2f0ae0177e77880a94afc603 --- /dev/null +++ b/source/designs/detail/005/005026.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92bfe63bbaffeaf5dc53d610869977e3c4644e8ede064c5001add7fb07daea27 +size 1312 diff --git a/source/designs/detail/005/005027.json b/source/designs/detail/005/005027.json new file mode 100644 index 0000000000000000000000000000000000000000..0889620f592da2efe9183e46fe141c2e83b7f229 --- /dev/null +++ b/source/designs/detail/005/005027.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff08436a1b6dd2ac9fb96b3cca59fafd6398a9a2fb437ae7eb7504a8701f2424 +size 1402 diff --git a/source/designs/detail/005/005028.json b/source/designs/detail/005/005028.json new file mode 100644 index 0000000000000000000000000000000000000000..f6046a4708adbb2ab197b05a538b82ebf1b6cdb4 --- /dev/null +++ b/source/designs/detail/005/005028.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6208d283470b76e4da0cdbb31c3c2a7ae145b1d597b6ed7df3008f5547204c61 +size 1611 diff --git a/source/designs/detail/005/005029.json b/source/designs/detail/005/005029.json new file mode 100644 index 0000000000000000000000000000000000000000..f1170e497fd201ec66976abe4716c6b0c534c73b --- /dev/null +++ b/source/designs/detail/005/005029.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a7f3856b9046613317b7502ade60a1960f6a0c613cb099978c9b7faa48e0e8 +size 1364 diff --git a/source/designs/detail/005/005030.json b/source/designs/detail/005/005030.json new file mode 100644 index 0000000000000000000000000000000000000000..0d92d5065c6a63ceeb20cb7283d5e351b9d50b1a --- /dev/null +++ b/source/designs/detail/005/005030.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f90ebb32b66009792488c1e57296c7c8fa90bb5df3aca45b947ca5952a8125e +size 1206 diff --git a/source/designs/detail/005/005031.json b/source/designs/detail/005/005031.json new file mode 100644 index 0000000000000000000000000000000000000000..187db20a50a4f452a981bf4cc7569393b2ed299c --- /dev/null +++ b/source/designs/detail/005/005031.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f126055bef0b03043a533fce7e24e2e1f5d4e316f13e12dde91f6bfad3460af +size 1330 diff --git a/source/designs/detail/005/005032.json b/source/designs/detail/005/005032.json new file mode 100644 index 0000000000000000000000000000000000000000..d39253f03f8064cab59678005d266b32f234f816 --- /dev/null +++ b/source/designs/detail/005/005032.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58401cafd370895a9cbdb0dc5a9c1751091adf35c896b8ba9d0715087311db82 +size 1083 diff --git a/source/designs/detail/005/005033.json b/source/designs/detail/005/005033.json new file mode 100644 index 0000000000000000000000000000000000000000..2d80c82d1c2a55c3b11aa485fb9543158ec2a7bb --- /dev/null +++ b/source/designs/detail/005/005033.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e950cb21357cd3aad442ac6b388530c8ea835da8673e0186325e0a99f28b9b +size 1487 diff --git a/source/designs/detail/005/005034.json b/source/designs/detail/005/005034.json new file mode 100644 index 0000000000000000000000000000000000000000..d94896e84d00cad740e4501af233d9f8a74e88b0 --- /dev/null +++ b/source/designs/detail/005/005034.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27ed086aded7cdab4d90bebcc67ca41dc7e890988b95f9c16f9d19911d127db8 +size 1059 diff --git a/source/designs/detail/005/005035.json b/source/designs/detail/005/005035.json new file mode 100644 index 0000000000000000000000000000000000000000..8331529ee52aa377875a5c76ab79f90100ffa09b --- /dev/null +++ b/source/designs/detail/005/005035.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce69c8348c0bcaf044c3ea09361dae87985b50bf0a43ca4af287cb944f7d825 +size 1169 diff --git a/source/designs/detail/005/005036.json b/source/designs/detail/005/005036.json new file mode 100644 index 0000000000000000000000000000000000000000..389d4f86e14944d5080d48124c303c842f732f69 --- /dev/null +++ b/source/designs/detail/005/005036.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a56ec1d2e6f65fa8a84a122e4eeb108617e969d2377f2a1c4480cd66d281dc +size 943 diff --git a/source/designs/detail/005/005037.json b/source/designs/detail/005/005037.json new file mode 100644 index 0000000000000000000000000000000000000000..73e0c79c1c7777554b02ead6f0849d79b1e1fe6f --- /dev/null +++ b/source/designs/detail/005/005037.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f405c8757696a2d3f0e06a4eac07b5bba7488d5bd933e91026998127e973a38 +size 1145 diff --git a/source/designs/detail/005/005038.json b/source/designs/detail/005/005038.json new file mode 100644 index 0000000000000000000000000000000000000000..29bb383f73ca37ec1dbb79b0e0a54a3b925e5d1a --- /dev/null +++ b/source/designs/detail/005/005038.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f7a7741c8a998db1296894b98beb9cd14430e3538ba91490b027040607655d7 +size 2490 diff --git a/source/designs/detail/005/005039.json b/source/designs/detail/005/005039.json new file mode 100644 index 0000000000000000000000000000000000000000..e5b90e76861a2e43b8eeebd76e0c497074e87f9e --- /dev/null +++ b/source/designs/detail/005/005039.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2161a32c0504dcaa99d2d34fbefdcdeb239cbbd49b8a8a8d7089641796fc48b0 +size 1333 diff --git a/source/designs/detail/005/005040.json b/source/designs/detail/005/005040.json new file mode 100644 index 0000000000000000000000000000000000000000..531fcb9ecc2a522d9fbb45ae7a698ed051421874 --- /dev/null +++ b/source/designs/detail/005/005040.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a602da0a81e894ea6aaf7c223d05e365b1cdb38b4447eaa631d405ddaebdde +size 1649 diff --git a/source/designs/detail/005/005041.json b/source/designs/detail/005/005041.json new file mode 100644 index 0000000000000000000000000000000000000000..4782a065921e90e844239ce9b83f38554c71a9aa --- /dev/null +++ b/source/designs/detail/005/005041.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4e80320a993a1ba19fb5c2e80641a7dfecfa6eb4bf813fdf62096cb7390b4d +size 1202 diff --git a/source/designs/detail/005/005042.json b/source/designs/detail/005/005042.json new file mode 100644 index 0000000000000000000000000000000000000000..14908a77a2a14430758823c0c4822f0fc080ad09 --- /dev/null +++ b/source/designs/detail/005/005042.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e253e5cd7b492e4bcfb64bc5766f30a6dd0eb6b4610493a1af195457fdc69633 +size 1443 diff --git a/source/designs/detail/005/005043.json b/source/designs/detail/005/005043.json new file mode 100644 index 0000000000000000000000000000000000000000..ac574e20bfef11d7b5efbe30284aea6e07e79db9 --- /dev/null +++ b/source/designs/detail/005/005043.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6943478ec3b43138acaba4603258bbf33c424100ea72a0cb4f36f9ca3ba4767b +size 1348 diff --git a/source/designs/detail/005/005044.json b/source/designs/detail/005/005044.json new file mode 100644 index 0000000000000000000000000000000000000000..7017d1d3c38c185753db35f4130d4fa77e95f036 --- /dev/null +++ b/source/designs/detail/005/005044.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393afc72375a8e911f0fe133b79d450cbd2857fe1ce16024cbf75d663ba8d029 +size 1353 diff --git a/source/designs/detail/005/005045.json b/source/designs/detail/005/005045.json new file mode 100644 index 0000000000000000000000000000000000000000..0c40b5cda0d92e596ac892758d671259e1da529d --- /dev/null +++ b/source/designs/detail/005/005045.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071b92a5690eaa25fdc384206294a89b4beb3253678400e4237b8edd2060c7a5 +size 1376 diff --git a/source/designs/detail/005/005046.json b/source/designs/detail/005/005046.json new file mode 100644 index 0000000000000000000000000000000000000000..0c7469d00e080b3e1a3f2257383b9ed0473f7a45 --- /dev/null +++ b/source/designs/detail/005/005046.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16126028d7a3e89a45aeb6030cba4ff73d3cb00afe3c34c6af102bff3b644dd9 +size 1451 diff --git a/source/designs/detail/005/005047.json b/source/designs/detail/005/005047.json new file mode 100644 index 0000000000000000000000000000000000000000..ad91f1df2b7f1da2bdb357740e5622cdaa7d1012 --- /dev/null +++ b/source/designs/detail/005/005047.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8bd623ea59cfe0c2c2755af259c332b94c6ad331233245b523bf25a416daff +size 1627 diff --git a/source/designs/detail/005/005048.json b/source/designs/detail/005/005048.json new file mode 100644 index 0000000000000000000000000000000000000000..382c28917ec0332a52f38a3da1aad1ec4bf4e643 --- /dev/null +++ b/source/designs/detail/005/005048.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3382e9fa78bbbe5b75b32336fdb05b2a419eb890b0f5ac6d1acd5cc25a1854d +size 1456 diff --git a/source/designs/detail/005/005049.json b/source/designs/detail/005/005049.json new file mode 100644 index 0000000000000000000000000000000000000000..104e8b866e99956b8519ce4d338854a420c78c0d --- /dev/null +++ b/source/designs/detail/005/005049.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11123f7dcbb3d157672d1dde51e5366ed0372620c24feff46926668a441bbd21 +size 1341 diff --git a/source/designs/detail/005/005050.json b/source/designs/detail/005/005050.json new file mode 100644 index 0000000000000000000000000000000000000000..a666b60b8a9202363418d3b70a2cfed9077adb62 --- /dev/null +++ b/source/designs/detail/005/005050.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8345e7fc74969a02dbc56bba990eea62d67e7348a46205e362f79f10a2f87d2 +size 1508 diff --git a/source/designs/detail/005/005051.json b/source/designs/detail/005/005051.json new file mode 100644 index 0000000000000000000000000000000000000000..85b6bad91482d2e97b01d1944d6777b781f80e78 --- /dev/null +++ b/source/designs/detail/005/005051.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22326c4412fce9d73c95c99f889b91e450384cb0fe46733698cd31a534fdd45e +size 1492 diff --git a/source/designs/detail/005/005052.json b/source/designs/detail/005/005052.json new file mode 100644 index 0000000000000000000000000000000000000000..ffd6132ee23df4d561f1155849433a7325ba30b5 --- /dev/null +++ b/source/designs/detail/005/005052.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa557f7c78d1dbcf3237884742a83f38d48ed641ebfad70418acb1a7a3f5cb20 +size 1580 diff --git a/source/designs/detail/005/005053.json b/source/designs/detail/005/005053.json new file mode 100644 index 0000000000000000000000000000000000000000..8ed1202d5d4faa486b7f181ec823e7a6b8dd0ed9 --- /dev/null +++ b/source/designs/detail/005/005053.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d32597b404dbaa18e0c82c563b6794d1a57521c7d1644028aa3cfd28ce3c0721 +size 1640 diff --git a/source/designs/detail/005/005055.json b/source/designs/detail/005/005055.json new file mode 100644 index 0000000000000000000000000000000000000000..bc759c91b2ac0b03af0b43208c17727cda8e3212 --- /dev/null +++ b/source/designs/detail/005/005055.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4197bec4659d468469df360b108cadbf85c95913164dccd89a6e251ecdc04ca3 +size 1468 diff --git a/source/designs/detail/005/005056.json b/source/designs/detail/005/005056.json new file mode 100644 index 0000000000000000000000000000000000000000..6fe2c3275e6ebd9cb98c8b0f9fbddf314880940a --- /dev/null +++ b/source/designs/detail/005/005056.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:329841f8c24a26e4d8c31916095a292273a0378836f1c3c8e43373513529c41a +size 1620 diff --git a/source/designs/detail/005/005057.json b/source/designs/detail/005/005057.json new file mode 100644 index 0000000000000000000000000000000000000000..546fdefd5c259ee626a0ebf70f637547856fb684 --- /dev/null +++ b/source/designs/detail/005/005057.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c808cd762d5bc72564c2a1f9020e13a392b8a9cc2bac477a9b1f93ab5e0f68 +size 1334 diff --git a/source/designs/detail/005/005058.json b/source/designs/detail/005/005058.json new file mode 100644 index 0000000000000000000000000000000000000000..ad4c15833e833c092c08f33a3dc5f0fdc271e4b2 --- /dev/null +++ b/source/designs/detail/005/005058.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4288b7b1b5f28c3c962bd013090ceb07a85cf8b1e4a957878368a9df48b44207 +size 1420 diff --git a/source/designs/detail/005/005059.json b/source/designs/detail/005/005059.json new file mode 100644 index 0000000000000000000000000000000000000000..d5269510a1e1f754d45c9636f34b207c8f629037 --- /dev/null +++ b/source/designs/detail/005/005059.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8774c51aa90b46a2ee5ca3824fd75d5e225801df7ad298a3ca966a8352f98ccf +size 2155 diff --git a/source/designs/detail/005/005060.json b/source/designs/detail/005/005060.json new file mode 100644 index 0000000000000000000000000000000000000000..91a9b6a9c08c18a1218070b0302b80a7bc4d242a --- /dev/null +++ b/source/designs/detail/005/005060.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5534e618279f659dc1afe8023eaa00352f50ceb5f96884b2eb1ae830b911918 +size 1317 diff --git a/source/designs/detail/005/005061.json b/source/designs/detail/005/005061.json new file mode 100644 index 0000000000000000000000000000000000000000..1be725852c3c3250165db5d1181277e42718b775 --- /dev/null +++ b/source/designs/detail/005/005061.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b417b1b73ef5980b5209f32724f2713802c9cf2a0dc8ea0e2ec4c8f54bb115f8 +size 1287 diff --git a/source/designs/detail/005/005062.json b/source/designs/detail/005/005062.json new file mode 100644 index 0000000000000000000000000000000000000000..40f2a0d224a40cad823246a9267b42b7dcd52238 --- /dev/null +++ b/source/designs/detail/005/005062.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec0efe360b497cbf754b86d87c1a9b593f74474ea0201f0b24827ddbb1ad30c +size 1227 diff --git a/source/designs/detail/005/005063.json b/source/designs/detail/005/005063.json new file mode 100644 index 0000000000000000000000000000000000000000..d7046e0b16e21a22907054553b6ab96d4cc78d07 --- /dev/null +++ b/source/designs/detail/005/005063.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06533f66d7740c8428c35785eb15feec074da5288c0ef4249bba20558e1488ce +size 1585 diff --git a/source/designs/detail/005/005064.json b/source/designs/detail/005/005064.json new file mode 100644 index 0000000000000000000000000000000000000000..0cfd1f21d745a87547c5c0973dc544a6e29ac318 --- /dev/null +++ b/source/designs/detail/005/005064.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ce0b2c7314428cae165366e1982e51644f694abb4cb15eb8b1f4027aebec54 +size 1338 diff --git a/source/designs/detail/005/005065.json b/source/designs/detail/005/005065.json new file mode 100644 index 0000000000000000000000000000000000000000..da12ef65e8f940d579eef4d46f85b5d1e19e9838 --- /dev/null +++ b/source/designs/detail/005/005065.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cc0aba99d4f8ba9e92af915657ec474f74c525a0c6a2bac952971cd0434b5e +size 1598 diff --git a/source/designs/detail/005/005066.json b/source/designs/detail/005/005066.json new file mode 100644 index 0000000000000000000000000000000000000000..450edfdb4a9289dc434a750aee6d9a113efc3a73 --- /dev/null +++ b/source/designs/detail/005/005066.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7074a994e7a604e69649c8272ad9b7a9f5edfb97703f934b9783bac1c58b649 +size 1441 diff --git a/source/designs/detail/005/005067.json b/source/designs/detail/005/005067.json new file mode 100644 index 0000000000000000000000000000000000000000..591dd8ca1c29b57f6766a614e63a413ff603168c --- /dev/null +++ b/source/designs/detail/005/005067.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd56ed2760c5136fcd39a803c884f3ec582f58f5acef362da659a955846555d0 +size 1535 diff --git a/source/designs/detail/005/005068.json b/source/designs/detail/005/005068.json new file mode 100644 index 0000000000000000000000000000000000000000..6180510804cce1332fb5a026f9f132bbabd60f9d --- /dev/null +++ b/source/designs/detail/005/005068.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13f2b43258315e6a981dd4e969c334538d0e15fed31912b0a262dabfd367000 +size 1624 diff --git a/source/designs/detail/005/005109.json b/source/designs/detail/005/005109.json new file mode 100644 index 0000000000000000000000000000000000000000..9c67ba13013e3071f4a85c0c273aff21d2ba9715 --- /dev/null +++ b/source/designs/detail/005/005109.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1923f2513feb4ba04e07fb74072267181a846b5d04fc8ea4a2756da3d11bdce8 +size 1390 diff --git a/source/designs/detail/005/005110.json b/source/designs/detail/005/005110.json new file mode 100644 index 0000000000000000000000000000000000000000..bda310c2d1c7d2d2dedd1c9546668f391bfae54d --- /dev/null +++ b/source/designs/detail/005/005110.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e37a5434778531903dc34a5ff7bdbf406490933102935b55629e90f135524a +size 1484 diff --git a/source/designs/detail/005/005111.json b/source/designs/detail/005/005111.json new file mode 100644 index 0000000000000000000000000000000000000000..1e3f85626f04f0b5e4539d307ec363535571fc3b --- /dev/null +++ b/source/designs/detail/005/005111.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a5e1eb7ecab584dbe3999c761fc736d86badb068629316f67a3ca94797e578 +size 1297 diff --git a/source/designs/detail/005/005112.json b/source/designs/detail/005/005112.json new file mode 100644 index 0000000000000000000000000000000000000000..04f3029315409fb00403fceaa82ac00386a0a222 --- /dev/null +++ b/source/designs/detail/005/005112.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3765ba14facf74d54e2c5f7e2846d367f3e90a732501cc520aa4d0e3e3196444 +size 1991 diff --git a/source/designs/detail/005/005113.json b/source/designs/detail/005/005113.json new file mode 100644 index 0000000000000000000000000000000000000000..bb86d17689a1456e8617c574e5b43e1a63d95589 --- /dev/null +++ b/source/designs/detail/005/005113.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d1ddf14e68317126cb04e2f693527edd13e29625ba5e3556ac3059aef6ad09c +size 1383 diff --git a/source/designs/detail/005/005114.json b/source/designs/detail/005/005114.json new file mode 100644 index 0000000000000000000000000000000000000000..5c2c81fe480621c22880486f709981a62338454e --- /dev/null +++ b/source/designs/detail/005/005114.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48829d411364df64ce94dce1ccf794be93a06b5e9fa2c4a1fd34042b330bd624 +size 1424 diff --git a/source/designs/detail/005/005115.json b/source/designs/detail/005/005115.json new file mode 100644 index 0000000000000000000000000000000000000000..45f79df9ffab1002c0b7e679b14ecda29c4da0af --- /dev/null +++ b/source/designs/detail/005/005115.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e231ee1ded4b65ed2e6be73bbe456ba839645d29ecdaae789a496552bb68159b +size 1420 diff --git a/source/designs/detail/005/005116.json b/source/designs/detail/005/005116.json new file mode 100644 index 0000000000000000000000000000000000000000..1d605142d0705f1a442bde004df32a9d3d7a6408 --- /dev/null +++ b/source/designs/detail/005/005116.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:328a383bee169b3a2f2b9cddaa3fc9f6bfd8be99b59fb0237d3703401ccd9cd0 +size 1582 diff --git a/source/designs/detail/005/005117.json b/source/designs/detail/005/005117.json new file mode 100644 index 0000000000000000000000000000000000000000..7cc6935bb1fd35fb423332a0d4704578b2edcf31 --- /dev/null +++ b/source/designs/detail/005/005117.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea5df1e569198f4f996fd4f7adced117588de88e0c6e2e116206cad9e00f4ab0 +size 1455 diff --git a/source/designs/detail/005/005118.json b/source/designs/detail/005/005118.json new file mode 100644 index 0000000000000000000000000000000000000000..6474d36c604e3c3a85fbe99143e531cc30569179 --- /dev/null +++ b/source/designs/detail/005/005118.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9239e91123a4d7f263c9de152bef5a464b90dfbfefe12d626f7ec93ba1b3d02 +size 1652 diff --git a/source/designs/detail/005/005119.json b/source/designs/detail/005/005119.json new file mode 100644 index 0000000000000000000000000000000000000000..a658dd38dd8b8de841ec842f3cb4e34023865028 --- /dev/null +++ b/source/designs/detail/005/005119.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f511b03c1b25defaefba5a457329313c9874ced3fba00b2de3eefb26fda1bb3a +size 1803 diff --git a/source/designs/detail/005/005120.json b/source/designs/detail/005/005120.json new file mode 100644 index 0000000000000000000000000000000000000000..29d4e0a057ff0d612fdf4507ef3d83e6fe19a15a --- /dev/null +++ b/source/designs/detail/005/005120.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d1c600221a76e98b2b18bfe0b3a362c9086ef7667e598a779f05156826758c +size 1492 diff --git a/source/designs/detail/005/005121.json b/source/designs/detail/005/005121.json new file mode 100644 index 0000000000000000000000000000000000000000..953e8081f5ac94cfd0f4276a9553f111bf5b15d2 --- /dev/null +++ b/source/designs/detail/005/005121.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75237d7794931f699891b90b4c90c77c75a2951bb56fd8b383cde5456a763a48 +size 1521 diff --git a/source/designs/detail/005/005122.json b/source/designs/detail/005/005122.json new file mode 100644 index 0000000000000000000000000000000000000000..7af56b9280ad53969b5463638fb2da8281e92e4f --- /dev/null +++ b/source/designs/detail/005/005122.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea6a3795d7501512b5592ddd9a21420333a2f3a15a41fed93ceebb31343e12f +size 1712 diff --git a/source/designs/detail/005/005123.json b/source/designs/detail/005/005123.json new file mode 100644 index 0000000000000000000000000000000000000000..2d091b0ce89523887b92fea5d0d55966169cb6fb --- /dev/null +++ b/source/designs/detail/005/005123.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74558391f3e7aabeb32e34af01d2d964585b261b587a182f5b5f3f800b1e8c5d +size 1341 diff --git a/source/designs/detail/005/005124.json b/source/designs/detail/005/005124.json new file mode 100644 index 0000000000000000000000000000000000000000..11d5f645b6a451240b1df1c0752f0e7a9d275c6e --- /dev/null +++ b/source/designs/detail/005/005124.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b1f30d6bbfa211a1a3b79e3637c483013ed453f9ac532e8032fd0d9b4ada99 +size 1576 diff --git a/source/designs/detail/005/005125.json b/source/designs/detail/005/005125.json new file mode 100644 index 0000000000000000000000000000000000000000..ff9f4c441e6cd49efd372cfedea906d12651b629 --- /dev/null +++ b/source/designs/detail/005/005125.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e315982f1e4153a82a0547a70af84d7b25520b98ec3470e80ca6910a693cc3 +size 1228 diff --git a/source/designs/detail/005/005126.json b/source/designs/detail/005/005126.json new file mode 100644 index 0000000000000000000000000000000000000000..3d8e3ea7f098b6d5a9a96afb27243adf771c50b0 --- /dev/null +++ b/source/designs/detail/005/005126.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d84d923edeb3a98da67f70ec2a74fcef2fce19c57f3515ef1cfda6349ce1c22 +size 1423 diff --git a/source/designs/detail/005/005127.json b/source/designs/detail/005/005127.json new file mode 100644 index 0000000000000000000000000000000000000000..b10238393068e8f27b5b6717f4174f513e261056 --- /dev/null +++ b/source/designs/detail/005/005127.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aac387b6ede7a04592d32187beca7905efb372ea6fb1a4b27abfd1dc21793ec0 +size 1319 diff --git a/source/designs/detail/005/005128.json b/source/designs/detail/005/005128.json new file mode 100644 index 0000000000000000000000000000000000000000..e5fa00dfd8da5a4b4803f1b4321d368069361d3b --- /dev/null +++ b/source/designs/detail/005/005128.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3debe0b3b9c7ce2d5f6f2086cb97787d4f2d214e850ced8329559b2187cac5e1 +size 1452 diff --git a/source/designs/detail/005/005129.json b/source/designs/detail/005/005129.json new file mode 100644 index 0000000000000000000000000000000000000000..f0caaf12064bc734efe4b83053f873a7787caeae --- /dev/null +++ b/source/designs/detail/005/005129.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbaaa5292f3365185366828806a323f04fe2409e1db90dfb1d40e4d27bda1c11 +size 1373 diff --git a/source/designs/detail/005/005130.json b/source/designs/detail/005/005130.json new file mode 100644 index 0000000000000000000000000000000000000000..30926291526e881caf29f190b2c99a695ea08b3f --- /dev/null +++ b/source/designs/detail/005/005130.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8582d902fc89a58981247a4ab2351af185da2dfe4d65914ff068e3b8a732dfe +size 1536 diff --git a/source/designs/detail/005/005131.json b/source/designs/detail/005/005131.json new file mode 100644 index 0000000000000000000000000000000000000000..dfbec71cf82249ff2d3fd523119ed203e4e23feb --- /dev/null +++ b/source/designs/detail/005/005131.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0d2ab20253e557131367830049156bec574bd1d009deeb425107049d68368a +size 1342 diff --git a/source/designs/detail/005/005132.json b/source/designs/detail/005/005132.json new file mode 100644 index 0000000000000000000000000000000000000000..3d0bcb3c30d778e455e981ad1d2105504e72abdd --- /dev/null +++ b/source/designs/detail/005/005132.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363e52939735fc16e7043226f62d3c723ad6cda4e1d72aa863ff472626f6d726 +size 1383 diff --git a/source/designs/detail/005/005133.json b/source/designs/detail/005/005133.json new file mode 100644 index 0000000000000000000000000000000000000000..75638c2d8175d417b3ca6192fcc467d76f648f87 --- /dev/null +++ b/source/designs/detail/005/005133.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcae7010509ae2ac4704bc38d32c9e59d08b01d251debaaaa81efa77eae4013d +size 1421 diff --git a/source/designs/detail/005/005134.json b/source/designs/detail/005/005134.json new file mode 100644 index 0000000000000000000000000000000000000000..a13ab84cdee038a101f81538b32833d717f44bf7 --- /dev/null +++ b/source/designs/detail/005/005134.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4945c4dac3f9cc86bdc92052747ceecb021df0db88e8826cd17b740e519eb6a1 +size 1704 diff --git a/source/designs/detail/005/005135.json b/source/designs/detail/005/005135.json new file mode 100644 index 0000000000000000000000000000000000000000..7ad36f227c5c933ee9a4bfc3cd44c9c86f3cdaf8 --- /dev/null +++ b/source/designs/detail/005/005135.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c91d52ebf1a7e40c251c2b78a4463ff4d6906edd8b44ccabaadbf5acb69ebf +size 1580 diff --git a/source/designs/detail/005/005136.json b/source/designs/detail/005/005136.json new file mode 100644 index 0000000000000000000000000000000000000000..530e89852a7b4b560af80b16d52b457b382da8fc --- /dev/null +++ b/source/designs/detail/005/005136.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f4acce28f2ef69e5beec035a4ad1cb265e6a648bf9574d8641a68f88d7733b +size 1474 diff --git a/source/designs/detail/005/005137.json b/source/designs/detail/005/005137.json new file mode 100644 index 0000000000000000000000000000000000000000..3e4848f20a8b93d6a183da82ff9d295a74910fc1 --- /dev/null +++ b/source/designs/detail/005/005137.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9459ee607363fe4dabf0006810cfbe0b1fac5debd69676ef094ef8ba7fb9de28 +size 1301 diff --git a/source/designs/detail/005/005138.json b/source/designs/detail/005/005138.json new file mode 100644 index 0000000000000000000000000000000000000000..2b1ddc1db08bffac848e79c1f44ed67fd19466f3 --- /dev/null +++ b/source/designs/detail/005/005138.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c36ddf01162882779465eb7ded3255a078288a6c407df1048271be3dd9435b +size 1434 diff --git a/source/designs/detail/005/005139.json b/source/designs/detail/005/005139.json new file mode 100644 index 0000000000000000000000000000000000000000..0f27c87b0b7c9cb938e282ba7db6b51837f93fb8 --- /dev/null +++ b/source/designs/detail/005/005139.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e754b4ba57a603077b716b56b91dccf68fb03317a3b16d9cdaf581501f4933 +size 1362 diff --git a/source/designs/detail/005/005140.json b/source/designs/detail/005/005140.json new file mode 100644 index 0000000000000000000000000000000000000000..dc72c90346f18271ffa38cbcbc3acd2c0ad14aa5 --- /dev/null +++ b/source/designs/detail/005/005140.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0c6abde8da0d2003a03150084f27e63cfb0f08cf3d3332dec29574e8b0c9f1 +size 1404 diff --git a/source/designs/detail/005/005141.json b/source/designs/detail/005/005141.json new file mode 100644 index 0000000000000000000000000000000000000000..4000f737a18127f1aa1c44e36b54abdc234deeb1 --- /dev/null +++ b/source/designs/detail/005/005141.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:948a8d6067bea9f18a0125d89dd66d948c34a04052c958f37a63f3c01e0f9936 +size 1337 diff --git a/source/designs/detail/005/005142.json b/source/designs/detail/005/005142.json new file mode 100644 index 0000000000000000000000000000000000000000..9ed3fdaf5318b8759aa137ddb180e37237baec50 --- /dev/null +++ b/source/designs/detail/005/005142.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:756771099060921b07fb1b1f3ae56ee1609f7f7fe3fe13bf6186014ee9f6a5cc +size 1642 diff --git a/source/designs/detail/005/005143.json b/source/designs/detail/005/005143.json new file mode 100644 index 0000000000000000000000000000000000000000..c4d56743b41ba6e1123ca71c4e1bd20e296c6c13 --- /dev/null +++ b/source/designs/detail/005/005143.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fffd4fb9020d8c912a0d44caf365465abafbb859100c4005938e5b00f736c11b +size 1609 diff --git a/source/designs/detail/005/005144.json b/source/designs/detail/005/005144.json new file mode 100644 index 0000000000000000000000000000000000000000..112a319306ddd7e29fba9671a07693a152eada27 --- /dev/null +++ b/source/designs/detail/005/005144.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ab8815bdc82ef863b3f35f2065380a04bedc3545323dd4440101d0f872ca4e +size 1555 diff --git a/source/designs/detail/005/005145.json b/source/designs/detail/005/005145.json new file mode 100644 index 0000000000000000000000000000000000000000..96021c0b96ce46f13684bcf616c58a7376dc7d33 --- /dev/null +++ b/source/designs/detail/005/005145.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa346c00fc65f152a50794c9e6646fe45eb71c8c0291ddc13e085fa1fee0cc4f +size 1249 diff --git a/source/designs/detail/005/005146.json b/source/designs/detail/005/005146.json new file mode 100644 index 0000000000000000000000000000000000000000..f65eaa956ced0ffdb430774837f532ccf3ef5a54 --- /dev/null +++ b/source/designs/detail/005/005146.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64924f5e516f10eff8c7a6d1d52d7597704a654718469cc274cb5d8457af01ab +size 1290 diff --git a/source/designs/detail/005/005147.json b/source/designs/detail/005/005147.json new file mode 100644 index 0000000000000000000000000000000000000000..699f51cece59b8a8a328bc144f20ddc46210717a --- /dev/null +++ b/source/designs/detail/005/005147.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:316237110c6ee0e02fb9ecb8e8cd4f3fd426d0be2358544dd05abfdf49e18dd2 +size 1217 diff --git a/source/designs/detail/005/005148.json b/source/designs/detail/005/005148.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c12eda2511869467461b855189b49cc0744d2d --- /dev/null +++ b/source/designs/detail/005/005148.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771624602eefc93a7a7f9ca81277b045bd7123773e53b72336da4cdb2adbf8c7 +size 1476 diff --git a/source/designs/detail/005/005149.json b/source/designs/detail/005/005149.json new file mode 100644 index 0000000000000000000000000000000000000000..e81607f2d0de190463970ea63c0dba2dee109eb0 --- /dev/null +++ b/source/designs/detail/005/005149.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c30334460541bcf01954655cab05def54769b312e243b1418ffb9466c5bf9f +size 1110 diff --git a/source/designs/detail/005/005150.json b/source/designs/detail/005/005150.json new file mode 100644 index 0000000000000000000000000000000000000000..8ceff56573dc7b359bcc5d4fc3a2efc6e53e636f --- /dev/null +++ b/source/designs/detail/005/005150.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1687b16e346adc8d134bb4144410988fed0568ba0c0fba539ab096a77491b46 +size 1293 diff --git a/source/designs/detail/005/005151.json b/source/designs/detail/005/005151.json new file mode 100644 index 0000000000000000000000000000000000000000..039b143ae708119e19108dee94e759438b4507ca --- /dev/null +++ b/source/designs/detail/005/005151.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99fc6e53f0456b97c27e797d9488d72cf29d72db46085a3a5612655539050e26 +size 1120 diff --git a/source/designs/detail/005/005152.json b/source/designs/detail/005/005152.json new file mode 100644 index 0000000000000000000000000000000000000000..b02485e348a11a2c7824ad3dd3776f9b134fad9f --- /dev/null +++ b/source/designs/detail/005/005152.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e848dc4d407545e50e54983c4fd9638a4c83aa73d28d4415be262ae95d7b0e1 +size 987 diff --git a/source/designs/detail/005/005153.json b/source/designs/detail/005/005153.json new file mode 100644 index 0000000000000000000000000000000000000000..0341d12374714f4a80fb1b6d80fd785d6f510b40 --- /dev/null +++ b/source/designs/detail/005/005153.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e8670edfda9053496adb94ea29dfa45de17cbfd0a291a7c2c7e436d8b5ec220 +size 1431 diff --git a/source/designs/detail/005/005154.json b/source/designs/detail/005/005154.json new file mode 100644 index 0000000000000000000000000000000000000000..e9c7bd043b0b8f2a9393f9f0cdb446618772dab4 --- /dev/null +++ b/source/designs/detail/005/005154.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fadf2307aab2beaf1e71f9c317125d5c82a955578541c88b35479bd4c36e715 +size 1204 diff --git a/source/designs/detail/005/005155.json b/source/designs/detail/005/005155.json new file mode 100644 index 0000000000000000000000000000000000000000..f48b56b44e8e992d9d37c1b5f6f7b658218cce33 --- /dev/null +++ b/source/designs/detail/005/005155.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb234fd2f54d62b14ce767cc08d38c8c20eefd41588ceeb8a8b6498a3702b85 +size 1427 diff --git a/source/designs/detail/005/005156.json b/source/designs/detail/005/005156.json new file mode 100644 index 0000000000000000000000000000000000000000..91f59513d22dfef36d43a8f4a0e9528b48e62456 --- /dev/null +++ b/source/designs/detail/005/005156.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d2511ba42923a46eb12fc8c7fb38974363d3c1be78968e7377836e5df7922c +size 1385 diff --git a/source/designs/detail/005/005157.json b/source/designs/detail/005/005157.json new file mode 100644 index 0000000000000000000000000000000000000000..39615e993ff80a04ac60465bed08de49c7d70eb5 --- /dev/null +++ b/source/designs/detail/005/005157.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c687415d32e065d512a7a0e943b0c4b9d7a7314c7a8d91d3b2d89740098a92d7 +size 1680 diff --git a/source/designs/detail/005/005158.json b/source/designs/detail/005/005158.json new file mode 100644 index 0000000000000000000000000000000000000000..ef4b24c90cba49a5172398e9091519908a6a55b0 --- /dev/null +++ b/source/designs/detail/005/005158.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a638e7e56d76cf711105a72cd403ec765453d1f8d096285b763a788a548f46a7 +size 1037 diff --git a/source/designs/detail/005/005159.json b/source/designs/detail/005/005159.json new file mode 100644 index 0000000000000000000000000000000000000000..e23df11bda7aa5f44e91a713c06ae3c4f0c12fae --- /dev/null +++ b/source/designs/detail/005/005159.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a040decda44146324c03eabb50d808e9a203ef298da4c795b169ca0d0f77643 +size 1037 diff --git a/source/designs/detail/005/005160.json b/source/designs/detail/005/005160.json new file mode 100644 index 0000000000000000000000000000000000000000..4511b36268a65bb0f64fec59fdf6e8195170222b --- /dev/null +++ b/source/designs/detail/005/005160.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef0a84f8ece8c7b07d939807e9bd0d121699108e2b03001975c8cad32297f18 +size 1597 diff --git a/source/designs/detail/005/005161.json b/source/designs/detail/005/005161.json new file mode 100644 index 0000000000000000000000000000000000000000..14e8c259ea51491d9e205b85f52ac5781ffdd7ab --- /dev/null +++ b/source/designs/detail/005/005161.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15b0f9cc8262e5b6351639d2aa71aef75c51f57c07b98b5cdba1a3639841ea67 +size 1604 diff --git a/source/designs/detail/005/005162.json b/source/designs/detail/005/005162.json new file mode 100644 index 0000000000000000000000000000000000000000..4f8a333356f57ad8cb91e5c77233858b132a15d2 --- /dev/null +++ b/source/designs/detail/005/005162.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149db9af79e862ff9968ed2918aba3dce6badcbbc08c8f55f5287c350a2a4270 +size 1334 diff --git a/source/designs/detail/005/005163.json b/source/designs/detail/005/005163.json new file mode 100644 index 0000000000000000000000000000000000000000..8920546937099f6ef177e512cd934e15e7b90a97 --- /dev/null +++ b/source/designs/detail/005/005163.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65bc9f2d07776d6be6128a6af781a8cc73bdc5d34958190eaae27deee7bd035c +size 1344 diff --git a/source/designs/detail/005/005164.json b/source/designs/detail/005/005164.json new file mode 100644 index 0000000000000000000000000000000000000000..a84dfba7e188bf102a9c54cad65a752beb473b34 --- /dev/null +++ b/source/designs/detail/005/005164.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ce25762b427fba96ca3b40c8617156444f2915f0cce05d3549c4c72188a5e7 +size 1657 diff --git a/source/designs/detail/005/005165.json b/source/designs/detail/005/005165.json new file mode 100644 index 0000000000000000000000000000000000000000..cb0d720cd16d30856617ebe79286b6072a58cfc5 --- /dev/null +++ b/source/designs/detail/005/005165.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:443f1dac04b3172659bd69dd823699d96e0b18f4fe0fc299e795ab5dc56932be +size 1514 diff --git a/source/designs/detail/005/005166.json b/source/designs/detail/005/005166.json new file mode 100644 index 0000000000000000000000000000000000000000..27005eb7a4e411189749394fbbf2bf5e0b1a38d5 --- /dev/null +++ b/source/designs/detail/005/005166.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6646eb7efee5cec2fb37dce98849f4c95d13c577d2606acddad0b97b3d0b41c9 +size 1402 diff --git a/source/designs/detail/005/005167.json b/source/designs/detail/005/005167.json new file mode 100644 index 0000000000000000000000000000000000000000..821f79bb70922e3604328d60befd15aae058c67d --- /dev/null +++ b/source/designs/detail/005/005167.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a60b87458f6d53455a48723d6044c8c8be441d3c19f6787d920e1a0fe84c316c +size 1385 diff --git a/source/designs/detail/005/005168.json b/source/designs/detail/005/005168.json new file mode 100644 index 0000000000000000000000000000000000000000..bd9bbc3fa9c8ae4f083a4d6d43f63394192ee1db --- /dev/null +++ b/source/designs/detail/005/005168.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:024207fa9b5165f06cb2531dda2951216bbd9fdd5fbf9311adddc91ed9747771 +size 1827 diff --git a/source/designs/detail/005/005169.json b/source/designs/detail/005/005169.json new file mode 100644 index 0000000000000000000000000000000000000000..d37b58f4b1da3dd2366425786e860563cd009e01 --- /dev/null +++ b/source/designs/detail/005/005169.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e389dadb9e57009e7afc21a83f8c1fc1de55f26e539a2355311e28ff5ef109 +size 1721 diff --git a/source/designs/detail/005/005170.json b/source/designs/detail/005/005170.json new file mode 100644 index 0000000000000000000000000000000000000000..4fc1bd9ac69add604a5b59d2e1ede8326ac00db8 --- /dev/null +++ b/source/designs/detail/005/005170.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f060c93627a799af8ff79eefa25a412713ad7929ff62fe323b89ba295766eae +size 1795 diff --git a/source/designs/detail/005/005171.json b/source/designs/detail/005/005171.json new file mode 100644 index 0000000000000000000000000000000000000000..c2b49e40813e643da55c6b6f7b239957533edc3e --- /dev/null +++ b/source/designs/detail/005/005171.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3955f5a16faa16a9b521e7faa75d478de8ad7f45b4a3389220f29a333fc7b37c +size 1197 diff --git a/source/designs/detail/005/005172.json b/source/designs/detail/005/005172.json new file mode 100644 index 0000000000000000000000000000000000000000..1b6ca8e8ebe14bf248fb36dccfaa73672e4a2860 --- /dev/null +++ b/source/designs/detail/005/005172.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068f71f17f63f233454fdea7959ef703adec2c680726a0332aa6b1e9283255b9 +size 1748 diff --git a/source/designs/detail/005/005173.json b/source/designs/detail/005/005173.json new file mode 100644 index 0000000000000000000000000000000000000000..970acaf4bac146cd1456d5c5e9cc929fefb545ba --- /dev/null +++ b/source/designs/detail/005/005173.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c22a812d2bc3c8fc65edfe246ec27b46feb68c56fc61dfb60a80f24a4fe2f6a +size 1450 diff --git a/source/designs/detail/005/005174.json b/source/designs/detail/005/005174.json new file mode 100644 index 0000000000000000000000000000000000000000..66d3af03546dea114a39874e07aa0a270322f1dc --- /dev/null +++ b/source/designs/detail/005/005174.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4b5a8e680c6374003b7a788834c366c33245e4607b1b35dbc56fc725d135ad +size 3965 diff --git a/source/designs/detail/005/005175.json b/source/designs/detail/005/005175.json new file mode 100644 index 0000000000000000000000000000000000000000..c2f88ad3ed54bc0f4e3d211569fe902b540a6ebb --- /dev/null +++ b/source/designs/detail/005/005175.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c992562538664efd50b0403f82690afd9083dd1036231f3b08372728b426a37c +size 1193 diff --git a/source/designs/detail/005/005176.json b/source/designs/detail/005/005176.json new file mode 100644 index 0000000000000000000000000000000000000000..33511a435ba337d2a2751cbb1340d0138a6da52d --- /dev/null +++ b/source/designs/detail/005/005176.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79659dd32edf74f7e3e3b89f6f937aeea59fd1a0c2c548691219ebb3c017246 +size 1379 diff --git a/source/designs/detail/005/005177.json b/source/designs/detail/005/005177.json new file mode 100644 index 0000000000000000000000000000000000000000..8dd7c780dc50fb5c91ea45efd80debc52c21154c --- /dev/null +++ b/source/designs/detail/005/005177.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41870a21dee661879c2c1c6cd847cf0a62905081d0c84dccb2b637b1730f1d5 +size 1590 diff --git a/source/designs/detail/005/005178.json b/source/designs/detail/005/005178.json new file mode 100644 index 0000000000000000000000000000000000000000..4751976c600f96178a3299bf41ea8364bc1c8b12 --- /dev/null +++ b/source/designs/detail/005/005178.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934b88257c74f798d4ce08ca6ec9559884a6cb1f38aa607d4cedf242707a2ddf +size 1333 diff --git a/source/designs/detail/005/005179.json b/source/designs/detail/005/005179.json new file mode 100644 index 0000000000000000000000000000000000000000..fbcb7905fd779110d080d9191fd91433b3ba621f --- /dev/null +++ b/source/designs/detail/005/005179.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed5608c1b9f5d1ee678d049534bfef919030c4c33c493182f288eddc9df2868 +size 1828 diff --git a/source/designs/detail/005/005180.json b/source/designs/detail/005/005180.json new file mode 100644 index 0000000000000000000000000000000000000000..4d6e1ebec221c0a918bda24619dd85916eed6806 --- /dev/null +++ b/source/designs/detail/005/005180.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc24f120efef2bf1527e4f88a487a098cae2078564ae0d5d190a4dce944204f +size 1325 diff --git a/source/designs/detail/005/005181.json b/source/designs/detail/005/005181.json new file mode 100644 index 0000000000000000000000000000000000000000..ad38c800140d1b545476e96226c60c4ff4dd7ca5 --- /dev/null +++ b/source/designs/detail/005/005181.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fb5dd892d4e666b8b28e1d4851c3c87f15c1dceaabd770d718521b23bb475e +size 1340 diff --git a/source/designs/detail/005/005182.json b/source/designs/detail/005/005182.json new file mode 100644 index 0000000000000000000000000000000000000000..3162a8e9b47e8c0fc808088174d5b2d396443d8e --- /dev/null +++ b/source/designs/detail/005/005182.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4d7fb5cea9b0480a657c351537503f9d2347a7ad4686ee0e33466687d3d3e6 +size 1517 diff --git a/source/designs/detail/005/005183.json b/source/designs/detail/005/005183.json new file mode 100644 index 0000000000000000000000000000000000000000..a288ab0ffb57208e6dbc2edcaf968a8172fa603d --- /dev/null +++ b/source/designs/detail/005/005183.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c4367c9e217303292dcc50f23bf8ebcca8f9087762fb0a2ac4757b7c8b0a4d +size 1618 diff --git a/source/designs/detail/005/005184.json b/source/designs/detail/005/005184.json new file mode 100644 index 0000000000000000000000000000000000000000..ca99605abd2b9b0646cb5dd2dc6edd5d48685c46 --- /dev/null +++ b/source/designs/detail/005/005184.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07bef78c253f374711d7950133e5e1833dd904d39c33efe0677c4ab3475969f +size 1396 diff --git a/source/designs/detail/005/005185.json b/source/designs/detail/005/005185.json new file mode 100644 index 0000000000000000000000000000000000000000..9e7ba9b945cf4d0d6cec4758e1b60c806891868f --- /dev/null +++ b/source/designs/detail/005/005185.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5fc060a230f7aaabf04cca406ed5525d655ac34a10852bda912dfaa9721bd4 +size 1443 diff --git a/source/designs/detail/005/005186.json b/source/designs/detail/005/005186.json new file mode 100644 index 0000000000000000000000000000000000000000..e23dd04f1575217006ca97ed67a440f2447c880b --- /dev/null +++ b/source/designs/detail/005/005186.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae13f2a8f7a5b8e416add761f5591c219cc48e30fab717fe597c838f30ddee87 +size 1545 diff --git a/source/designs/detail/005/005187.json b/source/designs/detail/005/005187.json new file mode 100644 index 0000000000000000000000000000000000000000..8f97cb20c4fd946ad16936e1e2603d0967f0f407 --- /dev/null +++ b/source/designs/detail/005/005187.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78df5fe8e01f011ef235824a5ea550a2cbd10f23500275506f5471808464cc46 +size 1675 diff --git a/source/designs/detail/005/005188.json b/source/designs/detail/005/005188.json new file mode 100644 index 0000000000000000000000000000000000000000..71477eb37b06f7f2c96058fcd4e2879602065ab6 --- /dev/null +++ b/source/designs/detail/005/005188.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbcb75c766e047add01e3a7ba7a8909bb145621190d79fd4ea24cee29d3ad9f1 +size 1455 diff --git a/source/designs/detail/005/005189.json b/source/designs/detail/005/005189.json new file mode 100644 index 0000000000000000000000000000000000000000..392a991cbb3397ace405b3f21efb3d6b4a8a813e --- /dev/null +++ b/source/designs/detail/005/005189.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f58dd07172a3588e503f5a7c74a4608f006d881a5524363391f04a193534ed4 +size 1407 diff --git a/source/designs/detail/005/005190.json b/source/designs/detail/005/005190.json new file mode 100644 index 0000000000000000000000000000000000000000..a7ae9b91c991e8c1900c11b2fc475e4a8d507187 --- /dev/null +++ b/source/designs/detail/005/005190.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfee2a5c0ffb2af78965174d52a88f0d83fcabe4c3e0926613396cc7fd55702 +size 1463 diff --git a/source/designs/detail/005/005191.json b/source/designs/detail/005/005191.json new file mode 100644 index 0000000000000000000000000000000000000000..0300e02e8e9e9dfc034398bcaf35f820c9167677 --- /dev/null +++ b/source/designs/detail/005/005191.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83011df953fe372386ceb2fc2cd3ed4cff4836226405d1edaf832413e8a344cc +size 1996 diff --git a/source/designs/detail/005/005192.json b/source/designs/detail/005/005192.json new file mode 100644 index 0000000000000000000000000000000000000000..06c49e90b1218d68c12cf0c33ab814f8cf1a6663 --- /dev/null +++ b/source/designs/detail/005/005192.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c2a3038a2a38f932e4e1bae9c3108bcee1d0f00400f07fca98c67b0c4f66439 +size 2476 diff --git a/source/designs/detail/005/005193.json b/source/designs/detail/005/005193.json new file mode 100644 index 0000000000000000000000000000000000000000..87554ccffe1209c94da58ad2760ea97516b1de95 --- /dev/null +++ b/source/designs/detail/005/005193.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df160eb8535001f040a75aaadb1962e60d500a638fb5b4f0933c0137c7eab39d +size 2661 diff --git a/source/designs/detail/005/005194.json b/source/designs/detail/005/005194.json new file mode 100644 index 0000000000000000000000000000000000000000..4333551b1dd4334c242403802699e7e1239c1bc7 --- /dev/null +++ b/source/designs/detail/005/005194.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f649f360ced1396c609fb1edd53ebde5350bcf495d6c956914dc509021262897 +size 2597 diff --git a/source/designs/detail/005/005195.json b/source/designs/detail/005/005195.json new file mode 100644 index 0000000000000000000000000000000000000000..a8b81890cfcbf654b71c6553b024348c71142446 --- /dev/null +++ b/source/designs/detail/005/005195.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84cc631bc0c362c199a8a52495a6bff2fd1035a327b2ca86b458d7d27433ca62 +size 1904 diff --git a/source/designs/detail/005/005196.json b/source/designs/detail/005/005196.json new file mode 100644 index 0000000000000000000000000000000000000000..93f30690070d94a80b9c23dd2bd952223d8cca00 --- /dev/null +++ b/source/designs/detail/005/005196.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6928ada48dac2ac0ac5d41b32f169b48443b6c71dd8f4c43c49e99ae21c86d65 +size 1927 diff --git a/source/designs/detail/005/005197.json b/source/designs/detail/005/005197.json new file mode 100644 index 0000000000000000000000000000000000000000..d6a993bf691a109e7d7ed17907290fce5bdc847e --- /dev/null +++ b/source/designs/detail/005/005197.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4b32d8d2754f1ad19aec70d6be4b68eb28774b143f9e2fe31ed3e75ad1044d +size 1440 diff --git a/source/designs/detail/005/005198.json b/source/designs/detail/005/005198.json new file mode 100644 index 0000000000000000000000000000000000000000..10d950fadb9538fa680f005bf2805e1af8da92e9 --- /dev/null +++ b/source/designs/detail/005/005198.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142735f4b8123c12a72c8832c41bc6a745c6c934385f9091b9c7bfb1ff1d48dc +size 1312 diff --git a/source/designs/detail/005/005199.json b/source/designs/detail/005/005199.json new file mode 100644 index 0000000000000000000000000000000000000000..fb340579184d29543b10707fe01accd085e3c1cb --- /dev/null +++ b/source/designs/detail/005/005199.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4026a6f289e9fc06a17bd5cccb655f3aea2aeefd5d40b0e58689db8914e61f +size 1206 diff --git a/source/designs/detail/005/005200.json b/source/designs/detail/005/005200.json new file mode 100644 index 0000000000000000000000000000000000000000..32b41582881d1a387fe1bb9194faf6742cc04f36 --- /dev/null +++ b/source/designs/detail/005/005200.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11924398200a6d6ee0c6be5ee8bcaca1588e4567816c99c3278cef5c06b06442 +size 1330 diff --git a/source/designs/detail/005/005201.json b/source/designs/detail/005/005201.json new file mode 100644 index 0000000000000000000000000000000000000000..66568d2e9cfccdf04e39ddde5961a8492145246d --- /dev/null +++ b/source/designs/detail/005/005201.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197e597589fbf16cfce05b46d0b252c62782a68fa72830eb468acb6f9bf60ff0 +size 1852 diff --git a/source/designs/detail/005/005202.json b/source/designs/detail/005/005202.json new file mode 100644 index 0000000000000000000000000000000000000000..d3d9c83b0986cedb334c7465db778df20a5e635d --- /dev/null +++ b/source/designs/detail/005/005202.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:143e66a9554b7ff99e481a561cfa05d5840c08c1c0424663719c64382bad381e +size 1458 diff --git a/source/designs/detail/005/005203.json b/source/designs/detail/005/005203.json new file mode 100644 index 0000000000000000000000000000000000000000..cf4ffe77f4b0150ad83caff52944e5bd0a209db0 --- /dev/null +++ b/source/designs/detail/005/005203.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afdff39e2e8c00c1edd1db296003a6e338dabf4d0dac28cfdbaa3f2950746fa2 +size 1738 diff --git a/source/designs/detail/005/005204.json b/source/designs/detail/005/005204.json new file mode 100644 index 0000000000000000000000000000000000000000..e4c87d01c045ea3d722209f321482bc300b67cd5 --- /dev/null +++ b/source/designs/detail/005/005204.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512255f81ce5d5ece57c71004e3a5379cf5db659a8e4fc6972f7cd3170220bd9 +size 1661 diff --git a/source/designs/detail/005/005205.json b/source/designs/detail/005/005205.json new file mode 100644 index 0000000000000000000000000000000000000000..6ae08078c90643af8951c0475bd095c0b01144c5 --- /dev/null +++ b/source/designs/detail/005/005205.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c8bcdb06611237fa8ed5ece43b423cc30b643411af21eb65f40d08b630c7fa +size 1482 diff --git a/source/designs/detail/005/005206.json b/source/designs/detail/005/005206.json new file mode 100644 index 0000000000000000000000000000000000000000..eaf87a043331d01420e6d17694edf174feadebe9 --- /dev/null +++ b/source/designs/detail/005/005206.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bbc068ab6cc8ac5b6e57ba1a2e70fe7b78054856a09b79b92536bb7e4a7e134 +size 1425 diff --git a/source/designs/detail/005/005207.json b/source/designs/detail/005/005207.json new file mode 100644 index 0000000000000000000000000000000000000000..82f92e0e1d131b95f566e8522aeb91b8c33b006a --- /dev/null +++ b/source/designs/detail/005/005207.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10dd459af8b153eb3962e43791022b64a7b1afe5c3397d8eb5ad0a0a9836b17d +size 1058 diff --git a/source/designs/detail/005/005208.json b/source/designs/detail/005/005208.json new file mode 100644 index 0000000000000000000000000000000000000000..f13c56bf4e6871dada19a8ef3875c8f8122d8c9e --- /dev/null +++ b/source/designs/detail/005/005208.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dac278332d68e40a243151428bfae4bbf502bc47789c3bb9c28f25acf962058 +size 1088 diff --git a/source/designs/detail/005/005209.json b/source/designs/detail/005/005209.json new file mode 100644 index 0000000000000000000000000000000000000000..a55f70f3f754ad65c489685d3a629a47cf776eaa --- /dev/null +++ b/source/designs/detail/005/005209.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d72c79b4fd6fd73207cc00d82b6dc435104abf8f3b2883c1f5123de40ef5f21 +size 1103 diff --git a/source/designs/detail/005/005210.json b/source/designs/detail/005/005210.json new file mode 100644 index 0000000000000000000000000000000000000000..b13797417f2b911dc5ac9863504e14460dc537ea --- /dev/null +++ b/source/designs/detail/005/005210.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f4ad43b6ec1c0c245c31536ec0a397c9c8afafefa5ea7d93ede69929ea73b02 +size 1031 diff --git a/source/designs/detail/005/005211.json b/source/designs/detail/005/005211.json new file mode 100644 index 0000000000000000000000000000000000000000..16ba0c91cc10a2567b662b10817e77e7c7c0f586 --- /dev/null +++ b/source/designs/detail/005/005211.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4860ca0ef5cfe9aafe8792962445fcd1608fc113eef437ddacb36be71d2321f3 +size 2415 diff --git a/source/designs/detail/005/005212.json b/source/designs/detail/005/005212.json new file mode 100644 index 0000000000000000000000000000000000000000..e1992f1e81884785aa619b7fff63896e8ec124e8 --- /dev/null +++ b/source/designs/detail/005/005212.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747474d68c184c29d4f736ff79bcc0c5dde34689b4ccfd40cf3633ce14fc6b7e +size 4394 diff --git a/source/designs/detail/005/005213.json b/source/designs/detail/005/005213.json new file mode 100644 index 0000000000000000000000000000000000000000..24a87b3d70e250ad608a2742560bba5b5f1882f2 --- /dev/null +++ b/source/designs/detail/005/005213.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a95116767b43e52ad40f10f9747e742cf20e60ad36a570026c33ac5b5137e7a +size 3092 diff --git a/source/designs/detail/005/005214.json b/source/designs/detail/005/005214.json new file mode 100644 index 0000000000000000000000000000000000000000..8bfc582356818334d06d84ecb32c4a43b68eedbe --- /dev/null +++ b/source/designs/detail/005/005214.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69b2410a0f4fc79101f11b1c8bf742913c34820bb7ce8cffb585ede30208ef2 +size 1405 diff --git a/source/designs/detail/005/005215.json b/source/designs/detail/005/005215.json new file mode 100644 index 0000000000000000000000000000000000000000..dd9d735c66382d0d88b905bfc9517e210eb26d0e --- /dev/null +++ b/source/designs/detail/005/005215.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf63ae4145fc3a6218166dd4e90f6b1f3e654dc7895155e975dfe3f2df74d8c +size 1546 diff --git a/source/designs/detail/005/005216.json b/source/designs/detail/005/005216.json new file mode 100644 index 0000000000000000000000000000000000000000..a011c69f31b129f1dad96a631b6476af3a8fc974 --- /dev/null +++ b/source/designs/detail/005/005216.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835d9ca896916d7a379a8b767fc5aceb96c981dba8cc50b33574b4c39b4dd6e6 +size 2877 diff --git a/source/designs/detail/005/005217.json b/source/designs/detail/005/005217.json new file mode 100644 index 0000000000000000000000000000000000000000..272592e0b2aa35711d0eea4a25adb48fed7d876d --- /dev/null +++ b/source/designs/detail/005/005217.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69628baa24d128e0fe3b7f93a738111f65e8b7889e2c9737550e0666d556227 +size 1433 diff --git a/source/designs/detail/005/005218.json b/source/designs/detail/005/005218.json new file mode 100644 index 0000000000000000000000000000000000000000..1c9387fcecd78966351413c12bdfcc80e5966926 --- /dev/null +++ b/source/designs/detail/005/005218.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7407c292889ffff44971f49705aab5b765b0c0842cf76f8da474a410cec839e +size 1732 diff --git a/source/designs/detail/005/005219.json b/source/designs/detail/005/005219.json new file mode 100644 index 0000000000000000000000000000000000000000..f7ff9b8aa7f65e8c4114b53b3ad0b77377ee1635 --- /dev/null +++ b/source/designs/detail/005/005219.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cca4de4159a1a676dc59d6496dfcffa85de9103dcbce88028caeff9eb790745 +size 3514 diff --git a/source/designs/detail/005/005220.json b/source/designs/detail/005/005220.json new file mode 100644 index 0000000000000000000000000000000000000000..eef034d524fc7742cbec15a5977eac1ed413c49d --- /dev/null +++ b/source/designs/detail/005/005220.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964f3615b61642bb0822de48a8bfe14a5eef8e2a625d0e8320b5c26e1ea1b935 +size 2788 diff --git a/source/designs/detail/005/005221.json b/source/designs/detail/005/005221.json new file mode 100644 index 0000000000000000000000000000000000000000..3d4ae9e81482ef9b684398a8c89ed31efa26c9a4 --- /dev/null +++ b/source/designs/detail/005/005221.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d3d3ff110cec0bc2d730d579e70d6c10ad3f3519538f60e72183bf12dd324e +size 2977 diff --git a/source/designs/detail/005/005222.json b/source/designs/detail/005/005222.json new file mode 100644 index 0000000000000000000000000000000000000000..9e98412eac13de122ec4b48809bde98ddff5b0bb --- /dev/null +++ b/source/designs/detail/005/005222.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d03fe81b14ab5d644ead78ea39e974fd7be0f46c923d656427c6cf25528a719 +size 1795 diff --git a/source/designs/detail/005/005223.json b/source/designs/detail/005/005223.json new file mode 100644 index 0000000000000000000000000000000000000000..955b8653fc8782c0adaa806a7c2194199559182c --- /dev/null +++ b/source/designs/detail/005/005223.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457b6cc54a8e8eb5a144415e773fa2242aea53c9131c612166c6fc4616a565b7 +size 1363 diff --git a/source/designs/detail/005/005224.json b/source/designs/detail/005/005224.json new file mode 100644 index 0000000000000000000000000000000000000000..1cf712b7b871a007e900e222a8c040a89ef7e375 --- /dev/null +++ b/source/designs/detail/005/005224.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e2fdba1c5ff5ca56ddc2fa1bbe39ae633022e12e679816935af1fb9ac8e652 +size 973 diff --git a/source/designs/detail/005/005225.json b/source/designs/detail/005/005225.json new file mode 100644 index 0000000000000000000000000000000000000000..a763dd073cfd6930bdb12c82953d588beee4d019 --- /dev/null +++ b/source/designs/detail/005/005225.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6978b46fe843feb62a942c88cec3e09d910d3908a51c58774a8d9cc33573f8e1 +size 1352 diff --git a/source/designs/detail/005/005226.json b/source/designs/detail/005/005226.json new file mode 100644 index 0000000000000000000000000000000000000000..8153cedbe22bd8fb220f35873a8feb0fb1d4e28f --- /dev/null +++ b/source/designs/detail/005/005226.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233b7bc8a1e03caf9afa786208c0b8f12828be8cb1226c3452155597eb938616 +size 1833 diff --git a/source/designs/detail/005/005227.json b/source/designs/detail/005/005227.json new file mode 100644 index 0000000000000000000000000000000000000000..9997f7188737b4101d8f11217a2ca5eaee134128 --- /dev/null +++ b/source/designs/detail/005/005227.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3c965624f112d0cd9950efce7d08c3227f4c31a53e36f1d3d3a6d81c975c50d +size 1469 diff --git a/source/designs/detail/005/005228.json b/source/designs/detail/005/005228.json new file mode 100644 index 0000000000000000000000000000000000000000..4080769843337231c5b6930be7795fbb56e014fb --- /dev/null +++ b/source/designs/detail/005/005228.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac71ed6b5aea0a18a782eb7b5b8d3d5cf9b8b3a688db9e36d97526f4c22db8e6 +size 1219 diff --git a/source/designs/detail/005/005229.json b/source/designs/detail/005/005229.json new file mode 100644 index 0000000000000000000000000000000000000000..6d0f1ff4067a3baa3977075de0bd152b509f6bdf --- /dev/null +++ b/source/designs/detail/005/005229.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8a8bd030778f51a8d9afe6801dfbdfd180d4b033d71aa339ed9526102965d1 +size 2153 diff --git a/source/designs/detail/005/005230.json b/source/designs/detail/005/005230.json new file mode 100644 index 0000000000000000000000000000000000000000..4e7b5b3e8c1d4267fd75c88c435bb2f71bbbb861 --- /dev/null +++ b/source/designs/detail/005/005230.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006174320e85950b8ead64707b6897128333b5fdc801de2c5213b71fd024de85 +size 1278 diff --git a/source/designs/detail/005/005231.json b/source/designs/detail/005/005231.json new file mode 100644 index 0000000000000000000000000000000000000000..5729b81e092ad6a1f4150249060d9fbe22abafb4 --- /dev/null +++ b/source/designs/detail/005/005231.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65911158bb78b050f4e1258ba85e9179270970b5d48895f3148562449bbf1ae6 +size 1547 diff --git a/source/designs/detail/005/005232.json b/source/designs/detail/005/005232.json new file mode 100644 index 0000000000000000000000000000000000000000..3e7d3dda2955d0d731727b37923081ee3081528a --- /dev/null +++ b/source/designs/detail/005/005232.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b2909e310171d34b0c14172115da3e020ae8c5d363a78fe23d340aed6468c9 +size 1182 diff --git a/source/designs/detail/005/005233.json b/source/designs/detail/005/005233.json new file mode 100644 index 0000000000000000000000000000000000000000..1a59700eebe4cfc4ee84d1317eb1d5da38aaebe9 --- /dev/null +++ b/source/designs/detail/005/005233.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6aa81a81d4cd2c59d8a7286e0707c2fbaa42c5ff71aaa5df14cc99106b170d +size 1072 diff --git a/source/designs/detail/005/005234.json b/source/designs/detail/005/005234.json new file mode 100644 index 0000000000000000000000000000000000000000..539bf632bd044027a82bd5fcea8cb8e9a4ffa1ec --- /dev/null +++ b/source/designs/detail/005/005234.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a1ba4e765f91173d35750bbd73c33db1609b2e72fb9c9138eed9bd6240da24 +size 1064 diff --git a/source/designs/detail/005/005235.json b/source/designs/detail/005/005235.json new file mode 100644 index 0000000000000000000000000000000000000000..36fde82d14b1140ff06bbbadd16b781e6cb29b59 --- /dev/null +++ b/source/designs/detail/005/005235.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b5fed07339f07a7646e3b3891ad7cfb78c0895835edcd1b7fb0f05b9ac38c2c +size 1532 diff --git a/source/designs/detail/005/005236.json b/source/designs/detail/005/005236.json new file mode 100644 index 0000000000000000000000000000000000000000..9c8e9d11247799535cfc6102277363ec00152a27 --- /dev/null +++ b/source/designs/detail/005/005236.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebe442cd3ab8557a9ddb8d1cffde4c2b46b7c74ecbe6f8f6e56f3c92829affd8 +size 2322 diff --git a/source/designs/detail/005/005237.json b/source/designs/detail/005/005237.json new file mode 100644 index 0000000000000000000000000000000000000000..a6366dc1b8e4f6427cba803fd75f1a4dbc8a13a2 --- /dev/null +++ b/source/designs/detail/005/005237.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8db2a5fdcff228ff7d6957e1afcee9306a4ac0281971a4e2226ca604d17258d +size 2507 diff --git a/source/designs/detail/005/005238.json b/source/designs/detail/005/005238.json new file mode 100644 index 0000000000000000000000000000000000000000..756b3c9f26382d70dda48ee570d688fe6b84078f --- /dev/null +++ b/source/designs/detail/005/005238.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a701cccc5ae000fc2f2a054f772a0389203e3565d3e184dbfec76a7ad5e1c3da +size 2240 diff --git a/source/designs/detail/005/005239.json b/source/designs/detail/005/005239.json new file mode 100644 index 0000000000000000000000000000000000000000..16ed8a4b99fcb2e59722b077f85a307894b9e409 --- /dev/null +++ b/source/designs/detail/005/005239.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2b4ce4979f8a64431b077fe7238ebecb6f8f13632ae9f7a1c8a80dc0674457 +size 1354 diff --git a/source/designs/detail/005/005240.json b/source/designs/detail/005/005240.json new file mode 100644 index 0000000000000000000000000000000000000000..450d381c6d21bb5540ef0de5876f4e49e1c6966f --- /dev/null +++ b/source/designs/detail/005/005240.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78589e9f97b4f30351aace3edce1fe1be314a125d13d0d9f713e59a27451d080 +size 1269 diff --git a/source/designs/detail/005/005241.json b/source/designs/detail/005/005241.json new file mode 100644 index 0000000000000000000000000000000000000000..5fdb9e040f0999483a8c662bad122b44142607d4 --- /dev/null +++ b/source/designs/detail/005/005241.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9387a400a0fb490ca61da33af9292de822cf9dba17518f4a5048f1809adeeee +size 1433 diff --git a/source/designs/detail/005/005242.json b/source/designs/detail/005/005242.json new file mode 100644 index 0000000000000000000000000000000000000000..34dec779094ac02c98cca8e500c2016174c13461 --- /dev/null +++ b/source/designs/detail/005/005242.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16cc88185f6aa049a1017d46c48b405e354b64d722b62c0c465e92d117fb858 +size 1232 diff --git a/source/designs/detail/005/005243.json b/source/designs/detail/005/005243.json new file mode 100644 index 0000000000000000000000000000000000000000..9f5c8ebb47db740d568f6387b94cba85331c5a83 --- /dev/null +++ b/source/designs/detail/005/005243.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93d0bd5786052c0eeb29033e406074f166e78d2a9a3062b3eac708b53f81719 +size 1520 diff --git a/source/designs/detail/005/005244.json b/source/designs/detail/005/005244.json new file mode 100644 index 0000000000000000000000000000000000000000..516de2124d19c0d2381ab8df6f20809e3afc186d --- /dev/null +++ b/source/designs/detail/005/005244.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d06cebaeb987f0519079d297daebc0f13be18e7fb41036774c942121d752345 +size 1342 diff --git a/source/designs/detail/005/005245.json b/source/designs/detail/005/005245.json new file mode 100644 index 0000000000000000000000000000000000000000..2d3ca7a4bb6ded0deb9514618dc04b4db64d9465 --- /dev/null +++ b/source/designs/detail/005/005245.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b96b99994a35d1d1cfa115012544e4e9fbd3a88b5f9405c137a97176b898ea65 +size 1877 diff --git a/source/designs/detail/005/005246.json b/source/designs/detail/005/005246.json new file mode 100644 index 0000000000000000000000000000000000000000..1fce88da26c955b7d668848f63d893da7abdfaf3 --- /dev/null +++ b/source/designs/detail/005/005246.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b48ab490ce1bbb4bb790851ec1d878c920e91de6e7503866aee45d09ffc88c8 +size 1504 diff --git a/source/designs/detail/005/005247.json b/source/designs/detail/005/005247.json new file mode 100644 index 0000000000000000000000000000000000000000..d32abbae70c57bd816c9967714ee599dd0858d04 --- /dev/null +++ b/source/designs/detail/005/005247.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef2767f5f818ede4d923d2a4159088908644e90fab545af896b5563d704883f +size 3706 diff --git a/source/designs/detail/005/005248.json b/source/designs/detail/005/005248.json new file mode 100644 index 0000000000000000000000000000000000000000..e21de7025e1f0177cd53f9a71351b46b6e34730a --- /dev/null +++ b/source/designs/detail/005/005248.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e72860029cf200bc7a8f49fb51f378ef570c223fc9913be623e8aa1c0b0be44 +size 1204 diff --git a/source/designs/detail/005/005249.json b/source/designs/detail/005/005249.json new file mode 100644 index 0000000000000000000000000000000000000000..b0c3348e3e786edd8d96d8c79985a2d9f3261299 --- /dev/null +++ b/source/designs/detail/005/005249.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:128bbd2b53e22a16dd6179e43164668ff190601bc5624b88a4d9eef7f364e314 +size 1516 diff --git a/source/designs/detail/005/005250.json b/source/designs/detail/005/005250.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0cf7d411d1bc0bb1e814c0979d924d3e04dcb9 --- /dev/null +++ b/source/designs/detail/005/005250.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b183045ba007244a48847fb8d6b31cd78621c0b073efdc1cb04cf0bde2dd8203 +size 1486 diff --git a/source/designs/detail/005/005251.json b/source/designs/detail/005/005251.json new file mode 100644 index 0000000000000000000000000000000000000000..7c84a330ed7dbce3bd6e4d4fcce5662859124558 --- /dev/null +++ b/source/designs/detail/005/005251.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c9ff49962ee25313ea61acfd4b01e6edb7310d4ac4d2c7d6449e833186eac6 +size 1917 diff --git a/source/designs/detail/005/005252.json b/source/designs/detail/005/005252.json new file mode 100644 index 0000000000000000000000000000000000000000..2c33dec7dca1745a4653fdfa50a2ca10b12872d0 --- /dev/null +++ b/source/designs/detail/005/005252.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1b1620f5ecb6932696b4a0fa48aa4c9e265c9d1d277338111d3f0e83e21eb5 +size 1505 diff --git a/source/designs/detail/005/005253.json b/source/designs/detail/005/005253.json new file mode 100644 index 0000000000000000000000000000000000000000..a7fb6ee66766a6bf9bb81c82955cd80db9d501ce --- /dev/null +++ b/source/designs/detail/005/005253.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ee87ec761059199f487e8522ffb037de172b38a11215dec061c39d892bd1cb +size 1743 diff --git a/source/designs/detail/005/005254.json b/source/designs/detail/005/005254.json new file mode 100644 index 0000000000000000000000000000000000000000..ea7f6d0722943a2c85bc83006b16e35bfdd25daf --- /dev/null +++ b/source/designs/detail/005/005254.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d68630167f36bb0038359f3388482551b497bf1af21e43d8da23644d8d9a878d +size 1359 diff --git a/source/designs/detail/005/005255.json b/source/designs/detail/005/005255.json new file mode 100644 index 0000000000000000000000000000000000000000..09118e703a216f9c8f53ff45cc71280a4428d319 --- /dev/null +++ b/source/designs/detail/005/005255.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c833f988227e27fa646a82781f80d968cdd87086d30ab2f400067abe772ea91 +size 1170 diff --git a/source/designs/detail/005/005256.json b/source/designs/detail/005/005256.json new file mode 100644 index 0000000000000000000000000000000000000000..181c7c5b2a33dae2af703c8081881d916ea69c93 --- /dev/null +++ b/source/designs/detail/005/005256.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f7806b0c3e6c4bde7803d1565b1a816dfb9dcfaf98c05fcd196d372fe3264ed +size 1209 diff --git a/source/designs/detail/005/005257.json b/source/designs/detail/005/005257.json new file mode 100644 index 0000000000000000000000000000000000000000..5433151a3e35a51c17a1c1c413f150a7d9657bdc --- /dev/null +++ b/source/designs/detail/005/005257.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8e0ef158b992203546986478e4e4b2c2e0c8ce6d5ea4471d00aadc22d09511 +size 1724 diff --git a/source/designs/detail/005/005258.json b/source/designs/detail/005/005258.json new file mode 100644 index 0000000000000000000000000000000000000000..90100f90b7b2755b93403ec7ea1fabe9052aa1d2 --- /dev/null +++ b/source/designs/detail/005/005258.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6585bab63ebe5e8cf2aba969775b88755bf19af8660d0edfbcad9f320397e812 +size 1260 diff --git a/source/designs/detail/005/005259.json b/source/designs/detail/005/005259.json new file mode 100644 index 0000000000000000000000000000000000000000..f3a364d86286a98c7dcefb3f20b90c5ebf016328 --- /dev/null +++ b/source/designs/detail/005/005259.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04cd1c4d9f364471d2e0f50ecc2075ce6b9cca8368123e6c1e5522e53a47dd9c +size 1819 diff --git a/source/designs/detail/005/005260.json b/source/designs/detail/005/005260.json new file mode 100644 index 0000000000000000000000000000000000000000..81b12009f3f6439653357c18af9740a8eff69755 --- /dev/null +++ b/source/designs/detail/005/005260.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cee4c605e6b5efd52c008f71ab7a3541713ba42c9401ad3a70c04592feadd14 +size 1649 diff --git a/source/designs/detail/005/005261.json b/source/designs/detail/005/005261.json new file mode 100644 index 0000000000000000000000000000000000000000..fc02f66fbff3a1eeaad6a3e312240a8c91ebd53e --- /dev/null +++ b/source/designs/detail/005/005261.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a25f55a2bbd08adddd8dd817640d92563bdf21168558956b336cfa9483f25a5 +size 1459 diff --git a/source/designs/detail/005/005262.json b/source/designs/detail/005/005262.json new file mode 100644 index 0000000000000000000000000000000000000000..cc392415f7d37febfb755777643022afefac5912 --- /dev/null +++ b/source/designs/detail/005/005262.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ead47a181eb19aae67961c06ecfd9b5070cd55cb76a1321785f96ccae855439e +size 1284 diff --git a/source/designs/detail/005/005263.json b/source/designs/detail/005/005263.json new file mode 100644 index 0000000000000000000000000000000000000000..8fdc5e5cf0634a61790daf707fcf3ff3581ef89c --- /dev/null +++ b/source/designs/detail/005/005263.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929cf22fc571e91b6fe0cddc72583077470baea974079190bbcd3d74c088848f +size 1703 diff --git a/source/designs/detail/005/005264.json b/source/designs/detail/005/005264.json new file mode 100644 index 0000000000000000000000000000000000000000..f240329f0e275014ea103d583d2a05e41d9feccb --- /dev/null +++ b/source/designs/detail/005/005264.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e17db44b19aaf2724ad88123e43762bd2a2101c1b2edaa22bb5418cb69b6126 +size 2191 diff --git a/source/designs/detail/005/005265.json b/source/designs/detail/005/005265.json new file mode 100644 index 0000000000000000000000000000000000000000..7310755fefc0be4e6d3655e489bc5a30eb19c5c7 --- /dev/null +++ b/source/designs/detail/005/005265.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb4b254806f40cd008e42b47622b449e80e1143cba2ad26347a30dd5569830cc +size 1628 diff --git a/source/designs/detail/005/005266.json b/source/designs/detail/005/005266.json new file mode 100644 index 0000000000000000000000000000000000000000..f73ba67f119e5ac346687bedf9864233d2b5e74b --- /dev/null +++ b/source/designs/detail/005/005266.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec593c344c0f81d88a4c1517a259ea50d8492cd32f6f64b606fa61306dafde82 +size 2586 diff --git a/source/designs/detail/005/005267.json b/source/designs/detail/005/005267.json new file mode 100644 index 0000000000000000000000000000000000000000..b5f492b476d38dad81339cd35b5a4685d152d146 --- /dev/null +++ b/source/designs/detail/005/005267.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae374c2a371d00429df14c97419174c7acc7ff5525ea03996f023f38d1ab1b6c +size 2804 diff --git a/source/designs/detail/005/005268.json b/source/designs/detail/005/005268.json new file mode 100644 index 0000000000000000000000000000000000000000..d837f0e7cf2d060a04dd46183d78052011c63248 --- /dev/null +++ b/source/designs/detail/005/005268.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79c68994cb7bf55a5a0034e07edc9ff4791c7499a60b78fabe50e6db3313a30 +size 1950 diff --git a/source/designs/detail/005/005269.json b/source/designs/detail/005/005269.json new file mode 100644 index 0000000000000000000000000000000000000000..e83e944c518e9259804fe47b191d48ab46df72e7 --- /dev/null +++ b/source/designs/detail/005/005269.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153c8491717f5ceb24cdc3104e161a6284c077c150bae7ea7919748334ba3fca +size 1398 diff --git a/source/designs/detail/005/005270.json b/source/designs/detail/005/005270.json new file mode 100644 index 0000000000000000000000000000000000000000..364d6fc631528902f5f734f810cca9fc83c74f7d --- /dev/null +++ b/source/designs/detail/005/005270.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69b64b085da88971ea815f7d80b39f22e97aa52b2617a162455c33b05a12e08 +size 1031 diff --git a/source/designs/detail/005/005271.json b/source/designs/detail/005/005271.json new file mode 100644 index 0000000000000000000000000000000000000000..272494b01f25ee8f8d09f3b11e40d51cb9c8ddbb --- /dev/null +++ b/source/designs/detail/005/005271.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35404599a765e6881f8b3a2aaad990d324f30d92868c05eb2ed0fc9bcb446c34 +size 1554 diff --git a/source/designs/detail/005/005272.json b/source/designs/detail/005/005272.json new file mode 100644 index 0000000000000000000000000000000000000000..47fca81a74637b8ced7164c0e958cbabcdda7aa6 --- /dev/null +++ b/source/designs/detail/005/005272.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65706ff16fe716ecacc4f5c26eaebde94410427882ba75478152d61e0a475162 +size 2399 diff --git a/source/designs/detail/005/005273.json b/source/designs/detail/005/005273.json new file mode 100644 index 0000000000000000000000000000000000000000..5692d47d63e846d297528e3c15cc36d7af19d331 --- /dev/null +++ b/source/designs/detail/005/005273.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92104b01b0879aced244aa118431c1e796f6889d39fc74cee607cca971f3dcd2 +size 1672 diff --git a/source/designs/detail/005/005274.json b/source/designs/detail/005/005274.json new file mode 100644 index 0000000000000000000000000000000000000000..a99650342002fbb5b1278e678f26bd16720e0ebc --- /dev/null +++ b/source/designs/detail/005/005274.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:421fc6e75f9c52d1bad985732c32f57235e49ff2e2bc7718808ea5541c78677a +size 1519 diff --git a/source/designs/detail/005/005275.json b/source/designs/detail/005/005275.json new file mode 100644 index 0000000000000000000000000000000000000000..4ee0994e5da5ca93dc62abba86cccaddf60da5f1 --- /dev/null +++ b/source/designs/detail/005/005275.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42c70da1dc4f00bbc5b84ef8a22b5f669fc7f8c61d66ad6c8b2d23566ed78f0 +size 1779 diff --git a/source/designs/detail/005/005276.json b/source/designs/detail/005/005276.json new file mode 100644 index 0000000000000000000000000000000000000000..3eee14cab8b8866bf6408926a3b6f9bcc94af618 --- /dev/null +++ b/source/designs/detail/005/005276.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9450a33157dc3b4adb45761118ac61264028134b43ffa61fac6ba347aae0739 +size 1426 diff --git a/source/designs/detail/005/005277.json b/source/designs/detail/005/005277.json new file mode 100644 index 0000000000000000000000000000000000000000..2a4d06e6f8d59dc870a489b645e84f5d5c34ee62 --- /dev/null +++ b/source/designs/detail/005/005277.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03cc6e7881945deda8e8a584790fd4f1bf6e23caea732b9ccf68597f42d44b0f +size 1290 diff --git a/source/designs/detail/005/005278.json b/source/designs/detail/005/005278.json new file mode 100644 index 0000000000000000000000000000000000000000..a22b65665a65d3105d0f05634e2455dadedc8a6c --- /dev/null +++ b/source/designs/detail/005/005278.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ca9a98936639f0bc4bb4e63a1a2cadc935313abb1a9286672fbd07a59992ea +size 1083 diff --git a/source/designs/detail/005/005279.json b/source/designs/detail/005/005279.json new file mode 100644 index 0000000000000000000000000000000000000000..e972730fbd29b1004f0997eefac0ed5fb8122938 --- /dev/null +++ b/source/designs/detail/005/005279.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c37ae072bc4038241e52be9d22efa5c4ab8fde8e12abd098a8ad8c5670e6969 +size 1371 diff --git a/source/designs/detail/005/005280.json b/source/designs/detail/005/005280.json new file mode 100644 index 0000000000000000000000000000000000000000..90bd2baab4a3fab433f7e4ca7801fd7208a255b0 --- /dev/null +++ b/source/designs/detail/005/005280.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b10d4e9482dfd5bef2ffa97518a37779a1a339c749822099ec06f3a87a7fc47 +size 2281 diff --git a/source/designs/detail/005/005281.json b/source/designs/detail/005/005281.json new file mode 100644 index 0000000000000000000000000000000000000000..115f01eb27cad3b682140df3b881e0537e3c2038 --- /dev/null +++ b/source/designs/detail/005/005281.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a64b8a6ee148ee67c0847011e2f2d7af6cb4b3868729eb402f359372880d481 +size 1612 diff --git a/source/designs/detail/005/005282.json b/source/designs/detail/005/005282.json new file mode 100644 index 0000000000000000000000000000000000000000..b47f3188970982d6e4499400beb7781761366712 --- /dev/null +++ b/source/designs/detail/005/005282.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ad777ef9c9f646d4367dc07167877ba8b8da1d212e8f932499020913028f86 +size 1454 diff --git a/source/designs/detail/005/005283.json b/source/designs/detail/005/005283.json new file mode 100644 index 0000000000000000000000000000000000000000..4be03a838662bcc7e9359adc208a21993b831022 --- /dev/null +++ b/source/designs/detail/005/005283.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20002a5f3287b6b5364e8f2d19e9031096918fe29f07dc8cc88c050a0a9f2a2e +size 2172 diff --git a/source/designs/detail/005/005284.json b/source/designs/detail/005/005284.json new file mode 100644 index 0000000000000000000000000000000000000000..83bf850a6de343b1e4ef7c62562a3d96d64f29e8 --- /dev/null +++ b/source/designs/detail/005/005284.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84aa07ba36558217d556bd4bb2b31db08601cfda1d9caf4864b1f96cd3862f1 +size 1175 diff --git a/source/designs/detail/005/005285.json b/source/designs/detail/005/005285.json new file mode 100644 index 0000000000000000000000000000000000000000..a47b81c368ea875c03c65610fcd8909278ab9a17 --- /dev/null +++ b/source/designs/detail/005/005285.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b435a326333bd2b23ec374c8abfc24aaf585414bb62766c22ee1aea2c4da1a +size 1283 diff --git a/source/designs/detail/005/005286.json b/source/designs/detail/005/005286.json new file mode 100644 index 0000000000000000000000000000000000000000..4293915c7bb66d738f1a419689a79d9a0c8b3a50 --- /dev/null +++ b/source/designs/detail/005/005286.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30b64395adadda036b5b8608c00ce7e5fad8c6afced8c219d2cf64ebc78f1dc6 +size 1243 diff --git a/source/designs/detail/005/005287.json b/source/designs/detail/005/005287.json new file mode 100644 index 0000000000000000000000000000000000000000..237a6510dbd0c13f176ff99621e51e623c28389d --- /dev/null +++ b/source/designs/detail/005/005287.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bcb270b8c8a570d9311fae83bd948f8c6c1cd332e6696bc489e5068cf922dfd +size 1459 diff --git a/source/designs/detail/005/005288.json b/source/designs/detail/005/005288.json new file mode 100644 index 0000000000000000000000000000000000000000..ae807c22080cbf80684f1da2e9a0047d86dea38a --- /dev/null +++ b/source/designs/detail/005/005288.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8e58ecba7f7802e6e8ccbc40523e48cc9899866bba9abf725931d372e41f27 +size 1454 diff --git a/source/designs/detail/005/005289.json b/source/designs/detail/005/005289.json new file mode 100644 index 0000000000000000000000000000000000000000..e131e80f409578e91cdc6ae4be86e0c698c24c73 --- /dev/null +++ b/source/designs/detail/005/005289.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df27be476693ec570af1938bdfa309b3108b0caffae46f8472a79aa9b17e0336 +size 1516 diff --git a/source/designs/detail/005/005290.json b/source/designs/detail/005/005290.json new file mode 100644 index 0000000000000000000000000000000000000000..c5ba351aba2c82448d188ca03426c1ef645b2ca5 --- /dev/null +++ b/source/designs/detail/005/005290.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f5ecfe778e10067f46055179623f441d3a0242e4ee433fa5facbabe4083046 +size 1081 diff --git a/source/designs/detail/005/005291.json b/source/designs/detail/005/005291.json new file mode 100644 index 0000000000000000000000000000000000000000..5bb8c72b0d716ec519b27cf0e722676806e86060 --- /dev/null +++ b/source/designs/detail/005/005291.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484eba2c8b75fd6910a4d965e103ed8faab9c8c3f509ebd6f740366d504072bd +size 2048 diff --git a/source/designs/detail/005/005292.json b/source/designs/detail/005/005292.json new file mode 100644 index 0000000000000000000000000000000000000000..45103986ab60c3b5a00287e05b73fa89542a96f3 --- /dev/null +++ b/source/designs/detail/005/005292.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69318633c3b2ebe6b59b50709805979ceb4fbb13964d9b2e799e7b0f918bee50 +size 1728 diff --git a/source/designs/detail/005/005293.json b/source/designs/detail/005/005293.json new file mode 100644 index 0000000000000000000000000000000000000000..4769e169118c2e47be04c92f20d6659ac7a38c36 --- /dev/null +++ b/source/designs/detail/005/005293.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a764323b6e5fdb85de91ee7dad0220db626708366c98198cde4a5896e1d52f56 +size 1696 diff --git a/source/designs/detail/005/005294.json b/source/designs/detail/005/005294.json new file mode 100644 index 0000000000000000000000000000000000000000..5e90f59457af389db58857441d318c27437e6c31 --- /dev/null +++ b/source/designs/detail/005/005294.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa93edda730cbdb7267be0a665dd436aacf73d083870de52fc3377f7831bf2c +size 1503 diff --git a/source/designs/detail/005/005295.json b/source/designs/detail/005/005295.json new file mode 100644 index 0000000000000000000000000000000000000000..5382fceb047448b5228446436826e815cf9e1415 --- /dev/null +++ b/source/designs/detail/005/005295.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be23b3142207e87e73d898e59c09dd6a1cfb80b8ae520c2f4b2ecd3370acd96 +size 1541 diff --git a/source/designs/detail/005/005296.json b/source/designs/detail/005/005296.json new file mode 100644 index 0000000000000000000000000000000000000000..414197d3e6ab50fec3dc2594d6cfd1da294b893a --- /dev/null +++ b/source/designs/detail/005/005296.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3909208d10d1a189537462172440fe4f6775fc10148198afa7dfc7140e90800e +size 1831 diff --git a/source/designs/detail/005/005297.json b/source/designs/detail/005/005297.json new file mode 100644 index 0000000000000000000000000000000000000000..f3cb5d97acddfb9b9e441240f959aa5dd84c0c3b --- /dev/null +++ b/source/designs/detail/005/005297.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2292ad5648af895d8c694c4e559d94e6b196ba8e1f977d15880b345b551d2e29 +size 1283 diff --git a/source/designs/detail/005/005298.json b/source/designs/detail/005/005298.json new file mode 100644 index 0000000000000000000000000000000000000000..f355015930bdd60468b531e2e8c27f0a67e2856d --- /dev/null +++ b/source/designs/detail/005/005298.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:446e5e5f00b546ea32e132b7c59cf287d1e898b1dfc4094e8684a557ebd48507 +size 1904 diff --git a/source/designs/detail/005/005299.json b/source/designs/detail/005/005299.json new file mode 100644 index 0000000000000000000000000000000000000000..dbef8ae174b698c21db0dcebf20009498a449c02 --- /dev/null +++ b/source/designs/detail/005/005299.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0516129a3c6aa5e656c28d9a409b3cc1d7b0326c3b923ad76d2ad2f72a759eef +size 1908 diff --git a/source/designs/detail/005/005300.json b/source/designs/detail/005/005300.json new file mode 100644 index 0000000000000000000000000000000000000000..9135357f00e657d6e984f2a6d06c751cb12c67d1 --- /dev/null +++ b/source/designs/detail/005/005300.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb9e29152f11a3b04638956378f9ea5f24af420f96957797d91aeee5f5dafccd +size 1467 diff --git a/source/designs/detail/005/005301.json b/source/designs/detail/005/005301.json new file mode 100644 index 0000000000000000000000000000000000000000..79f53d926fab4acb6359e7370a7d46ce737a892b --- /dev/null +++ b/source/designs/detail/005/005301.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3a819c39867018bf59dc9c4b0a3346b753edd7aaf8a325df79706309cfdebf +size 1529 diff --git a/source/designs/detail/005/005302.json b/source/designs/detail/005/005302.json new file mode 100644 index 0000000000000000000000000000000000000000..898b27509f5886eda03a3d3e696efeec41385994 --- /dev/null +++ b/source/designs/detail/005/005302.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca69259e53d453bbaaf8d4e368997d4317cdc9b6a2ff483c1cd7c5ecb9aac74 +size 1216 diff --git a/source/designs/detail/005/005303.json b/source/designs/detail/005/005303.json new file mode 100644 index 0000000000000000000000000000000000000000..e4d359b21562e7c45db8ee867adf135630ef9011 --- /dev/null +++ b/source/designs/detail/005/005303.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3f0163d96228ceb96806cab5c19bd01a0c267d18172c6d6bb99c815e0349eb +size 1400 diff --git a/source/designs/detail/005/005304.json b/source/designs/detail/005/005304.json new file mode 100644 index 0000000000000000000000000000000000000000..eae404f6d65ca80a700d4c9fae2f85f3066d0a11 --- /dev/null +++ b/source/designs/detail/005/005304.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2db1b94ee66a208540597f5262bd87acda05436818d5d8334795cfde969241 +size 1439 diff --git a/source/designs/detail/005/005305.json b/source/designs/detail/005/005305.json new file mode 100644 index 0000000000000000000000000000000000000000..058556270057f59791dc2b5aa022232f581db2ae --- /dev/null +++ b/source/designs/detail/005/005305.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5f5e2a3bb2d7b5dfd51b94c949de96613f0f2c495592663c981fe90e652464 +size 1328 diff --git a/source/designs/detail/005/005306.json b/source/designs/detail/005/005306.json new file mode 100644 index 0000000000000000000000000000000000000000..84faa6fbcd88078e29ace9e12947507e19fdc35c --- /dev/null +++ b/source/designs/detail/005/005306.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d6ecba6dbd52733b6988dd6f45779d0182a3b4c19cd62a98fad065aa6077030 +size 1362 diff --git a/source/designs/detail/005/005307.json b/source/designs/detail/005/005307.json new file mode 100644 index 0000000000000000000000000000000000000000..e575ccffd6f4b2e76f330125540ffdff21585794 --- /dev/null +++ b/source/designs/detail/005/005307.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d26104769b09ae1f18b87b6e6590280ae6634bd6004a67bd3ee661d3b4a65344 +size 2437 diff --git a/source/designs/detail/005/005308.json b/source/designs/detail/005/005308.json new file mode 100644 index 0000000000000000000000000000000000000000..664fa47d699a5fe2b8b8b45b18ebdba9b515d648 --- /dev/null +++ b/source/designs/detail/005/005308.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:869d983b03cec5c964cee79c1f75ec9752fc93b5defd22be9ef21b99c06805ac +size 1495 diff --git a/source/designs/detail/005/005309.json b/source/designs/detail/005/005309.json new file mode 100644 index 0000000000000000000000000000000000000000..cf595b3d63fb753dd587676bd4b08ef8a516c661 --- /dev/null +++ b/source/designs/detail/005/005309.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c860d9c179d25db635d9e34fbf16159926e1786cfbc4f46a56b0a6d6d2d8b7b5 +size 1515 diff --git a/source/designs/detail/005/005310.json b/source/designs/detail/005/005310.json new file mode 100644 index 0000000000000000000000000000000000000000..46ef519f62f2be2ef2ee102e3929032c613ba01c --- /dev/null +++ b/source/designs/detail/005/005310.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7b96804e1a18a4f0ec0d690aead4d84aa9d2dde03186cad1558652022021a5c +size 1340 diff --git a/source/designs/detail/005/005311.json b/source/designs/detail/005/005311.json new file mode 100644 index 0000000000000000000000000000000000000000..089f79e78c01e717076d076d2e90529f7a0b64c1 --- /dev/null +++ b/source/designs/detail/005/005311.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a79daa11b4a2453ff94d8f2e07c5ea98721f3bb906a237e87e6623675e8b15c8 +size 1345 diff --git a/source/designs/detail/005/005312.json b/source/designs/detail/005/005312.json new file mode 100644 index 0000000000000000000000000000000000000000..6907ea6d66a52e630cb0d7a332712f07b3a36ab8 --- /dev/null +++ b/source/designs/detail/005/005312.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc17032ff653614f636d50690f7e968a50b9641a0fdec42b821756a7f9758176 +size 1946 diff --git a/source/designs/detail/005/005314.json b/source/designs/detail/005/005314.json new file mode 100644 index 0000000000000000000000000000000000000000..b8dadf7443650efb0da7b1eec34bd4c37d22b3cc --- /dev/null +++ b/source/designs/detail/005/005314.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf701d2fc15400c99fb04a198c88a1c0127f719ab86a23f44ecc26c7bea4b921 +size 1982 diff --git a/source/designs/detail/005/005315.json b/source/designs/detail/005/005315.json new file mode 100644 index 0000000000000000000000000000000000000000..96887d816e33688808e4547ac86d131fbc8a6dab --- /dev/null +++ b/source/designs/detail/005/005315.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1797307dd95b130b9d87b7487e6a0290592a883feecdee08e935b792f30d6803 +size 1738 diff --git a/source/designs/detail/005/005316.json b/source/designs/detail/005/005316.json new file mode 100644 index 0000000000000000000000000000000000000000..546677786487d2030a3d812b0d29349eae4a3619 --- /dev/null +++ b/source/designs/detail/005/005316.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c981c15d034de101844228ccb6336b51c24d10dda88c0f1a97141a1c36e69d0 +size 1336 diff --git a/source/designs/detail/005/005317.json b/source/designs/detail/005/005317.json new file mode 100644 index 0000000000000000000000000000000000000000..20ad608e2ef4cd9f39aa3874cb5a9d6d599bf798 --- /dev/null +++ b/source/designs/detail/005/005317.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f2dd93764a94a69b2a43d9b9c59be977db6bbf8795bfa76d00ffcd86970dde9 +size 1548 diff --git a/source/designs/detail/005/005318.json b/source/designs/detail/005/005318.json new file mode 100644 index 0000000000000000000000000000000000000000..fb703bf0b129a0e9e5feb658dcb55e8cee6339f0 --- /dev/null +++ b/source/designs/detail/005/005318.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ce30cf6b89aec66e86b5698dad22cd08d88bf0b020e35418ab55cf831b782c8 +size 1033 diff --git a/source/designs/detail/005/005319.json b/source/designs/detail/005/005319.json new file mode 100644 index 0000000000000000000000000000000000000000..b15b13e5d6b0556192ce6c3a9fb164d1ac3bdefc --- /dev/null +++ b/source/designs/detail/005/005319.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd3fa0a907ee2eb7cc7d9dbdd397780d69439da5b8c781634ae18b53b920093 +size 1536 diff --git a/source/designs/detail/005/005320.json b/source/designs/detail/005/005320.json new file mode 100644 index 0000000000000000000000000000000000000000..a0084ac40aebf8660910b77587c60e2d81ce0bdc --- /dev/null +++ b/source/designs/detail/005/005320.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a3e8c5ffbc5f0851cfc147cf80941ed7f054ece34e56184b52c9f435d08da47 +size 1520 diff --git a/source/designs/detail/005/005321.json b/source/designs/detail/005/005321.json new file mode 100644 index 0000000000000000000000000000000000000000..382e253c50111cbefaa57c1213bf6bcb18274ba3 --- /dev/null +++ b/source/designs/detail/005/005321.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9b58b0f38258ffe1cf8f9f8fb9c3fa5fc656c3fad2716a077e07b08277fb94 +size 1588 diff --git a/source/designs/detail/005/005322.json b/source/designs/detail/005/005322.json new file mode 100644 index 0000000000000000000000000000000000000000..9e2beb89898280d3ffcd0a6eb08977e05e62e953 --- /dev/null +++ b/source/designs/detail/005/005322.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d1f08a169684ebbca27e136ec2816ce310d919dbbb551dfd2fb6d80cac3dbb2 +size 1617 diff --git a/source/designs/detail/005/005323.json b/source/designs/detail/005/005323.json new file mode 100644 index 0000000000000000000000000000000000000000..74218a7b6d9266f4d66e67f1e9962842f324dc6b --- /dev/null +++ b/source/designs/detail/005/005323.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b41d1089a4f94f4ad42e22339c84e6a5a43ff1ea3ce857065637427e33339d +size 1617 diff --git a/source/designs/detail/005/005324.json b/source/designs/detail/005/005324.json new file mode 100644 index 0000000000000000000000000000000000000000..5b4100a19361a7c79b7f884825469374664ae518 --- /dev/null +++ b/source/designs/detail/005/005324.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4147db09b5727edd82e5db520f974fa5a7e6e1bdea9cc27c1edd01a54378da +size 1487 diff --git a/source/designs/detail/005/005325.json b/source/designs/detail/005/005325.json new file mode 100644 index 0000000000000000000000000000000000000000..9205bab8afaf5d8563e12af9972a74a4b91c5b3c --- /dev/null +++ b/source/designs/detail/005/005325.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4bb35c1775038b08dbc190407edd06c07931b259b9f88527bc11c26fc68cdc +size 3301 diff --git a/source/designs/detail/005/005326.json b/source/designs/detail/005/005326.json new file mode 100644 index 0000000000000000000000000000000000000000..c8bf1426aa8f5b07f5243c95ac5f081742ecc80e --- /dev/null +++ b/source/designs/detail/005/005326.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1ba38693381984706444e3842e9d86565978f391d6b6254724448d8e0e31cd +size 1205 diff --git a/source/designs/detail/005/005327.json b/source/designs/detail/005/005327.json new file mode 100644 index 0000000000000000000000000000000000000000..bfae882c8b9d09eeaeed2f3f64bfde6a3c2868fd --- /dev/null +++ b/source/designs/detail/005/005327.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c201a6c3b73e8f6aa9a2b85550ba832f0ca0284dbf5147094ef2bac21548496 +size 1055 diff --git a/source/designs/detail/005/005328.json b/source/designs/detail/005/005328.json new file mode 100644 index 0000000000000000000000000000000000000000..4093251ef3bcefe79c54cd16a72669d1562b9457 --- /dev/null +++ b/source/designs/detail/005/005328.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c305c75eaeafada3a9980b4508e79165927c28351f87200b302729a0aa0c9146 +size 1478 diff --git a/source/designs/detail/005/005329.json b/source/designs/detail/005/005329.json new file mode 100644 index 0000000000000000000000000000000000000000..76d05a1745a562cdae7dca7c2b6bf4af84ac6c32 --- /dev/null +++ b/source/designs/detail/005/005329.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18732e89aea0cdb80fa52f9e42aba1f7beddcebdb22c8b6f1f7a091b499cb16 +size 1345 diff --git a/source/designs/detail/005/005330.json b/source/designs/detail/005/005330.json new file mode 100644 index 0000000000000000000000000000000000000000..910a73ff3aecb3de520edd80393a0dec2775c73b --- /dev/null +++ b/source/designs/detail/005/005330.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f5504299505325901019ac5a6e542538a3170ce378853dea53aa5181f3cb2d +size 1295 diff --git a/source/designs/detail/005/005331.json b/source/designs/detail/005/005331.json new file mode 100644 index 0000000000000000000000000000000000000000..73970e23366a322e2e3cfcf4fd3137190b521b75 --- /dev/null +++ b/source/designs/detail/005/005331.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:147d785abadb0da55d10c3ba3002dfe10a19365290c7855dc242b6e31cfb5d88 +size 1314 diff --git a/source/designs/detail/005/005332.json b/source/designs/detail/005/005332.json new file mode 100644 index 0000000000000000000000000000000000000000..62fcfa381f83ba12d40061ba31fa0d374c443e97 --- /dev/null +++ b/source/designs/detail/005/005332.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f63080149b082edccea3b6fcaf46c5475922df8b4cfdc063b2d48d4c1b50f6 +size 1521 diff --git a/source/designs/detail/005/005333.json b/source/designs/detail/005/005333.json new file mode 100644 index 0000000000000000000000000000000000000000..55ef5e42abf2bb8a4b31d2f54922c0bb56c72cee --- /dev/null +++ b/source/designs/detail/005/005333.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6648502d149f138388464d5339a2110101f1c1c29820a00d1f5bf8f50a92e5a2 +size 2081 diff --git a/source/designs/detail/005/005334.json b/source/designs/detail/005/005334.json new file mode 100644 index 0000000000000000000000000000000000000000..ed8e2260e30255ca1cbb2e8d02c5fcf406e817f7 --- /dev/null +++ b/source/designs/detail/005/005334.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45836d3fc46e7138df381e666b7008a8999b1e70224938e7ec0013915fa6463e +size 1644 diff --git a/source/designs/detail/005/005335.json b/source/designs/detail/005/005335.json new file mode 100644 index 0000000000000000000000000000000000000000..656efa7074106756f4033c48677aa5df6a7f147f --- /dev/null +++ b/source/designs/detail/005/005335.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963a642d3309e616d91190668d2549a4240c02a57bd6b313c7279df55b888867 +size 1512 diff --git a/source/designs/detail/005/005336.json b/source/designs/detail/005/005336.json new file mode 100644 index 0000000000000000000000000000000000000000..1debfb4961423820a40d497d53d9c0368d460b65 --- /dev/null +++ b/source/designs/detail/005/005336.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876aedf64257b2cc43d722b239a090b721a590396ccfa42f1656b143f21275d7 +size 1409 diff --git a/source/designs/detail/005/005337.json b/source/designs/detail/005/005337.json new file mode 100644 index 0000000000000000000000000000000000000000..b4e5b610d1017e36253aa45f74d79b8d36963ece --- /dev/null +++ b/source/designs/detail/005/005337.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20202722daf32968b9c5f36b90683eee315bb8a89632b2a14c1fe4419e09ac49 +size 2208 diff --git a/source/designs/detail/005/005338.json b/source/designs/detail/005/005338.json new file mode 100644 index 0000000000000000000000000000000000000000..8ba22d7b1f7cfe59c2cf7a42ca620ef55795b97b --- /dev/null +++ b/source/designs/detail/005/005338.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78fca730fee6745ac16f6e0ec177df8ea7f4f1b37ec0d36d0a5cc3fc071a3a07 +size 1357 diff --git a/source/designs/detail/005/005339.json b/source/designs/detail/005/005339.json new file mode 100644 index 0000000000000000000000000000000000000000..dcd8011be4cadebfbe0264d81603edc145cb5f0e --- /dev/null +++ b/source/designs/detail/005/005339.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebfa169bd19f96487a8d517c49369b8cfceb7133061b7d11f199f4899b861325 +size 2115 diff --git a/source/designs/detail/005/005340.json b/source/designs/detail/005/005340.json new file mode 100644 index 0000000000000000000000000000000000000000..23f7bf8beb415d8ab62ed19ff249502d7d673f1b --- /dev/null +++ b/source/designs/detail/005/005340.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0786f9fce14e2332b5e9a19928ad9c59b2ab52fa33788cae0fd313473509cde4 +size 2156 diff --git a/source/designs/detail/005/005341.json b/source/designs/detail/005/005341.json new file mode 100644 index 0000000000000000000000000000000000000000..28ffb7d5429545149990c2253b38557da89e1a1b --- /dev/null +++ b/source/designs/detail/005/005341.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e7f76c2ac74feedeadc2dc890b022c81f97b82910385cf2a8e4691051f853a +size 2171 diff --git a/source/designs/detail/005/005342.json b/source/designs/detail/005/005342.json new file mode 100644 index 0000000000000000000000000000000000000000..26af732ce02289e845f43a96658c270f0dffb1f4 --- /dev/null +++ b/source/designs/detail/005/005342.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be541d1a37ea334676a45bded267fb038013ca0c11459a11e9de42ebb840a4be +size 1855 diff --git a/source/designs/detail/005/005343.json b/source/designs/detail/005/005343.json new file mode 100644 index 0000000000000000000000000000000000000000..170f9266de60dcd3c8e4e10d436abe3261b60a0e --- /dev/null +++ b/source/designs/detail/005/005343.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b8de8c6d7cd12f819b774acd08942234cf26b499985d4298b0095a4b369df6 +size 1549 diff --git a/source/designs/detail/005/005344.json b/source/designs/detail/005/005344.json new file mode 100644 index 0000000000000000000000000000000000000000..0e8204fca2cb92a15c6a631aa21a5ec6189d2b26 --- /dev/null +++ b/source/designs/detail/005/005344.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468370cdeff6b9ac4b8711d0790cbff3d5c5fbffbc584ffb792ea62462839104 +size 1004 diff --git a/source/designs/detail/005/005345.json b/source/designs/detail/005/005345.json new file mode 100644 index 0000000000000000000000000000000000000000..22367b9b8e3382e101acc27241d347a3c5601bce --- /dev/null +++ b/source/designs/detail/005/005345.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650527809cc63396c3a1cd939273a130b7624c2323d426cee2e97391708532f0 +size 1658 diff --git a/source/designs/detail/005/005346.json b/source/designs/detail/005/005346.json new file mode 100644 index 0000000000000000000000000000000000000000..e4cf4b2769eea942a5ccb488ef0ccc34527f75df --- /dev/null +++ b/source/designs/detail/005/005346.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5bf2f9191bf6d5f9dea67acface294c0c7b878965a8a1014f03020714e57294 +size 1518 diff --git a/source/designs/detail/005/005347.json b/source/designs/detail/005/005347.json new file mode 100644 index 0000000000000000000000000000000000000000..2b32ee0fecc45e72b307fe1ba3167baf9417e3cf --- /dev/null +++ b/source/designs/detail/005/005347.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebcadd45a637bdae89743376b3fb380264b42d09e59836bc932a79ef4491397 +size 1654 diff --git a/source/designs/detail/005/005348.json b/source/designs/detail/005/005348.json new file mode 100644 index 0000000000000000000000000000000000000000..18d07a032ac3e2120549fed7e5722054a4ef801a --- /dev/null +++ b/source/designs/detail/005/005348.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b37117ba4348288b20c9f005aa3c74ade8c11358d2b61ab0feb6f85135f22944 +size 1893 diff --git a/source/designs/detail/005/005349.json b/source/designs/detail/005/005349.json new file mode 100644 index 0000000000000000000000000000000000000000..b9f55cbe7cdec380f70c677405661e3af5551e36 --- /dev/null +++ b/source/designs/detail/005/005349.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3a0e8ef01b0403d79a5b31d0e3a809b6e9c129cf7377207f149e3f4e707265 +size 1168 diff --git a/source/designs/detail/005/005350.json b/source/designs/detail/005/005350.json new file mode 100644 index 0000000000000000000000000000000000000000..8a5023db12342c446fda8a98dfaf42e5664620c4 --- /dev/null +++ b/source/designs/detail/005/005350.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd429c16dba2841d2e0f933d09f6cafa6983e73cf3fb874b4bcf98d7e3612f0 +size 2583 diff --git a/source/designs/detail/005/005351.json b/source/designs/detail/005/005351.json new file mode 100644 index 0000000000000000000000000000000000000000..e561fb2478be0b5bc51403ba0283594df518c883 --- /dev/null +++ b/source/designs/detail/005/005351.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a18fff037d3b33ae3343048468cdd53cdb60f62990db61d111155dbfcfc1c5 +size 1694 diff --git a/source/designs/detail/005/005352.json b/source/designs/detail/005/005352.json new file mode 100644 index 0000000000000000000000000000000000000000..eddceebff8d94da8ef60dc1389845032093b6e8d --- /dev/null +++ b/source/designs/detail/005/005352.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c67fbb7d183fe1bc87c367cb2c6477c97824eb9a2c18350a7220c80f3c443d1a +size 1380 diff --git a/source/designs/detail/005/005353.json b/source/designs/detail/005/005353.json new file mode 100644 index 0000000000000000000000000000000000000000..a31b651aca93ff4451125d1eb45093d6d148b5bd --- /dev/null +++ b/source/designs/detail/005/005353.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e9320edbc9578ed9c26c2da2a9b0ff21a8278dee1fac313413ba9e44a9cbc2 +size 1305 diff --git a/source/designs/detail/005/005354.json b/source/designs/detail/005/005354.json new file mode 100644 index 0000000000000000000000000000000000000000..5243cc1a000ba4d24e331bb09182d1c6909c0329 --- /dev/null +++ b/source/designs/detail/005/005354.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced3fdc688fbf4a031de9addb5ad158dd797808ed0e3444b0087154055b94763 +size 1507 diff --git a/source/designs/detail/005/005355.json b/source/designs/detail/005/005355.json new file mode 100644 index 0000000000000000000000000000000000000000..13f5191efe267266b39c9d016649b6a7ed8dabd0 --- /dev/null +++ b/source/designs/detail/005/005355.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658f80b86c08c14a0ce697e64f22c105d43652ea2b5787c6a94e25333de684f1 +size 1256 diff --git a/source/designs/detail/005/005356.json b/source/designs/detail/005/005356.json new file mode 100644 index 0000000000000000000000000000000000000000..5fc7ccc3a8087587c00e06b04075e55b238ceed2 --- /dev/null +++ b/source/designs/detail/005/005356.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41064b32fd67c228f30e0da3659703d1a420a4e6f534966e9ac137e958be041a +size 1189 diff --git a/source/designs/detail/005/005357.json b/source/designs/detail/005/005357.json new file mode 100644 index 0000000000000000000000000000000000000000..3bcc04a9e4f305711787321d7b97e364f6001b6a --- /dev/null +++ b/source/designs/detail/005/005357.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:896e4cb87d55597706ac5cba9964a3077dfa1428a3ce1ca5fe0b8233457545ee +size 1310 diff --git a/source/designs/detail/005/005358.json b/source/designs/detail/005/005358.json new file mode 100644 index 0000000000000000000000000000000000000000..ae9a4fa7ba5229a4a29cac49fa97582153d79739 --- /dev/null +++ b/source/designs/detail/005/005358.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b4872aa41a7ba6ec9a7f73f6dd4e3e53ccb427b3bd43b483a268c3fabd8eb8 +size 1239 diff --git a/source/designs/detail/005/005359.json b/source/designs/detail/005/005359.json new file mode 100644 index 0000000000000000000000000000000000000000..1c93570aa11d751c5bad9841e4d82638ae337d3b --- /dev/null +++ b/source/designs/detail/005/005359.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4449fb5b5acf18b3b8c341a7787f77a4624f8a9ab798058a8d9f12cbdd03da5 +size 1315 diff --git a/source/designs/detail/005/005360.json b/source/designs/detail/005/005360.json new file mode 100644 index 0000000000000000000000000000000000000000..7c8d9993363feeb32abd68a345dbad511a409933 --- /dev/null +++ b/source/designs/detail/005/005360.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4bcc95545d3bde54fe9657aa5db0cc5dcdf05e1b910d3fcabf1ed7a380087c +size 2053 diff --git a/source/designs/detail/005/005361.json b/source/designs/detail/005/005361.json new file mode 100644 index 0000000000000000000000000000000000000000..245a15cd57bbcf461e9b8172f86e779967aa697a --- /dev/null +++ b/source/designs/detail/005/005361.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57c0cee2acb0e0bb5776788682f4006de16333dafedfa7665f5b35edcfe6a42 +size 2059 diff --git a/source/designs/detail/005/005362.json b/source/designs/detail/005/005362.json new file mode 100644 index 0000000000000000000000000000000000000000..123b49ea7d17a883eae879e6da289c52c6c8ece2 --- /dev/null +++ b/source/designs/detail/005/005362.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b0201fb6e12184d4111e69ad83401bd8a819f815504ffce0fb40723b7ac3f92 +size 2072 diff --git a/source/designs/detail/005/005363.json b/source/designs/detail/005/005363.json new file mode 100644 index 0000000000000000000000000000000000000000..75deeb23ab4a267f8b53127f16fa3acfff2a0d2d --- /dev/null +++ b/source/designs/detail/005/005363.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6acb61909c011ea50806c995f02d2beb1c4ba0d308bd358686c6cebb34d99cc1 +size 2077 diff --git a/source/designs/detail/005/005364.json b/source/designs/detail/005/005364.json new file mode 100644 index 0000000000000000000000000000000000000000..ba537f0765038c7c9dacc6b15a279f6c98ba6aea --- /dev/null +++ b/source/designs/detail/005/005364.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:178933bd597c79cc588a3845bff1934dc635f06da08d0a8f60bdfe41832406e7 +size 1399 diff --git a/source/designs/detail/005/005365.json b/source/designs/detail/005/005365.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9fa38865fbb7d8fc322192ff28ba6cc3a10711 --- /dev/null +++ b/source/designs/detail/005/005365.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b522852af0125fb602f6701076f2c22cd14f95894893e19dfb1558fccca359d7 +size 1881 diff --git a/source/designs/detail/005/005366.json b/source/designs/detail/005/005366.json new file mode 100644 index 0000000000000000000000000000000000000000..f93741441fce267c1d0cfab9297dff5b9b1c0e1c --- /dev/null +++ b/source/designs/detail/005/005366.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f02e575042aa3a3cb860339c77fefed896c5e1b544d5310d70a646804e83ce +size 2849 diff --git a/source/designs/detail/005/005367.json b/source/designs/detail/005/005367.json new file mode 100644 index 0000000000000000000000000000000000000000..89b310e50114b9f91453b719701bbdf92adcf356 --- /dev/null +++ b/source/designs/detail/005/005367.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b3f74d7d06860caa24e0b5f2d68d58d479701f1725ac84985cecfb330e719f +size 1220 diff --git a/source/designs/detail/005/005368.json b/source/designs/detail/005/005368.json new file mode 100644 index 0000000000000000000000000000000000000000..b752844b66513f2ed5b2045dd210ef8b670d9dba --- /dev/null +++ b/source/designs/detail/005/005368.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4901fb3d264611979ee5c6f9589b99662808002daa5b26288fcf820d789d04c4 +size 1898 diff --git a/source/designs/detail/005/005369.json b/source/designs/detail/005/005369.json new file mode 100644 index 0000000000000000000000000000000000000000..521bb9b55d271ece548621ba16771463ab723fdc --- /dev/null +++ b/source/designs/detail/005/005369.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7007aef711fc3ca812ac07a94a6219c488a7e1022419c6920ac7d555b7b324da +size 1596 diff --git a/source/designs/detail/005/005370.json b/source/designs/detail/005/005370.json new file mode 100644 index 0000000000000000000000000000000000000000..35eb7d4223d89f4f7fa6c573d08a226e1dcb1288 --- /dev/null +++ b/source/designs/detail/005/005370.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1e76b935ec996a6e8d5a00949591fc3afd67d10672c79dfbff3fdbc9e8023a4 +size 1463 diff --git a/source/designs/detail/005/005371.json b/source/designs/detail/005/005371.json new file mode 100644 index 0000000000000000000000000000000000000000..a3c7eda35f7b1bd4ba3faab7884aa82acb9cadd7 --- /dev/null +++ b/source/designs/detail/005/005371.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f561539e92f4b465bb0bf4b57f9525eb2daa9f03ffad66b6a3eee8bade52424 +size 1316 diff --git a/source/designs/detail/005/005372.json b/source/designs/detail/005/005372.json new file mode 100644 index 0000000000000000000000000000000000000000..709ef832b80c4c3fe06e698c9b5c67a5f20ed3d8 --- /dev/null +++ b/source/designs/detail/005/005372.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430d3999f5834dd1c08c578895a0f8b2a9eeed13ba11c02c3bef247753b9cb73 +size 2431 diff --git a/source/designs/detail/005/005373.json b/source/designs/detail/005/005373.json new file mode 100644 index 0000000000000000000000000000000000000000..57e5a3f1175d58ad8297e9ec6b6cfe9a03a35b25 --- /dev/null +++ b/source/designs/detail/005/005373.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f092162bd9baebc503a0a311336a99632075759aebc80e3e412ccdce942ae7 +size 1738 diff --git a/source/designs/detail/005/005374.json b/source/designs/detail/005/005374.json new file mode 100644 index 0000000000000000000000000000000000000000..94f8f2f89532f6c349aff2fd637abb847320cdcf --- /dev/null +++ b/source/designs/detail/005/005374.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9681cfeeac44e40513a63d082cd60683dc38711d91d4052915bc987445a96305 +size 1589 diff --git a/source/designs/detail/005/005375.json b/source/designs/detail/005/005375.json new file mode 100644 index 0000000000000000000000000000000000000000..0a4fe1e9dcff0a2dc39cab9f5effd4a0b45aedbe --- /dev/null +++ b/source/designs/detail/005/005375.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fca7f0f403a2f8f06c881ca348330970827bccd200a091f9e3a3026453ed74f2 +size 1120 diff --git a/source/designs/detail/005/005376.json b/source/designs/detail/005/005376.json new file mode 100644 index 0000000000000000000000000000000000000000..0ce2e446509b34245792c4f05af4f80a8ea51df6 --- /dev/null +++ b/source/designs/detail/005/005376.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0424323dba824396e27fd02d8a6f636e83323e9215618790369a705bdbc97edd +size 1403 diff --git a/source/designs/detail/005/005377.json b/source/designs/detail/005/005377.json new file mode 100644 index 0000000000000000000000000000000000000000..6e66489a94b9e76d23d6d0068c0d16b5b8f09c4c --- /dev/null +++ b/source/designs/detail/005/005377.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601fd83988ff115fb952d31687e6e72f1a9aa909b8eea0aa16989537b81e30c6 +size 1315 diff --git a/source/designs/detail/005/005378.json b/source/designs/detail/005/005378.json new file mode 100644 index 0000000000000000000000000000000000000000..7c9a7a063a3547d46f34f9e2a90fad02cc59c655 --- /dev/null +++ b/source/designs/detail/005/005378.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b9cd3d81c3e0a272c36637d895292134fd9d00cb637f960a45c0aaa01466f7 +size 1301 diff --git a/source/designs/detail/005/005379.json b/source/designs/detail/005/005379.json new file mode 100644 index 0000000000000000000000000000000000000000..11380d3840f09cc9bb95e91ce69c5217955d492c --- /dev/null +++ b/source/designs/detail/005/005379.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb1dd97790d0fa01d715a6b6e2c653ddbd9af91cdcb14451686a0213dcb536e +size 1788 diff --git a/source/designs/detail/005/005380.json b/source/designs/detail/005/005380.json new file mode 100644 index 0000000000000000000000000000000000000000..3dfaa4389cca36bcb79c7f6443ca4fe7715dbe37 --- /dev/null +++ b/source/designs/detail/005/005380.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30e05904801bdb5afb2d8094f77c22b886723a8249d5ae914d614474bbc5bdf1 +size 1280 diff --git a/source/designs/detail/005/005381.json b/source/designs/detail/005/005381.json new file mode 100644 index 0000000000000000000000000000000000000000..ecf8fa072999f3c53c050e6d10c964096af898b9 --- /dev/null +++ b/source/designs/detail/005/005381.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50483b03d529ca4984aff0710e154c6d4f4306972ab9fe0e1193fd3d0a7d789f +size 1146 diff --git a/source/designs/detail/005/005382.json b/source/designs/detail/005/005382.json new file mode 100644 index 0000000000000000000000000000000000000000..ce8302b01d7300a7121af5f72821ed8f517046a4 --- /dev/null +++ b/source/designs/detail/005/005382.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb63447a021787c35f3edc6caf0ce49030ef31d645f2816d25e8049b38d1f69 +size 1723 diff --git a/source/designs/detail/005/005383.json b/source/designs/detail/005/005383.json new file mode 100644 index 0000000000000000000000000000000000000000..138a67b10bbe644942638956b1ba81e0d3f352f4 --- /dev/null +++ b/source/designs/detail/005/005383.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21213b8668aa36a4f74263dacfae6009a798a28a7a28bbd143419717b268870 +size 1574 diff --git a/source/designs/detail/005/005384.json b/source/designs/detail/005/005384.json new file mode 100644 index 0000000000000000000000000000000000000000..5fefd375b16efa780e6c98b9bec4fc8e21c2abf0 --- /dev/null +++ b/source/designs/detail/005/005384.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fae7ed3c81d1ed7a4bffebb2f1ec5c9e453f7d633c897dfe32bd5fa7cc899a4 +size 1109 diff --git a/source/designs/detail/005/005385.json b/source/designs/detail/005/005385.json new file mode 100644 index 0000000000000000000000000000000000000000..df015d8998ebe06ab51b2f99ddc1d6eb8bdd3a45 --- /dev/null +++ b/source/designs/detail/005/005385.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091ea127135d265aa440910e9466b3320dac4ce12643e8e2dd6b9ac28ab67d25 +size 1194 diff --git a/source/designs/detail/005/005386.json b/source/designs/detail/005/005386.json new file mode 100644 index 0000000000000000000000000000000000000000..4eff14f5c6d784c9d1c05ee711efbb9ee8ccb1b4 --- /dev/null +++ b/source/designs/detail/005/005386.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c5e1513ec72dfea75f2eea2e1b273ecd8363a063d4089409c2218e876b0180 +size 1085 diff --git a/source/designs/detail/005/005387.json b/source/designs/detail/005/005387.json new file mode 100644 index 0000000000000000000000000000000000000000..8768f7311b8b8bfcb24a4cec187d68889e56ecd8 --- /dev/null +++ b/source/designs/detail/005/005387.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6653479e901ee4aedd21b163a7e86457c0d395a969720b941a4eb30378ce382d +size 1199 diff --git a/source/designs/detail/005/005388.json b/source/designs/detail/005/005388.json new file mode 100644 index 0000000000000000000000000000000000000000..22816477b7769b81c8382d7bfaf76d772dc85bfb --- /dev/null +++ b/source/designs/detail/005/005388.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83bb2e59e765bed77c1cadb695dd37c46de0fc2249ea55ecb0a6089838baa838 +size 1156 diff --git a/source/designs/detail/005/005389.json b/source/designs/detail/005/005389.json new file mode 100644 index 0000000000000000000000000000000000000000..f3e064470608c0f91dde343b23697402febe5b4c --- /dev/null +++ b/source/designs/detail/005/005389.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e1dcb3c6c741d8d78d304a4319efa30f7f7c73e4d8ef6a156acbea06f3cfb8 +size 1825 diff --git a/source/designs/detail/005/005390.json b/source/designs/detail/005/005390.json new file mode 100644 index 0000000000000000000000000000000000000000..992b4c00835763d34e96dc7e172d84723f4c25f4 --- /dev/null +++ b/source/designs/detail/005/005390.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e78d36acbb6bae4efe3bf2fe3cfbeb7d689aff04003983ebff99473458df2bc6 +size 1375 diff --git a/source/designs/detail/005/005391.json b/source/designs/detail/005/005391.json new file mode 100644 index 0000000000000000000000000000000000000000..1d76fe194baba3af28d19de5ae353efc27916f22 --- /dev/null +++ b/source/designs/detail/005/005391.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786a7b88bc153a63d65ad43aabeebf320d566fb03c2cb312d447d5ec8e7c45a5 +size 1491 diff --git a/source/designs/detail/005/005392.json b/source/designs/detail/005/005392.json new file mode 100644 index 0000000000000000000000000000000000000000..78d44af55aed268b7b626e00866bcb87520adbb3 --- /dev/null +++ b/source/designs/detail/005/005392.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3f2991b8a17b28120d1a668eed5df472193f4b8fe2968ce779609fc91af79f +size 1416 diff --git a/source/designs/detail/005/005393.json b/source/designs/detail/005/005393.json new file mode 100644 index 0000000000000000000000000000000000000000..741183bc7b3d809439693422cd3693acf0e45bf5 --- /dev/null +++ b/source/designs/detail/005/005393.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29dfd7a305ac0b0122873dedcaff1767a61358f23d9e45675a6a2e0968a6524 +size 1799 diff --git a/source/designs/detail/005/005394.json b/source/designs/detail/005/005394.json new file mode 100644 index 0000000000000000000000000000000000000000..a8221e0e07157115196438ae796e2c28d5f55eba --- /dev/null +++ b/source/designs/detail/005/005394.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbfa9d9ba4b997b0d3a52ab820ebaa7d01d72d24b8675a63d71ac052774e541 +size 2051 diff --git a/source/designs/detail/005/005395.json b/source/designs/detail/005/005395.json new file mode 100644 index 0000000000000000000000000000000000000000..c9ac0ce38182c593e3093d103abfd68e290d9ce2 --- /dev/null +++ b/source/designs/detail/005/005395.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb4779b21fd08cc582302ed825353697c5dd1a944fb0c19504cbfc620caf457 +size 1353 diff --git a/source/designs/detail/005/005396.json b/source/designs/detail/005/005396.json new file mode 100644 index 0000000000000000000000000000000000000000..231206c17170eaed3566d718fbe699a502bb47cd --- /dev/null +++ b/source/designs/detail/005/005396.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee6390cc5df02a39cd2aa822f21f5e50000d71cfdd47880a7ea7df7bb83e684 +size 1643 diff --git a/source/designs/detail/005/005397.json b/source/designs/detail/005/005397.json new file mode 100644 index 0000000000000000000000000000000000000000..2eb1500e85583310fa620ff3d1c2236ae4c6cfe7 --- /dev/null +++ b/source/designs/detail/005/005397.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa258b392e367d2f650fcdaf30959e31601597031e567d4a1a04c2f23a51e01d +size 1352 diff --git a/source/designs/detail/005/005398.json b/source/designs/detail/005/005398.json new file mode 100644 index 0000000000000000000000000000000000000000..0283052623712663a6545fe6ed765fa3176266ff --- /dev/null +++ b/source/designs/detail/005/005398.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68401a69e3338bf1d2ec43961f84c350c155980ffc2f60a0fedb670c8a1743de +size 1089 diff --git a/source/designs/detail/005/005399.json b/source/designs/detail/005/005399.json new file mode 100644 index 0000000000000000000000000000000000000000..ea055ea0ce03a744872ab66a5c0b14fb91b84e8c --- /dev/null +++ b/source/designs/detail/005/005399.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ebd32f65ea23a05da2331fed7aa049dedbe563488e88eef47872fb102ba472 +size 1402 diff --git a/source/designs/detail/005/005400.json b/source/designs/detail/005/005400.json new file mode 100644 index 0000000000000000000000000000000000000000..d55283ffea52617ef0fd2640aefb95ec5181157f --- /dev/null +++ b/source/designs/detail/005/005400.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f15f2fbd82917ff11a0d6317789e771e7e0dccf3ba158dd8adb9e55baeeff72 +size 1309 diff --git a/source/designs/detail/005/005401.json b/source/designs/detail/005/005401.json new file mode 100644 index 0000000000000000000000000000000000000000..d1068c24788f92a2afd47a819fffa3822e7cd950 --- /dev/null +++ b/source/designs/detail/005/005401.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:884cf9484d3daa9c62aa28058f9fb612fbbd1d2906a68dbc72742557f2ba132e +size 1967 diff --git a/source/designs/detail/005/005402.json b/source/designs/detail/005/005402.json new file mode 100644 index 0000000000000000000000000000000000000000..e83d1d3266d423a96c7629f5a53f4d4741482bf6 --- /dev/null +++ b/source/designs/detail/005/005402.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e7af70e03676c1a2be1e5a8031d403889e71658cc934cbc40282d5de22fbcb +size 1376 diff --git a/source/designs/detail/005/005403.json b/source/designs/detail/005/005403.json new file mode 100644 index 0000000000000000000000000000000000000000..93f7a52b8233e5bc4c722f21d50f196b6db6e835 --- /dev/null +++ b/source/designs/detail/005/005403.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b815b37b09fe2ba2db424f0bf393ad0279a18e58d39f1974228eb145edb9a0 +size 1420 diff --git a/source/designs/detail/005/005404.json b/source/designs/detail/005/005404.json new file mode 100644 index 0000000000000000000000000000000000000000..5cc9cb6b14592b1accfa23fe146fb549a3b0cf90 --- /dev/null +++ b/source/designs/detail/005/005404.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:529c7637d8fb4918c7a8c4f1e0e77b4731563476aed874bc2ec056a5a01ce214 +size 1416 diff --git a/source/designs/detail/005/005405.json b/source/designs/detail/005/005405.json new file mode 100644 index 0000000000000000000000000000000000000000..4ec605bc81c5048079791f3f96728e7794b4d27a --- /dev/null +++ b/source/designs/detail/005/005405.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd24e8021d2a81606a25a06b9d6da15a89252d09c8f6402ebdcb01e19a6e560b +size 1905 diff --git a/source/designs/detail/005/005406.json b/source/designs/detail/005/005406.json new file mode 100644 index 0000000000000000000000000000000000000000..eb69db46f52ff95d7d01b7c733e668fac9a2c42d --- /dev/null +++ b/source/designs/detail/005/005406.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe555757251cf9b66ca6c3baf38b35a9c8504db940c938cb5206fbaedf96716d +size 1192 diff --git a/source/designs/detail/005/005407.json b/source/designs/detail/005/005407.json new file mode 100644 index 0000000000000000000000000000000000000000..fa4c3b7084f58f981e968d5d50620e2c0dacda26 --- /dev/null +++ b/source/designs/detail/005/005407.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a519bcacbf2cb1b44fb9fbaa8955acb30245723553f0c029dd1765f28e4f39 +size 1462 diff --git a/source/designs/detail/005/005408.json b/source/designs/detail/005/005408.json new file mode 100644 index 0000000000000000000000000000000000000000..381b39802c6b641fb7686da30ef466e26a466eda --- /dev/null +++ b/source/designs/detail/005/005408.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d77ca806fd01a28aa8d82375ce24f486be998aabdf30eee724e6f7945c39a8 +size 1349 diff --git a/source/designs/detail/005/005409.json b/source/designs/detail/005/005409.json new file mode 100644 index 0000000000000000000000000000000000000000..4522033f372a3af99bafbb905d20ef263bdb8e8a --- /dev/null +++ b/source/designs/detail/005/005409.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6c95e9e75835624a3b9b7a64afd1a1d9d79604e06f4b6a861f6b535b016ec5 +size 1088 diff --git a/source/designs/detail/005/005410.json b/source/designs/detail/005/005410.json new file mode 100644 index 0000000000000000000000000000000000000000..2ffcca63d2ce9fc7275062bae2fa5ab21c3a865d --- /dev/null +++ b/source/designs/detail/005/005410.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4029654263c10b26188092d2c606813d5d649e57190f5ff26a5eeb77df7d30b +size 1518 diff --git a/source/designs/detail/005/005411.json b/source/designs/detail/005/005411.json new file mode 100644 index 0000000000000000000000000000000000000000..82856804041a75586e8b161f3bae3c88edfe1b85 --- /dev/null +++ b/source/designs/detail/005/005411.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b36452f32bb2e8f37a71c099f9f92a42dff54bb87e4d081ee1fd50dcb2f603f9 +size 1726 diff --git a/source/designs/detail/005/005412.json b/source/designs/detail/005/005412.json new file mode 100644 index 0000000000000000000000000000000000000000..aa2f875efdd62316e4b1cc57d57c254ee397357b --- /dev/null +++ b/source/designs/detail/005/005412.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd714bce8b5e52548066636b8a7231f4aaaca8af0a85190a7f0399588f8215fe +size 3509 diff --git a/source/designs/detail/005/005413.json b/source/designs/detail/005/005413.json new file mode 100644 index 0000000000000000000000000000000000000000..116b4230e15ec9aa0208ad8c733b666cd0f21ee1 --- /dev/null +++ b/source/designs/detail/005/005413.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49b78d91fcfa3b19562159b0e074644f5e4d727fb8f63bb69333eb29e4117ac +size 2771 diff --git a/source/designs/detail/005/005414.json b/source/designs/detail/005/005414.json new file mode 100644 index 0000000000000000000000000000000000000000..9696f93e9093679f41be7946bcc795eed0605fc7 --- /dev/null +++ b/source/designs/detail/005/005414.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754258098514dfa35e3770a6c43857d6c92438d3e3e43c949d742be9c7a70dc6 +size 2477 diff --git a/source/designs/detail/005/005415.json b/source/designs/detail/005/005415.json new file mode 100644 index 0000000000000000000000000000000000000000..02cdd216348b6f0a3b9bc628ae944ddb8d4b2aab --- /dev/null +++ b/source/designs/detail/005/005415.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c033ef78ae97f57be1d1decad3310ca5c7195238de3bcd00bae3c38937922f +size 1191 diff --git a/source/designs/detail/005/005416.json b/source/designs/detail/005/005416.json new file mode 100644 index 0000000000000000000000000000000000000000..f82000d19999e5330c218097509f97db257d3ba1 --- /dev/null +++ b/source/designs/detail/005/005416.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9f331a90c1227b4fb1bb4637bfcf11789a879c21d3a472bd6a18a838a4419ba +size 1397 diff --git a/source/designs/detail/005/005417.json b/source/designs/detail/005/005417.json new file mode 100644 index 0000000000000000000000000000000000000000..78ed3616e5e81314b7accd9444d482d0f8866090 --- /dev/null +++ b/source/designs/detail/005/005417.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1fab738c6e3899d1895c7a4103d742d1d27a867c78427bdbed101d9578ce1cd +size 2517 diff --git a/source/designs/detail/005/005418.json b/source/designs/detail/005/005418.json new file mode 100644 index 0000000000000000000000000000000000000000..a69b76d5229af43a2344ad832a7ff31d78758388 --- /dev/null +++ b/source/designs/detail/005/005418.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718be7de9cc7acac9556208d9a11ed07c6a2ba27c0a8f8300e3878714683bd69 +size 1245 diff --git a/source/designs/detail/005/005419.json b/source/designs/detail/005/005419.json new file mode 100644 index 0000000000000000000000000000000000000000..916bb620bf0a00f8a1bfb511040943f161ee0901 --- /dev/null +++ b/source/designs/detail/005/005419.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab5e60e32ed43195f4ea30a1d4f709bcce9edb690656774fca1baaa68d029e3 +size 1123 diff --git a/source/designs/detail/005/005420.json b/source/designs/detail/005/005420.json new file mode 100644 index 0000000000000000000000000000000000000000..edba4c8c3806aa7cb7e6e70b263453263a984992 --- /dev/null +++ b/source/designs/detail/005/005420.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea2cae3c31133e02883401d6c9d08d11c9adb3c8f85890159cbb5aff06b9115 +size 2101 diff --git a/source/designs/detail/005/005421.json b/source/designs/detail/005/005421.json new file mode 100644 index 0000000000000000000000000000000000000000..7551d40c5f7a7169bd9abde2b2b95ce60a698c92 --- /dev/null +++ b/source/designs/detail/005/005421.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ff054a08daefd1a57bb0cd1bdccd8f74d3af29e9e06aa8c63bccfd42c27581 +size 1269 diff --git a/source/designs/detail/005/005422.json b/source/designs/detail/005/005422.json new file mode 100644 index 0000000000000000000000000000000000000000..65f24201e13d64e74b895cc84bc9cf39e5cfe5ac --- /dev/null +++ b/source/designs/detail/005/005422.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb3a517aef3175bab01bc3c714842bc3a875817aaa8a98f69052cac547c5332 +size 1929 diff --git a/source/designs/detail/005/005423.json b/source/designs/detail/005/005423.json new file mode 100644 index 0000000000000000000000000000000000000000..207b81df61d5b776b30387a78833b13a76d34032 --- /dev/null +++ b/source/designs/detail/005/005423.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a659f46fce565d8c54cc2c884ffb2efbc62fe267fb384901a73e87ef3eed83 +size 3158 diff --git a/source/designs/detail/005/005424.json b/source/designs/detail/005/005424.json new file mode 100644 index 0000000000000000000000000000000000000000..d1c28f0df6f9b3618a9158618728536ead8c9c01 --- /dev/null +++ b/source/designs/detail/005/005424.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5782ae6fc4d7ee077a2b80c8c529bafd06710443c84ef4bed36b25d4169f9fed +size 1440 diff --git a/source/designs/detail/005/005425.json b/source/designs/detail/005/005425.json new file mode 100644 index 0000000000000000000000000000000000000000..7896864d237004a2de2d3e0a42d632673f6b245c --- /dev/null +++ b/source/designs/detail/005/005425.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6774c76b37d11c331d4b7c7b65b68f2ac29b4f4ea2280862d921848b8f5340ae +size 1790 diff --git a/source/designs/detail/005/005426.json b/source/designs/detail/005/005426.json new file mode 100644 index 0000000000000000000000000000000000000000..caaf9ae6acdc8dd1f0a6d7f022617834167fd0d4 --- /dev/null +++ b/source/designs/detail/005/005426.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e5e61f259ac36e5525e2378f500e47a7df4902069033651d22fe9696748e8c +size 1217 diff --git a/source/designs/detail/005/005427.json b/source/designs/detail/005/005427.json new file mode 100644 index 0000000000000000000000000000000000000000..8f9964f881c2718b6bf99fd0af1b9feb1b3873f2 --- /dev/null +++ b/source/designs/detail/005/005427.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58c5fcab7f68fd63a4be5070f4872e3f5a529bdc9958ecaf841f47cd9415b41 +size 1243 diff --git a/source/designs/detail/005/005428.json b/source/designs/detail/005/005428.json new file mode 100644 index 0000000000000000000000000000000000000000..0592bce009dcafcc6809d33e6ed8159d3ede4cec --- /dev/null +++ b/source/designs/detail/005/005428.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb011f211a7c67b6e405e05bd332710bdff63e8cb67138dd5513601eb3892e9e +size 1204 diff --git a/source/designs/detail/005/005429.json b/source/designs/detail/005/005429.json new file mode 100644 index 0000000000000000000000000000000000000000..33a83e310f5cd84d4689e9696cb6e54f717dde22 --- /dev/null +++ b/source/designs/detail/005/005429.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8476d4d64b03dd0b9c3de30864fbb33fc23105a2630097cdebb3aa06a32d8a +size 1168 diff --git a/source/designs/detail/005/005430.json b/source/designs/detail/005/005430.json new file mode 100644 index 0000000000000000000000000000000000000000..96e1165cfd4e68d512816dc5bd88456d698ddb16 --- /dev/null +++ b/source/designs/detail/005/005430.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add889d548fde7e89b60f2c9a86922d91c513a47001043ab6f4cdb3b99126dd6 +size 1318 diff --git a/source/designs/detail/005/005431.json b/source/designs/detail/005/005431.json new file mode 100644 index 0000000000000000000000000000000000000000..d1c5347b6e8720b39f3584291718cfdc7fdf95f6 --- /dev/null +++ b/source/designs/detail/005/005431.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2024e1dd50a953ed971f462cdc9917fd5cd466f714bbc33d1e1793eb06f2e2d2 +size 1825 diff --git a/source/designs/detail/005/005432.json b/source/designs/detail/005/005432.json new file mode 100644 index 0000000000000000000000000000000000000000..573c086687d955c2b76b3e41cb045e51da4ea4f4 --- /dev/null +++ b/source/designs/detail/005/005432.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a162a7c2a0ca3376561609511d1a15856b2efa933e7a6f665efb1847e736ca1c +size 1824 diff --git a/source/designs/detail/005/005433.json b/source/designs/detail/005/005433.json new file mode 100644 index 0000000000000000000000000000000000000000..e0f4febc983d4600bfe2c96fdc33cd8426db84e9 --- /dev/null +++ b/source/designs/detail/005/005433.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c421f6f41c235187708749c1eaa319e435314a594d6e9162574a6d646f5ca0 +size 1219 diff --git a/source/designs/detail/005/005434.json b/source/designs/detail/005/005434.json new file mode 100644 index 0000000000000000000000000000000000000000..5c405ad24d568816d969befbf4ee9a0f6e4ee1c5 --- /dev/null +++ b/source/designs/detail/005/005434.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3758c4b25e46813f838dd6545cc232e129876bfe223164205fa2c2912f7a4442 +size 1716 diff --git a/source/designs/detail/005/005435.json b/source/designs/detail/005/005435.json new file mode 100644 index 0000000000000000000000000000000000000000..104a65c426ab0148d04d92ccd8caa3343848a151 --- /dev/null +++ b/source/designs/detail/005/005435.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe17399745d2bed523ed52463d792139ca61fe01b586bc509c9cb2dcc95b847 +size 1492 diff --git a/source/designs/detail/005/005436.json b/source/designs/detail/005/005436.json new file mode 100644 index 0000000000000000000000000000000000000000..26e5b615c5356c01753e335dc8f3c8f8fd9c676e --- /dev/null +++ b/source/designs/detail/005/005436.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5d12da345ee998bcdf01acb8c8f48dd71a419235225c0bb4a59da31f5efcd2f +size 1202 diff --git a/source/designs/detail/005/005437.json b/source/designs/detail/005/005437.json new file mode 100644 index 0000000000000000000000000000000000000000..4b6f5dfd3354937048ab014d92a1a324eb833dc8 --- /dev/null +++ b/source/designs/detail/005/005437.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8021b8f4f671f4ed4cc33341a508ecb9d12389acf00d7fafef88bffc9218f99 +size 2020 diff --git a/source/designs/detail/005/005438.json b/source/designs/detail/005/005438.json new file mode 100644 index 0000000000000000000000000000000000000000..9dedf704a38edc9e49cd69cf6295c9ceae950861 --- /dev/null +++ b/source/designs/detail/005/005438.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8afdb6b19c4e35c8e066719e36e1fd684301473646af87dcc5524270d906e80 +size 2013 diff --git a/source/designs/detail/005/005439.json b/source/designs/detail/005/005439.json new file mode 100644 index 0000000000000000000000000000000000000000..92b896ab57ee881edc9c2db0937e51e3a3200e48 --- /dev/null +++ b/source/designs/detail/005/005439.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b800b264cdc8d34ea7bef0aedda8738ea32706b28effbf66dd3bb4e423cce8c +size 1335 diff --git a/source/designs/detail/005/005440.json b/source/designs/detail/005/005440.json new file mode 100644 index 0000000000000000000000000000000000000000..65a97e5362ff4562c74b9e269d1a3baebffc50ee --- /dev/null +++ b/source/designs/detail/005/005440.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff92d6072fcdda26740474958e329add67140a18050c0161eab50ed46f4741c1 +size 1603 diff --git a/source/designs/detail/005/005442.json b/source/designs/detail/005/005442.json new file mode 100644 index 0000000000000000000000000000000000000000..b625f91966f785f4f69471fc88d6454324e7aa72 --- /dev/null +++ b/source/designs/detail/005/005442.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe92277e1de3f6af6f84a41aac39bc49c93c670bcd3abf28934cbad0b063627 +size 1419 diff --git a/source/designs/detail/005/005443.json b/source/designs/detail/005/005443.json new file mode 100644 index 0000000000000000000000000000000000000000..4f68f53ac35ff3d6673a73d43fbb23b012eee331 --- /dev/null +++ b/source/designs/detail/005/005443.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6139eaac7c149624eb5ff5af973f45541e006e8f1e032332c3fb13f833df61e8 +size 1394 diff --git a/source/designs/detail/005/005444.json b/source/designs/detail/005/005444.json new file mode 100644 index 0000000000000000000000000000000000000000..796bef46d5ff0cafe9b14ac2c59684b95883b721 --- /dev/null +++ b/source/designs/detail/005/005444.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1656f112ed66ffbc06e3cc6563dd56f007b1b6ed4c927ce67f34d8c65d454510 +size 1475 diff --git a/source/designs/detail/005/005445.json b/source/designs/detail/005/005445.json new file mode 100644 index 0000000000000000000000000000000000000000..6fbbd5801ccc70b7b01467bfef90fc9047e19550 --- /dev/null +++ b/source/designs/detail/005/005445.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4576438e4301eec2a2833eaf1e9e94542ad3d6077ccf40932cb39aecd4a96fa0 +size 1512 diff --git a/source/designs/detail/005/005446.json b/source/designs/detail/005/005446.json new file mode 100644 index 0000000000000000000000000000000000000000..1dee8d590b231166d930568d02bf6213a25b9f17 --- /dev/null +++ b/source/designs/detail/005/005446.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd38b839a3d6ee83e0d41d91403bf4519c13ff7dc5c13eca3db22b06192b9049 +size 1239 diff --git a/source/designs/detail/005/005447.json b/source/designs/detail/005/005447.json new file mode 100644 index 0000000000000000000000000000000000000000..4f3c2c5d2d17b0afd35d6130f063f37077f27b8a --- /dev/null +++ b/source/designs/detail/005/005447.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb5bbcd23bcbc3ef00939a6921cab2e18ea4b109bee93a883ecd6154f24dec0 +size 1386 diff --git a/source/designs/detail/005/005448.json b/source/designs/detail/005/005448.json new file mode 100644 index 0000000000000000000000000000000000000000..98a3b96307762d27de800eeefb4ed96024ed1589 --- /dev/null +++ b/source/designs/detail/005/005448.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fec5d27ae2f2954a781ff4797034c4bd19b25eee4f7cec62660060c7bb80043a +size 1628 diff --git a/source/designs/detail/005/005449.json b/source/designs/detail/005/005449.json new file mode 100644 index 0000000000000000000000000000000000000000..c2cd59957e951bf033acf23cecf22ff54a1c8613 --- /dev/null +++ b/source/designs/detail/005/005449.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43ff5486114813113cd644a0420ed15c0306229a3c0014dd024d38e4ff5b2b1b +size 1878 diff --git a/source/designs/detail/005/005450.json b/source/designs/detail/005/005450.json new file mode 100644 index 0000000000000000000000000000000000000000..8528504ab3dd63285ceea08ae2eb2d7077c49fc9 --- /dev/null +++ b/source/designs/detail/005/005450.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237ee7616cc5f05bf8335fde8a4045b6a73d112e714630769175d02c1d33be2f +size 1507 diff --git a/source/designs/detail/005/005451.json b/source/designs/detail/005/005451.json new file mode 100644 index 0000000000000000000000000000000000000000..7ac3f8f7f9664c7d72dfa6d352775cc81486ef82 --- /dev/null +++ b/source/designs/detail/005/005451.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f8afc018c77ca3dc52a6e14c304635e4dc796ef958e7130df73e3d0bd509a62 +size 1309 diff --git a/source/designs/detail/005/005452.json b/source/designs/detail/005/005452.json new file mode 100644 index 0000000000000000000000000000000000000000..4408bd1ab5eb4d00c6bdfcfb90d7e089af282b05 --- /dev/null +++ b/source/designs/detail/005/005452.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2904ad1ddc54bbdc349baf194908440f8162cc056d9563ea4d53fce18d336525 +size 1933 diff --git a/source/designs/detail/005/005453.json b/source/designs/detail/005/005453.json new file mode 100644 index 0000000000000000000000000000000000000000..539bbb98b96afeaac1756648742416faee0edce2 --- /dev/null +++ b/source/designs/detail/005/005453.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfeaa5ff01af3666507ded7a518d149f7cdcd5f7c9bf74a456bb01fa99e9b124 +size 1271 diff --git a/source/designs/detail/005/005454.json b/source/designs/detail/005/005454.json new file mode 100644 index 0000000000000000000000000000000000000000..b74867c4f0572161baa13b3e9676c32a1ce75680 --- /dev/null +++ b/source/designs/detail/005/005454.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbe7903381efa76629679077ae0a6ad78f535f623318b91f5d16f935c7c40e7 +size 1290 diff --git a/source/designs/detail/005/005455.json b/source/designs/detail/005/005455.json new file mode 100644 index 0000000000000000000000000000000000000000..03dc52d0622a76e7fe67030cc8690ebca839e2c5 --- /dev/null +++ b/source/designs/detail/005/005455.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5e191f09cf07a493685f50592f8d7ca8bf3c44bd816e8e5c1b1cebac70eb19f +size 1510 diff --git a/source/designs/detail/005/005456.json b/source/designs/detail/005/005456.json new file mode 100644 index 0000000000000000000000000000000000000000..7c794d052db700cf6f2901b57ecde2a63e05c40c --- /dev/null +++ b/source/designs/detail/005/005456.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3b802783375e1b21bb6103729b6e4e9e862397c5b5029df4f78122ed1cd7d0 +size 1482 diff --git a/source/designs/detail/005/005457.json b/source/designs/detail/005/005457.json new file mode 100644 index 0000000000000000000000000000000000000000..8b0531dd79a323bf290c7cd50d747a2ae2507818 --- /dev/null +++ b/source/designs/detail/005/005457.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9fb882f27d156e6df8dbfb81a753c736c8b78464d382e8f5e21ce8ffd2d5e3e +size 1289 diff --git a/source/designs/detail/005/005458.json b/source/designs/detail/005/005458.json new file mode 100644 index 0000000000000000000000000000000000000000..afc8e7b94736834098e48ccb34af99b58da00e43 --- /dev/null +++ b/source/designs/detail/005/005458.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855e4763de0240e617f8b5a2f58a9a4960f4b708deeff7e43cb6d5f991dac6e0 +size 1347 diff --git a/source/designs/detail/005/005459.json b/source/designs/detail/005/005459.json new file mode 100644 index 0000000000000000000000000000000000000000..b0d48e9c2015cd41cd25ccbfd7e49d583999b81b --- /dev/null +++ b/source/designs/detail/005/005459.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e25f3f1b31b754d03e757d9d8fe5f30108bea02e12c1c3836c8dff47eff726 +size 1489 diff --git a/source/designs/detail/005/005460.json b/source/designs/detail/005/005460.json new file mode 100644 index 0000000000000000000000000000000000000000..bd74dcb82240da5140e8b4c1c95e6c721788ed91 --- /dev/null +++ b/source/designs/detail/005/005460.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c600b0be8c3221ab430feb1e290ffd0dacc876d31ed794c0c6f1a69cbe1c3f3d +size 1591 diff --git a/source/designs/detail/005/005461.json b/source/designs/detail/005/005461.json new file mode 100644 index 0000000000000000000000000000000000000000..2b1d243d5122bde2cabd9dc294a64bd2217a80ff --- /dev/null +++ b/source/designs/detail/005/005461.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d003303c2612ba3a5b7acb82de782159d2552362dfb68c64c7b4c0ae4a669fd4 +size 1549 diff --git a/source/designs/detail/005/005462.json b/source/designs/detail/005/005462.json new file mode 100644 index 0000000000000000000000000000000000000000..dd4d22c97cd44ef3e5e12ae9e7e4bce592c04d7a --- /dev/null +++ b/source/designs/detail/005/005462.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5edadbd20a83e670af0a2807bc3a691cb4e363c606726c8f920273c95311b5f0 +size 908 diff --git a/source/designs/detail/005/005463.json b/source/designs/detail/005/005463.json new file mode 100644 index 0000000000000000000000000000000000000000..a15f0df94da2072d153868430b9a9b581ef1e7c0 --- /dev/null +++ b/source/designs/detail/005/005463.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f497dfd3d6c6bd4e569ccfcaf8b0e5a868ddd46ecfaea5150760a41b64d8e8a +size 1706 diff --git a/source/designs/detail/005/005464.json b/source/designs/detail/005/005464.json new file mode 100644 index 0000000000000000000000000000000000000000..19c169bf105ddd2475fd4f5d75c01df8a7f76c70 --- /dev/null +++ b/source/designs/detail/005/005464.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:864cc7d986d6ca8ab6c3155599a7e2d29de3157174a04eed9fa791874dc6568f +size 2470 diff --git a/source/designs/detail/005/005465.json b/source/designs/detail/005/005465.json new file mode 100644 index 0000000000000000000000000000000000000000..44c9b958ed131231e530a8c3a6f38159257877f7 --- /dev/null +++ b/source/designs/detail/005/005465.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d776722700f2180465b35b48737d820a4c02a9c189b5a97f1c12f4ed6ad243a +size 1915 diff --git a/source/designs/detail/005/005466.json b/source/designs/detail/005/005466.json new file mode 100644 index 0000000000000000000000000000000000000000..cfad7c2c3d2ebb4e4b46a3a43ac7ec0aea451902 --- /dev/null +++ b/source/designs/detail/005/005466.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deb35ed14df78db629252e741c4da14920234f73511814692198c45090073dee +size 2515 diff --git a/source/designs/detail/005/005467.json b/source/designs/detail/005/005467.json new file mode 100644 index 0000000000000000000000000000000000000000..6a43ea15120b80daa2488e80d66d4c35a5fa2dd9 --- /dev/null +++ b/source/designs/detail/005/005467.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b135cc94b20ab7c1a7d730eb130564d2142f344fd68e2be433614604f3f5cdf7 +size 1246 diff --git a/source/designs/detail/005/005468.json b/source/designs/detail/005/005468.json new file mode 100644 index 0000000000000000000000000000000000000000..ac8243af3c98f459d27f43961a6774f70d6c3428 --- /dev/null +++ b/source/designs/detail/005/005468.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec37c6bf765f8e4dbbbd4b55c67aca7f780489e3da3c3d81264bd9ffceb9bfc0 +size 1910 diff --git a/source/designs/detail/005/005469.json b/source/designs/detail/005/005469.json new file mode 100644 index 0000000000000000000000000000000000000000..c7945eff8e70bc516d92647ba767f4ebbe9cd875 --- /dev/null +++ b/source/designs/detail/005/005469.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:706854eef137972c402fdda6e758155195d8315dd9452da1bda18a744c4d11ba +size 1208 diff --git a/source/designs/detail/005/005470.json b/source/designs/detail/005/005470.json new file mode 100644 index 0000000000000000000000000000000000000000..10bb1cb2997d58f27b2587d70f225a3dfd7208d5 --- /dev/null +++ b/source/designs/detail/005/005470.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20815bd8eeecd9dd0436e3a2d92a52d3d662bd36976570aecb1e6e7ecd05d18 +size 1225 diff --git a/source/designs/detail/005/005471.json b/source/designs/detail/005/005471.json new file mode 100644 index 0000000000000000000000000000000000000000..456eef94b0343755ea4f8efd775724430c05d3ae --- /dev/null +++ b/source/designs/detail/005/005471.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa93dd32e5ffdacdf07c012ff746b175397a9eb8ba32ea62024d9ae6ec469d33 +size 1104 diff --git a/source/designs/detail/005/005472.json b/source/designs/detail/005/005472.json new file mode 100644 index 0000000000000000000000000000000000000000..60079cea146b8e77f3e0dba6828adaf4827fe6d4 --- /dev/null +++ b/source/designs/detail/005/005472.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208606c603765251ac2e700e92b47ee1b43179515e2167092a2fd82961f3f17d +size 1593 diff --git a/source/designs/detail/005/005473.json b/source/designs/detail/005/005473.json new file mode 100644 index 0000000000000000000000000000000000000000..623dcd7c071bc14f2fe79ef71c5d59cec7ada6a2 --- /dev/null +++ b/source/designs/detail/005/005473.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97afa00d4adceffc792d6ba882dd6afcd3c3f2294003d89de6175dffd4a8842c +size 1890 diff --git a/source/designs/detail/005/005474.json b/source/designs/detail/005/005474.json new file mode 100644 index 0000000000000000000000000000000000000000..a885e2f87227e7d72133a5277936d0b670db14fc --- /dev/null +++ b/source/designs/detail/005/005474.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7fed9bbf385f9b6bb7a1c8c54e7b56956fd80e465546bc8117850375117b94 +size 1888 diff --git a/source/designs/detail/005/005475.json b/source/designs/detail/005/005475.json new file mode 100644 index 0000000000000000000000000000000000000000..11eb28057a31b95d5f29efc7af9eee29b39a7615 --- /dev/null +++ b/source/designs/detail/005/005475.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92458cd24bb1c65e3ae090b0da891c7ba92c59a4ed93cd169e7852f7d4c1348 +size 1288 diff --git a/source/designs/detail/005/005476.json b/source/designs/detail/005/005476.json new file mode 100644 index 0000000000000000000000000000000000000000..649bfaad6665032358b34544a71aaa84caa4457f --- /dev/null +++ b/source/designs/detail/005/005476.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:156ebdb60c08493661df8e25df39c224c3089f078d8c16a72a1b7df00dbdf34d +size 1355 diff --git a/source/designs/detail/005/005477.json b/source/designs/detail/005/005477.json new file mode 100644 index 0000000000000000000000000000000000000000..c11d602a15a21649b6e45833d72aa8f5816f44ba --- /dev/null +++ b/source/designs/detail/005/005477.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8761cb5c795d452e093c98f403105d551b7437504c10dc4c9ef710322453ad5 +size 1476 diff --git a/source/designs/detail/005/005478.json b/source/designs/detail/005/005478.json new file mode 100644 index 0000000000000000000000000000000000000000..cfc1b630eca9cc40f589738db6f49831d2116f66 --- /dev/null +++ b/source/designs/detail/005/005478.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd46dd37435344a46257ebcd5d0b4cd2e5d8c41d59d4f01bf6333ec6995f7393 +size 1140 diff --git a/source/designs/detail/005/005479.json b/source/designs/detail/005/005479.json new file mode 100644 index 0000000000000000000000000000000000000000..6803accad72f10cf26143d629c0739a9d39d8cb1 --- /dev/null +++ b/source/designs/detail/005/005479.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82213ce43bd37175c7e1488f10ced20129acfc6a4e8d61b014c4ff7a24e6cda7 +size 1718 diff --git a/source/designs/detail/005/005480.json b/source/designs/detail/005/005480.json new file mode 100644 index 0000000000000000000000000000000000000000..653a8e40e1a8d4283b953783edb4146125ca7cee --- /dev/null +++ b/source/designs/detail/005/005480.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bbfa78f4338bfc48328f606c32e95b63a5f9c9b46d5ac1ac23a7a5727c139fc +size 2233 diff --git a/source/designs/detail/005481.json b/source/designs/detail/005/005481.json similarity index 100% rename from source/designs/detail/005481.json rename to source/designs/detail/005/005481.json diff --git a/source/designs/detail/005/005482.json b/source/designs/detail/005/005482.json new file mode 100644 index 0000000000000000000000000000000000000000..3d8c4e4ebef161dfd3590dbd3e1baf7ad17d95c6 --- /dev/null +++ b/source/designs/detail/005/005482.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bd57c91c6a9caddec9333c14ba7ead280298bde2ae2bb357baf890f909ce55 +size 1391 diff --git a/source/designs/detail/005/005483.json b/source/designs/detail/005/005483.json new file mode 100644 index 0000000000000000000000000000000000000000..7e7a6921de43e93da0dfe648a72e0aae811ada01 --- /dev/null +++ b/source/designs/detail/005/005483.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a434a83ae01f212e2b829aa9082714635296be0a184693ef624a8e6bb2a9a23a +size 1297 diff --git a/source/designs/detail/005/005484.json b/source/designs/detail/005/005484.json new file mode 100644 index 0000000000000000000000000000000000000000..cec8b348bb27418c014a4c8d5cd9dc23b8e501ec --- /dev/null +++ b/source/designs/detail/005/005484.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d26aa741a37e720b66881d8b7b9796ac5fadab93c2dd7ddcbdac661daee09517 +size 1005 diff --git a/source/designs/detail/005/005485.json b/source/designs/detail/005/005485.json new file mode 100644 index 0000000000000000000000000000000000000000..1b1b421b84c873aad858781943f1ceb311d81c4e --- /dev/null +++ b/source/designs/detail/005/005485.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04882a9e212760579c1e5ddd4862118f6d27ca4195383ec3ba00c947dc1f2138 +size 1547 diff --git a/source/designs/detail/005/005486.json b/source/designs/detail/005/005486.json new file mode 100644 index 0000000000000000000000000000000000000000..8ee275343024e01c64d8d6ce9d342b707204df46 --- /dev/null +++ b/source/designs/detail/005/005486.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f32ee3d303d11117d8c51a5fa5f9e19d79a7a19e58a647e653e64d8dcfc0b535 +size 1458 diff --git a/source/designs/detail/005/005487.json b/source/designs/detail/005/005487.json new file mode 100644 index 0000000000000000000000000000000000000000..20b4954f8ab9282d3bf8f416b7e4645908c50f0a --- /dev/null +++ b/source/designs/detail/005/005487.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e13efa132d6517dab13a118150963b47320816ede109e5d64c02eec38d353159 +size 1696 diff --git a/source/designs/detail/005/005488.json b/source/designs/detail/005/005488.json new file mode 100644 index 0000000000000000000000000000000000000000..f3a4cf002c244f63ab1b0fbb90d4dab2bb606947 --- /dev/null +++ b/source/designs/detail/005/005488.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a7aa5d09e155233bf7e289c52b45c60472e32d615547008c6caeddf5cf4b91 +size 1611 diff --git a/source/designs/detail/005/005489.json b/source/designs/detail/005/005489.json new file mode 100644 index 0000000000000000000000000000000000000000..c89b7f8d4e5777d0159d2f74635ac6c374492b3a --- /dev/null +++ b/source/designs/detail/005/005489.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c021e666bf5101b9b70efd591a98497ca5181fb9edb228977825d71db76242 +size 1044 diff --git a/source/designs/detail/005/005490.json b/source/designs/detail/005/005490.json new file mode 100644 index 0000000000000000000000000000000000000000..63dafdb24303457fab1e771ca2c0b7397ded4831 --- /dev/null +++ b/source/designs/detail/005/005490.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43404019bab3a8ec7ab77e7d8c6c649b2835fe0ba0a8247fe54c9581847d8b01 +size 1335 diff --git a/source/designs/detail/005/005491.json b/source/designs/detail/005/005491.json new file mode 100644 index 0000000000000000000000000000000000000000..eafd6a66f0d1ccdf6f9010c6c0915873efeadd2b --- /dev/null +++ b/source/designs/detail/005/005491.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6739e6dd98316a91eaad3bac634aefa9ed5d7860cd9e10c0cc5ab08b1c39d29c +size 1960 diff --git a/source/designs/detail/005/005492.json b/source/designs/detail/005/005492.json new file mode 100644 index 0000000000000000000000000000000000000000..75e3a10cfbf74ce4ddb1921003ca6937cc6bb1ef --- /dev/null +++ b/source/designs/detail/005/005492.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01a925d9b3e863dd9ba8cbe5e396b5e98c5cf359ff31137b593c5961414400d +size 1501 diff --git a/source/designs/detail/005/005493.json b/source/designs/detail/005/005493.json new file mode 100644 index 0000000000000000000000000000000000000000..a592ec773c9a53b7e8f11fc5cf62d4b9d49ff969 --- /dev/null +++ b/source/designs/detail/005/005493.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734061be5e9ee2ddfadd610c110ad69da12f2b854e376d8a1f8006c3643eb133 +size 1756 diff --git a/source/designs/detail/005/005494.json b/source/designs/detail/005/005494.json new file mode 100644 index 0000000000000000000000000000000000000000..0ce321ed4df9906f9336903fd4357fddc75ee28d --- /dev/null +++ b/source/designs/detail/005/005494.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:575f344c287533e802c740d5e32f754e31e93aa2af722fd2aad68178952cc88d +size 1086 diff --git a/source/designs/detail/005/005495.json b/source/designs/detail/005/005495.json new file mode 100644 index 0000000000000000000000000000000000000000..75d267552257ada57f217bcecdc3d4cd13bded37 --- /dev/null +++ b/source/designs/detail/005/005495.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faf954c9cb7e0e08ee7d1fe625dd561f72b662ce4d0ead0d831d178f9e7a2597 +size 1336 diff --git a/source/designs/detail/005/005496.json b/source/designs/detail/005/005496.json new file mode 100644 index 0000000000000000000000000000000000000000..1d63691d9994ec768fd1916d2418865c83b3eff9 --- /dev/null +++ b/source/designs/detail/005/005496.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cefeb934ddae2f2ce8f340685ddb79dec353e0a33079e6327d97e4335c55548f +size 1467 diff --git a/source/designs/detail/005/005497.json b/source/designs/detail/005/005497.json new file mode 100644 index 0000000000000000000000000000000000000000..1fdae5aef242774b506468af107052019df57ba9 --- /dev/null +++ b/source/designs/detail/005/005497.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d2dd23835dc0185c1a202ac70227fb35ed320f2acd05d0d2ad0a8ff2c3990b +size 1661 diff --git a/source/designs/detail/005/005498.json b/source/designs/detail/005/005498.json new file mode 100644 index 0000000000000000000000000000000000000000..4572fbe5148e41c00dd29063e917d194a491728e --- /dev/null +++ b/source/designs/detail/005/005498.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d626bed2d3b9e0bdfb09461df28afafd88e5633ac9a4fc43f91acf7c59396aa4 +size 2942 diff --git a/source/designs/detail/005/005499.json b/source/designs/detail/005/005499.json new file mode 100644 index 0000000000000000000000000000000000000000..29d41d6f1f632e5ca119d22f7a3fea2a86391d6b --- /dev/null +++ b/source/designs/detail/005/005499.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd4df14993befa1618d797a298df27876a29ca237c68923bd2fab2d2f1c969f2 +size 1284 diff --git a/source/designs/detail/005/005500.json b/source/designs/detail/005/005500.json new file mode 100644 index 0000000000000000000000000000000000000000..9228ae45baa0686c8d3f7cec497e2b8d458590b1 --- /dev/null +++ b/source/designs/detail/005/005500.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5daf1d3bfb5a4b6baa766a5ca841a510c2c1b156d699366617963d56b41db562 +size 1087 diff --git a/source/designs/detail/005/005501.json b/source/designs/detail/005/005501.json new file mode 100644 index 0000000000000000000000000000000000000000..93c6caa612cb6568df1c77c4cab6bb144e67c1c1 --- /dev/null +++ b/source/designs/detail/005/005501.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd8d01237fed937b40f66ef976d0019dbc622a5978d6cc64aef020ed8d0005ca +size 1269 diff --git a/source/designs/detail/005/005502.json b/source/designs/detail/005/005502.json new file mode 100644 index 0000000000000000000000000000000000000000..0040c6985a14c798fc8212018f01e24c375b28d2 --- /dev/null +++ b/source/designs/detail/005/005502.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eecb274e1c44f87eae54556b11d10f0b93a2655bf10e98f020b33e7f610de427 +size 1044 diff --git a/source/designs/detail/005/005503.json b/source/designs/detail/005/005503.json new file mode 100644 index 0000000000000000000000000000000000000000..3e9f657058a24670d5f5f3720bb276d7a0c031fe --- /dev/null +++ b/source/designs/detail/005/005503.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a1a97b85b50daa61f5fdf43924738a8840e77332ba18dc007c52a230cad836f +size 1057 diff --git a/source/designs/detail/005/005504.json b/source/designs/detail/005/005504.json new file mode 100644 index 0000000000000000000000000000000000000000..569fbf336ac7337512b405460b3976951e697d24 --- /dev/null +++ b/source/designs/detail/005/005504.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b71a492151550cfe15cd434c9b329d9d697566384ccbfaefddf78c745e08ccd +size 1606 diff --git a/source/designs/detail/005/005505.json b/source/designs/detail/005/005505.json new file mode 100644 index 0000000000000000000000000000000000000000..0cdf44f82914588e63fb60b2e10dd954190ac051 --- /dev/null +++ b/source/designs/detail/005/005505.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3f7ad0e6cda31cdbc430028a6e8a560ab79f62172ab90f4ab9e7a1bd623163 +size 1276 diff --git a/source/designs/detail/005/005506.json b/source/designs/detail/005/005506.json new file mode 100644 index 0000000000000000000000000000000000000000..6ea27989f5a0bad1d4bd65c92113301b822b40d1 --- /dev/null +++ b/source/designs/detail/005/005506.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc492352c2c7289b2f7f5916de2b3880b22e7758df7d76e19e544dbc67f736d4 +size 970 diff --git a/source/designs/detail/005/005507.json b/source/designs/detail/005/005507.json new file mode 100644 index 0000000000000000000000000000000000000000..3e7d6575465bab7e9a55afc4e2c8e7f6b5d0ec0b --- /dev/null +++ b/source/designs/detail/005/005507.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13615cf0b7c1471ee5e4361aa916c6e0fc6d60d65ed177f1197c1462d5dfd161 +size 1503 diff --git a/source/designs/detail/005/005508.json b/source/designs/detail/005/005508.json new file mode 100644 index 0000000000000000000000000000000000000000..dfc9971f92ca67271f4f99265d4b27759171597c --- /dev/null +++ b/source/designs/detail/005/005508.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc5322f0153551684e51ee00429bed43e2721fda3616f4e42172d296cb05c3e4 +size 1395 diff --git a/source/designs/detail/005/005509.json b/source/designs/detail/005/005509.json new file mode 100644 index 0000000000000000000000000000000000000000..89ce0e35c80d72fcf9bf56fb737ecd166199d7e7 --- /dev/null +++ b/source/designs/detail/005/005509.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bfa46d41290f6bdc94b9025d346ee669a03b8706c1c62612df6d6613b57ee2b +size 1281 diff --git a/source/designs/detail/005/005510.json b/source/designs/detail/005/005510.json new file mode 100644 index 0000000000000000000000000000000000000000..684b122f9deea219b8c4ab647c3d1066fe2fb54d --- /dev/null +++ b/source/designs/detail/005/005510.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03f7be909556163be0e5556dcf859bcd1f3e9bec52d94de23f0fb2039ba06d8 +size 1093 diff --git a/source/designs/detail/005/005511.json b/source/designs/detail/005/005511.json new file mode 100644 index 0000000000000000000000000000000000000000..690f2f6f5e2e1f233997b6f8358fec810e75bab7 --- /dev/null +++ b/source/designs/detail/005/005511.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8cce1ef3d9bcaf2cd70d3903cdfb8078cbebe6ce2f476b51336308594f08c38 +size 1495 diff --git a/source/designs/detail/005/005512.json b/source/designs/detail/005/005512.json new file mode 100644 index 0000000000000000000000000000000000000000..14e6d4e0e7fed0ade209185183821148da6c61a9 --- /dev/null +++ b/source/designs/detail/005/005512.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bd0ae419ef5816ae74ba28e996f10a7b09feb31bbc1c66185c11f888b233e61 +size 2035 diff --git a/source/designs/detail/005/005513.json b/source/designs/detail/005/005513.json new file mode 100644 index 0000000000000000000000000000000000000000..54b6584e5bf11311ebced3df7b3a7a831edf84ae --- /dev/null +++ b/source/designs/detail/005/005513.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2410153676f4c1f71b4c9f5f9a5307cad4b60ace6bd156055e57b2454b29bc89 +size 1569 diff --git a/source/designs/detail/005/005514.json b/source/designs/detail/005/005514.json new file mode 100644 index 0000000000000000000000000000000000000000..14921aa310022385776dfae9ff75ab7cc7187d8e --- /dev/null +++ b/source/designs/detail/005/005514.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47eee1ff1dc9c95b371bfbe0ff0c4c2d6c69514290c01613be1f7be6fb81db41 +size 1843 diff --git a/source/designs/detail/005/005515.json b/source/designs/detail/005/005515.json new file mode 100644 index 0000000000000000000000000000000000000000..a3f68079c11b41b216debdc06044c6cd48d79097 --- /dev/null +++ b/source/designs/detail/005/005515.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2313259e404e084f8658542183949d1b537b368267716f60625ee0f3eb683180 +size 1333 diff --git a/source/designs/detail/005/005516.json b/source/designs/detail/005/005516.json new file mode 100644 index 0000000000000000000000000000000000000000..f3cfaeb3c378e57e5ec5a87b4204de311d80e088 --- /dev/null +++ b/source/designs/detail/005/005516.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8446cf33c0f8f0644778be8cd6e994929dab2953f5808e4217f8b6675e6eee8f +size 1712 diff --git a/source/designs/detail/005/005517.json b/source/designs/detail/005/005517.json new file mode 100644 index 0000000000000000000000000000000000000000..fc34d2c9eba3bf2bf91937e1d516226f209f72c9 --- /dev/null +++ b/source/designs/detail/005/005517.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b66ef550b9e136d8283eed10ae2cc24288d86d66cd309681874ebe8b6029a350 +size 1302 diff --git a/source/designs/detail/005/005518.json b/source/designs/detail/005/005518.json new file mode 100644 index 0000000000000000000000000000000000000000..13ee5d6cb26d8fe9c9c83884dc6da7396e0ee30d --- /dev/null +++ b/source/designs/detail/005/005518.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358489b1a67cd60401f47fa5e1d98993f24a1955f650acdb31a1b93114d085c8 +size 1656 diff --git a/source/designs/detail/005/005519.json b/source/designs/detail/005/005519.json new file mode 100644 index 0000000000000000000000000000000000000000..9fae12a80c242d1bffe25dd8982d748774a44f36 --- /dev/null +++ b/source/designs/detail/005/005519.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e490260a9955cdf8021ad9ca937c7b00f092c788416b4050c05ecfe38a28ebaa +size 1282 diff --git a/source/designs/detail/005/005520.json b/source/designs/detail/005/005520.json new file mode 100644 index 0000000000000000000000000000000000000000..ef7b5a74447b782d0d513a0b95689897343b9332 --- /dev/null +++ b/source/designs/detail/005/005520.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e6900e76b5e4fdbd1d2287f24537ebec4f90b5b41c7363557ebff9eeeafa88 +size 1178 diff --git a/source/designs/detail/005/005521.json b/source/designs/detail/005/005521.json new file mode 100644 index 0000000000000000000000000000000000000000..c10fb3e7f4a20139b460dbe428f5a768de4821ce --- /dev/null +++ b/source/designs/detail/005/005521.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5489a3dc6892a61c1750274a6e472c24a78bb1ccf8543529855ea589f82044 +size 1328 diff --git a/source/designs/detail/005/005522.json b/source/designs/detail/005/005522.json new file mode 100644 index 0000000000000000000000000000000000000000..4d3e4c2325d230edf491dc7f14ee283806cc2210 --- /dev/null +++ b/source/designs/detail/005/005522.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4611d02b82aeb8bf29d0df4765f38cd33fd8d4ef897baf477acfc43c5766914 +size 1239 diff --git a/source/designs/detail/005/005523.json b/source/designs/detail/005/005523.json new file mode 100644 index 0000000000000000000000000000000000000000..b40eba6ec064e8879d782a38152ec898bdccc3f2 --- /dev/null +++ b/source/designs/detail/005/005523.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6766ba4420ab69007a80f313930248231f77cf9e76419fa00f974977694e8a5 +size 2249 diff --git a/source/designs/detail/005/005524.json b/source/designs/detail/005/005524.json new file mode 100644 index 0000000000000000000000000000000000000000..11c8962cc275c97d05be5813c322d18195c0d30d --- /dev/null +++ b/source/designs/detail/005/005524.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47b4bf1ab27dacb2008f6eebb3dc220f563d8c94d6c31638126006cf5015f25c +size 1341 diff --git a/source/designs/detail/005/005525.json b/source/designs/detail/005/005525.json new file mode 100644 index 0000000000000000000000000000000000000000..1f86e329b448915a0b10464335fe34f76c86b001 --- /dev/null +++ b/source/designs/detail/005/005525.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f4cceba940094f3979dfbf622092ec02ace7a265057cf3678e9567f619bbd4 +size 1078 diff --git a/source/designs/detail/005/005526.json b/source/designs/detail/005/005526.json new file mode 100644 index 0000000000000000000000000000000000000000..33cf91aae34d1ff471c607ae364556e36c5095cb --- /dev/null +++ b/source/designs/detail/005/005526.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703eab25413f8430ecccd2471598d4a032dc22f8327805d43b084b16b26af46c +size 935 diff --git a/source/designs/detail/005/005527.json b/source/designs/detail/005/005527.json new file mode 100644 index 0000000000000000000000000000000000000000..c255f3a425f6bfee0cc7b595e7b084b5f3854edb --- /dev/null +++ b/source/designs/detail/005/005527.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215012c5f47d01df6d28dad03bdcb7c8b032a77da0d28411388c1587d779b24f +size 1039 diff --git a/source/designs/detail/005/005528.json b/source/designs/detail/005/005528.json new file mode 100644 index 0000000000000000000000000000000000000000..8218215dafb15c2beef46323f6d0456208910687 --- /dev/null +++ b/source/designs/detail/005/005528.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd9fd31ec3cf59cfcad231a419628fca4a304311edd3c2f0c61d172d55be6931 +size 1058 diff --git a/source/designs/detail/005/005530.json b/source/designs/detail/005/005530.json new file mode 100644 index 0000000000000000000000000000000000000000..9a1f85adff7cb060fb9f1c2ab9c602c58b38f00a --- /dev/null +++ b/source/designs/detail/005/005530.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffcd13b41c80f2e2cacc31af311d062f5020c0a2aab01bfda8da3f173aa76a76 +size 1367 diff --git a/source/designs/detail/005/005531.json b/source/designs/detail/005/005531.json new file mode 100644 index 0000000000000000000000000000000000000000..040c1d0e5e90e4895c606fa4a943bdecb71295a6 --- /dev/null +++ b/source/designs/detail/005/005531.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69f6265825fda53dd059870920e83f222619bd65731845b639e0f60e643fe98 +size 1558 diff --git a/source/designs/detail/005/005532.json b/source/designs/detail/005/005532.json new file mode 100644 index 0000000000000000000000000000000000000000..b568436079bd4e9e351548a891e50d8611aa31ae --- /dev/null +++ b/source/designs/detail/005/005532.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:458ccfc6e159b622ce1bd3748d580a204b2cd4872f761ab57ed94d8862fbf27a +size 1471 diff --git a/source/designs/detail/005/005533.json b/source/designs/detail/005/005533.json new file mode 100644 index 0000000000000000000000000000000000000000..560a9cf3f56d492673a21ca923a13cfb2ecefbb7 --- /dev/null +++ b/source/designs/detail/005/005533.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e1d4e8db8dabf61bf83f0af392aa2fe5f7bea8d51173deb2385daedf913eaf +size 3603 diff --git a/source/designs/detail/005/005534.json b/source/designs/detail/005/005534.json new file mode 100644 index 0000000000000000000000000000000000000000..336447cc31b20a9ec46c9497083604c408e3569f --- /dev/null +++ b/source/designs/detail/005/005534.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d2b7669f268b585b8f300d028dcb414302a7c4d7e9d3074a138f0242c1b2ca +size 1449 diff --git a/source/designs/detail/005/005535.json b/source/designs/detail/005/005535.json new file mode 100644 index 0000000000000000000000000000000000000000..23afc5cb2174cd397e1aa492c8cafb50e021070c --- /dev/null +++ b/source/designs/detail/005/005535.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704f76dd64193cd39233268dc67844073b813d7b39998dd424c476c2a6759dbd +size 727 diff --git a/source/designs/detail/005/005536.json b/source/designs/detail/005/005536.json new file mode 100644 index 0000000000000000000000000000000000000000..14ce38a0896a79bee4a635fa1f110e2e71c88f08 --- /dev/null +++ b/source/designs/detail/005/005536.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffda366f828a92f52ca3b306e2ba4573938187a613a06629b313eb81666f6d3e +size 2032 diff --git a/source/designs/detail/005/005537.json b/source/designs/detail/005/005537.json new file mode 100644 index 0000000000000000000000000000000000000000..26e3873dcc080528fa09d301f5fe486c73868b98 --- /dev/null +++ b/source/designs/detail/005/005537.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2889e02182245e1157809575f43af4922985878c76ef4c10b9d281b0e0d7f51 +size 1320 diff --git a/source/designs/detail/005/005538.json b/source/designs/detail/005/005538.json new file mode 100644 index 0000000000000000000000000000000000000000..3479191349e272ee17afef87380cbd4c7432d1c9 --- /dev/null +++ b/source/designs/detail/005/005538.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d460901d55c326896606c8b8ce50ed1130df9425a9af4dd061f0bb09b094dd +size 1512 diff --git a/source/designs/detail/005/005539.json b/source/designs/detail/005/005539.json new file mode 100644 index 0000000000000000000000000000000000000000..32db7fafd7404a022301cd905ef69ea89fe23c68 --- /dev/null +++ b/source/designs/detail/005/005539.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e967a36dbacb7395e4dbbf1b58901813e1ec8c473522502015ac6955a4619d64 +size 1219 diff --git a/source/designs/detail/005/005540.json b/source/designs/detail/005/005540.json new file mode 100644 index 0000000000000000000000000000000000000000..fbdda49aa3435b93874c29677d606e5297c4b1e4 --- /dev/null +++ b/source/designs/detail/005/005540.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acee7e2b965373c3c51dd504b00364410cbaaec3b232c1a15015dabd01a3ce13 +size 2308 diff --git a/source/designs/detail/005/005541.json b/source/designs/detail/005/005541.json new file mode 100644 index 0000000000000000000000000000000000000000..f148b538f85ad60641435ddae15b99153a3fdf45 --- /dev/null +++ b/source/designs/detail/005/005541.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0e5695b515a25849e8c965d6dafd960cb161f03b2635465da4879be2e05a8c +size 1267 diff --git a/source/designs/detail/005/005542.json b/source/designs/detail/005/005542.json new file mode 100644 index 0000000000000000000000000000000000000000..8cae3bacb3a3e1de7ee4c082758beea8cff6e68f --- /dev/null +++ b/source/designs/detail/005/005542.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d2743c2857066b9369d90dd7a9f4d83f7ab0c3a15d8e9058f9ef4992380256 +size 1148 diff --git a/source/designs/detail/005/005543.json b/source/designs/detail/005/005543.json new file mode 100644 index 0000000000000000000000000000000000000000..7520d46f34c2592e79ba47f5fbdbeafe2aea8477 --- /dev/null +++ b/source/designs/detail/005/005543.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4834f379a88cf230dfc1fa9fd2cdf7c1134c10e7672fc2f17a3f3dd6ce9739b +size 1051 diff --git a/source/designs/detail/005/005544.json b/source/designs/detail/005/005544.json new file mode 100644 index 0000000000000000000000000000000000000000..3e239d3ffdaf96e05b68fb73487cc10e7953e96b --- /dev/null +++ b/source/designs/detail/005/005544.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5d122ec809a7422bf610d0b7fc5747999ee346b447f2b15c01542ef1da7da9 +size 1517 diff --git a/source/designs/detail/005/005545.json b/source/designs/detail/005/005545.json new file mode 100644 index 0000000000000000000000000000000000000000..7e4c528dc3bc46b3f176580854cddc2c35cbbebd --- /dev/null +++ b/source/designs/detail/005/005545.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c92e13575fb19ca88641735e16f35e05ab023562283d0116aee3040b3734675 +size 1640 diff --git a/source/designs/detail/005/005546.json b/source/designs/detail/005/005546.json new file mode 100644 index 0000000000000000000000000000000000000000..48d04c5bea47a67d231689a119ff58938e448f90 --- /dev/null +++ b/source/designs/detail/005/005546.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5bcf628c94dda26c642a267602e79ae45c86d65e3bb017e4947f57ba3fc1207 +size 1958 diff --git a/source/designs/detail/005/005547.json b/source/designs/detail/005/005547.json new file mode 100644 index 0000000000000000000000000000000000000000..3e5786946bce7b28984fb62e5b22bd85809c4b9a --- /dev/null +++ b/source/designs/detail/005/005547.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4284af4db870ed609d1ebddbdf839a1ce9b962c774560dc16668d4e5fdf52d +size 2149 diff --git a/source/designs/detail/005/005548.json b/source/designs/detail/005/005548.json new file mode 100644 index 0000000000000000000000000000000000000000..97e854d1172ea05b2a559656f0d264f8ae678649 --- /dev/null +++ b/source/designs/detail/005/005548.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb7d7ac55487dd008a8b80a34c15d9b4b2a4b7276fb8b8d0c96ad85981ede1ec +size 1441 diff --git a/source/designs/detail/005/005549.json b/source/designs/detail/005/005549.json new file mode 100644 index 0000000000000000000000000000000000000000..d659fc9baafee71858d3f1f2be20cd0eda5ef781 --- /dev/null +++ b/source/designs/detail/005/005549.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd82134869a151eec0e021216679921e9a83263ea47d9c67275cf4aa65b873d0 +size 1374 diff --git a/source/designs/detail/005/005550.json b/source/designs/detail/005/005550.json new file mode 100644 index 0000000000000000000000000000000000000000..51d83b11fd99efb061634f7c33a0720e6fc553ef --- /dev/null +++ b/source/designs/detail/005/005550.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0122d103e3e1026614b2f99bd46f4db2f7340de4ddebed156a46b6899145f65 +size 1167 diff --git a/source/designs/detail/005/005551.json b/source/designs/detail/005/005551.json new file mode 100644 index 0000000000000000000000000000000000000000..00b07c9e3399ce6510013be3ecfe43d5bac6b41f --- /dev/null +++ b/source/designs/detail/005/005551.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54029d60b7bf00539c63e76e26b290f68a2c6364d13f8af12a8d5db87d25f98 +size 1124 diff --git a/source/designs/detail/005/005552.json b/source/designs/detail/005/005552.json new file mode 100644 index 0000000000000000000000000000000000000000..b969bff27b503da69e9018a7e98c1617960f6306 --- /dev/null +++ b/source/designs/detail/005/005552.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b3fb9f78747e652682d21960147fccdf58768639ece5a9f3845fbd1f85defab +size 1136 diff --git a/source/designs/detail/005/005553.json b/source/designs/detail/005/005553.json new file mode 100644 index 0000000000000000000000000000000000000000..4a1083bf6aaf48fbf4a287547b1623f18fafdbe9 --- /dev/null +++ b/source/designs/detail/005/005553.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:032e3c885f7f240710c71df9ef18b0af694f0fb4f1cad857025fd35a57e94384 +size 1270 diff --git a/source/designs/detail/005/005554.json b/source/designs/detail/005/005554.json new file mode 100644 index 0000000000000000000000000000000000000000..708919bc528580955ad10349996d9e49e2fa3fb5 --- /dev/null +++ b/source/designs/detail/005/005554.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330a2fddf7f4765cc6f5702323697778887b0ade2b1e14ec781c721d9da83394 +size 1140 diff --git a/source/designs/detail/005/005555.json b/source/designs/detail/005/005555.json new file mode 100644 index 0000000000000000000000000000000000000000..9bc41f73d951951d57acec86058d0ad1fc0b7996 --- /dev/null +++ b/source/designs/detail/005/005555.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4260f9917b7db10cb7437f5009f87beca7fe74a5b6dec29912c554c9bc1056e3 +size 1780 diff --git a/source/designs/detail/005/005556.json b/source/designs/detail/005/005556.json new file mode 100644 index 0000000000000000000000000000000000000000..2d6d232a805f2af6e2c533c3cf773570b3c158ec --- /dev/null +++ b/source/designs/detail/005/005556.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f73cb6a7a85b22effb7eca1ae095ce501e23e91db027cac8a16a891343bc89bc +size 1051 diff --git a/source/designs/detail/005/005557.json b/source/designs/detail/005/005557.json new file mode 100644 index 0000000000000000000000000000000000000000..691c5cb27e8048b41cdc398676a7e8e0d4df2130 --- /dev/null +++ b/source/designs/detail/005/005557.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7834c054e9031f9dcae8c43e329dea1018bc817d89ccfd2ccd7921d8f5e728c4 +size 1265 diff --git a/source/designs/detail/005/005558.json b/source/designs/detail/005/005558.json new file mode 100644 index 0000000000000000000000000000000000000000..f7e7f85a6fb0bb2fdd6c3accf91d20e9b1fd87e3 --- /dev/null +++ b/source/designs/detail/005/005558.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cedd5f7d460886a8f437491f2396f00aec4e2ebe24d30e70c5039e8f797cc62 +size 1208 diff --git a/source/designs/detail/005/005559.json b/source/designs/detail/005/005559.json new file mode 100644 index 0000000000000000000000000000000000000000..04161bbd2db7913ba1b508b4f19213fd96fe4a23 --- /dev/null +++ b/source/designs/detail/005/005559.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33e04718ed0f6c930ab66ac43d9f097d0d44dad165b1b99f3e53ebb0911baa65 +size 1031 diff --git a/source/designs/detail/005/005560.json b/source/designs/detail/005/005560.json new file mode 100644 index 0000000000000000000000000000000000000000..41eb4ba27f2f86294fdee1a7adac42c79641d2ba --- /dev/null +++ b/source/designs/detail/005/005560.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8e99f7d9c2726472a4b5885258916da285e650d9ede942c033e45cf7afa225 +size 1380 diff --git a/source/designs/detail/005/005561.json b/source/designs/detail/005/005561.json new file mode 100644 index 0000000000000000000000000000000000000000..2a9a080dc1178ff6ae30d0b31eccacf9a716e468 --- /dev/null +++ b/source/designs/detail/005/005561.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9706d2edf490f05c8e4717fb17c1576536246ac58e86752aea3cf8ad8b6136b +size 1622 diff --git a/source/designs/detail/005/005562.json b/source/designs/detail/005/005562.json new file mode 100644 index 0000000000000000000000000000000000000000..37d73d98d60d46e535144991d81c7c6ca67d9961 --- /dev/null +++ b/source/designs/detail/005/005562.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:804ff0f8d69f699a8d2a421b01b748e8c23d5ba557b553a1950dcd2b3fc220ae +size 1403 diff --git a/source/designs/detail/005/005563.json b/source/designs/detail/005/005563.json new file mode 100644 index 0000000000000000000000000000000000000000..83a72bd37ed1f99bb911af3c3fc5ddaeb1ce3104 --- /dev/null +++ b/source/designs/detail/005/005563.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb1c439abc481f2c2a35668b1378c569b3ce7b011870063d3e8f1367a9a1c69 +size 1091 diff --git a/source/designs/detail/005/005564.json b/source/designs/detail/005/005564.json new file mode 100644 index 0000000000000000000000000000000000000000..065956d28ce12e3e03185a6346bb88b63710601d --- /dev/null +++ b/source/designs/detail/005/005564.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0c8a49dc9996caec50c05c572eff43106dc3d86b98e33eb60e45453bbe0d09 +size 1446 diff --git a/source/designs/detail/005/005565.json b/source/designs/detail/005/005565.json new file mode 100644 index 0000000000000000000000000000000000000000..737513b45380ab21c32497ff8e67c3f7fe23ec33 --- /dev/null +++ b/source/designs/detail/005/005565.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cd9f26186cb6a5c2a42a20f3bf7da55bfea1e61a749492d57dd7084b7bae0d +size 1710 diff --git a/source/designs/detail/005/005566.json b/source/designs/detail/005/005566.json new file mode 100644 index 0000000000000000000000000000000000000000..514b4c215b4335e4dde29c7b6bb7c0409de8c9b2 --- /dev/null +++ b/source/designs/detail/005/005566.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09bb71425a3179c9c5df99e98e2a74588faa26aef38d3a884fffa5dcdacb8a10 +size 1840 diff --git a/source/designs/detail/005/005567.json b/source/designs/detail/005/005567.json new file mode 100644 index 0000000000000000000000000000000000000000..c4c3b7082366b9f70d2a3b9d11924b81a363be84 --- /dev/null +++ b/source/designs/detail/005/005567.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6012e625c0f9747caf7b3fa86e647dda962f1a4c8e4d688750e04d29fec5f25 +size 1559 diff --git a/source/designs/detail/005/005568.json b/source/designs/detail/005/005568.json new file mode 100644 index 0000000000000000000000000000000000000000..a50dcfc87f1d6ede8921adc2fe11f246cd89cbdc --- /dev/null +++ b/source/designs/detail/005/005568.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa59d9d14251a4ff212db1f7f271b779b922430f31e0dfec456807f0bc818655 +size 1685 diff --git a/source/designs/detail/005/005569.json b/source/designs/detail/005/005569.json new file mode 100644 index 0000000000000000000000000000000000000000..a709f30e08d2365e2015aaff363e7db4a7b86c90 --- /dev/null +++ b/source/designs/detail/005/005569.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f68c75f8f41b70d2039c88e491256fd26998bc15f724f15b4945e0ee5c6f0d +size 1429 diff --git a/source/designs/detail/005/005570.json b/source/designs/detail/005/005570.json new file mode 100644 index 0000000000000000000000000000000000000000..ca573d6ba81b20da8c79def9793f6fd5d2af7fa8 --- /dev/null +++ b/source/designs/detail/005/005570.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ba3a29fbd5e0ac14da43cccbd64562e2a6a7a80c0d0d7689563199e8568c332 +size 1391 diff --git a/source/designs/detail/005/005571.json b/source/designs/detail/005/005571.json new file mode 100644 index 0000000000000000000000000000000000000000..c887f5f3fc308001de30e5a0aab4ae9a1f7d5d4a --- /dev/null +++ b/source/designs/detail/005/005571.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a4a6acc289f127b8d60858714629702bf394164b75ed3cde06afd27718648a +size 1313 diff --git a/source/designs/detail/005/005572.json b/source/designs/detail/005/005572.json new file mode 100644 index 0000000000000000000000000000000000000000..531287fac3ca5eb74c9068d01492cbad1b573ad7 --- /dev/null +++ b/source/designs/detail/005/005572.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df21a40c6c8e4dc9525cfd16343f375b5cce4d5edc17ca3e18b701aa41dc901e +size 1258 diff --git a/source/designs/detail/005/005573.json b/source/designs/detail/005/005573.json new file mode 100644 index 0000000000000000000000000000000000000000..6ccc7e3b4faf22a3924b77aa2bd214b86b41ccc1 --- /dev/null +++ b/source/designs/detail/005/005573.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7ac8fb1746758e8928e5aadd1c9c2579da3541789d9a9bbb57b9158394e8ef +size 1472 diff --git a/source/designs/detail/005/005574.json b/source/designs/detail/005/005574.json new file mode 100644 index 0000000000000000000000000000000000000000..46e1e4b2315c08bd388c69b1a7c87c72cfc82746 --- /dev/null +++ b/source/designs/detail/005/005574.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e157dc6dae825f349af4375a8b8d1bbcab2f068fe8f68b35ade8a34170936ca7 +size 1615 diff --git a/source/designs/detail/005/005575.json b/source/designs/detail/005/005575.json new file mode 100644 index 0000000000000000000000000000000000000000..92e271e2ec5db75625b692010a1fbee4cc3a7c75 --- /dev/null +++ b/source/designs/detail/005/005575.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7edb187443406796cc93b3026096961e7da677b886e8af9ad7030226bd6cb1b +size 1500 diff --git a/source/designs/detail/005/005576.json b/source/designs/detail/005/005576.json new file mode 100644 index 0000000000000000000000000000000000000000..bb14f0bee8017d0d11447f5e7822fa4a246b732b --- /dev/null +++ b/source/designs/detail/005/005576.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd87d340aabb916f0b00f0500f52e9b8d8b8df9dc42490d45fc49bd4b657e61c +size 1498 diff --git a/source/designs/detail/005/005577.json b/source/designs/detail/005/005577.json new file mode 100644 index 0000000000000000000000000000000000000000..098fea2a34eacd7f4ec3245d23d3ea989cc70b8d --- /dev/null +++ b/source/designs/detail/005/005577.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2de5131ef3e4bd5a2b2522be47437871a103c1df108940f3d78a5b0f60167d +size 1796 diff --git a/source/designs/detail/005/005578.json b/source/designs/detail/005/005578.json new file mode 100644 index 0000000000000000000000000000000000000000..c62d21573f2d78edbc6a02a9359e8bea1c7ddc5a --- /dev/null +++ b/source/designs/detail/005/005578.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5e47cfb9b8ae816196dac073e20da71357c5ee2c5921f9702ac0b5a1abe6bd +size 1629 diff --git a/source/designs/detail/005/005579.json b/source/designs/detail/005/005579.json new file mode 100644 index 0000000000000000000000000000000000000000..a5a0568f0d4fea62eb3fc7f6ad1cab3535511ba0 --- /dev/null +++ b/source/designs/detail/005/005579.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b50c3bbc871643b47d39f798c95b6fcf86a15f1000e377d5f69b73a4c9a6656c +size 1514 diff --git a/source/designs/detail/005/005580.json b/source/designs/detail/005/005580.json new file mode 100644 index 0000000000000000000000000000000000000000..9be24c335de5c24e8e1ffd29fd43dc0433780d7a --- /dev/null +++ b/source/designs/detail/005/005580.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f5684b305e0ae534363dbf5e2c88a4f9df20acbd31e08b4944a72a17419971 +size 1611 diff --git a/source/designs/detail/005/005581.json b/source/designs/detail/005/005581.json new file mode 100644 index 0000000000000000000000000000000000000000..7adfe0e822e12410ae7d1d1b2c534abae6d794a1 --- /dev/null +++ b/source/designs/detail/005/005581.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7352ad88e93f3f905ce5b583ef671cefff8c165e04338082be1f9e3e851e4bdb +size 1792 diff --git a/source/designs/detail/005/005582.json b/source/designs/detail/005/005582.json new file mode 100644 index 0000000000000000000000000000000000000000..7efa09a61d7b4d5ada76c8e2f663b9acba7c7a88 --- /dev/null +++ b/source/designs/detail/005/005582.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7848a6b21aa76bf1a86204e997d16f4fbc00e9636b543d7065be298414a4fbde +size 1309 diff --git a/source/designs/detail/005/005583.json b/source/designs/detail/005/005583.json new file mode 100644 index 0000000000000000000000000000000000000000..a1976b63030af06e11813a37960df7c0a01d5032 --- /dev/null +++ b/source/designs/detail/005/005583.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6154ed8c4114e99c0841a104f3154f085213bc4e1fccf63719f38b7f9a62980a +size 1782 diff --git a/source/designs/detail/005/005584.json b/source/designs/detail/005/005584.json new file mode 100644 index 0000000000000000000000000000000000000000..7074fdd7fbb11d238d9cda4c046c1cd1ac48f2a7 --- /dev/null +++ b/source/designs/detail/005/005584.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0084fc796b1b7074dddef4f348322fb4ec35d0e758aa59170c862f96096c228 +size 1236 diff --git a/source/designs/detail/005/005585.json b/source/designs/detail/005/005585.json new file mode 100644 index 0000000000000000000000000000000000000000..e11e5269122ea6d14adc0051675c2f0bb4bb2e5f --- /dev/null +++ b/source/designs/detail/005/005585.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976a7ac37a9d0cc2b1d3640522b129222c818b91182e2b8b8ca49a2ee5fa9a10 +size 2031 diff --git a/source/designs/detail/005/005586.json b/source/designs/detail/005/005586.json new file mode 100644 index 0000000000000000000000000000000000000000..a70bf70d9dce5e3ee97aa4eedb7386847537c956 --- /dev/null +++ b/source/designs/detail/005/005586.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57043194d05f9771af25a619345aef1f1beb5255ab1c872f8e8bff8495d124b7 +size 1639 diff --git a/source/designs/detail/005/005587.json b/source/designs/detail/005/005587.json new file mode 100644 index 0000000000000000000000000000000000000000..06637c6b05b9af8693f4efa437086e152983d994 --- /dev/null +++ b/source/designs/detail/005/005587.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c4dc8d08c03d319da9e55335e6a22736a1ee04ee8db01c8b300477c9c1699f +size 1356 diff --git a/source/designs/detail/005/005588.json b/source/designs/detail/005/005588.json new file mode 100644 index 0000000000000000000000000000000000000000..d64b3e14a382713ddc4025ad9027f5ce062474a9 --- /dev/null +++ b/source/designs/detail/005/005588.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1889b3075f5167ba778b7644095df8ab0bb82bda512045cdad2e86a80214920 +size 1335 diff --git a/source/designs/detail/005/005589.json b/source/designs/detail/005/005589.json new file mode 100644 index 0000000000000000000000000000000000000000..8c906ffff34ba25e31a5246ce8f4be58aab20141 --- /dev/null +++ b/source/designs/detail/005/005589.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5dbad48e301f90fd7ad9b1bd2565d11b03ead6952afc64f90e882ab25a15ed9 +size 1451 diff --git a/source/designs/detail/005/005590.json b/source/designs/detail/005/005590.json new file mode 100644 index 0000000000000000000000000000000000000000..1a7a14bf77bee62566f72ae67414e7a86e59b849 --- /dev/null +++ b/source/designs/detail/005/005590.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c8289e1cfa6cafa5afc097301e6e966da31a8fd9b7a09c04e5a048fb226115 +size 1952 diff --git a/source/designs/detail/005/005591.json b/source/designs/detail/005/005591.json new file mode 100644 index 0000000000000000000000000000000000000000..1c1ec284d17ea676ee03708ea4559dbf9055570a --- /dev/null +++ b/source/designs/detail/005/005591.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb329aa4cbcf722b56fbc5119eac5b573d117dd80173ecc02f88d62f3375072c +size 1474 diff --git a/source/designs/detail/005/005592.json b/source/designs/detail/005/005592.json new file mode 100644 index 0000000000000000000000000000000000000000..8ecfaba72866d02f049f8d5cddada74c7af12296 --- /dev/null +++ b/source/designs/detail/005/005592.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc07f98bb4a5d7fb673414c53e5dec27cffdc0dc8ea1b5457690bb3e9fb7666a +size 1101 diff --git a/source/designs/detail/005/005593.json b/source/designs/detail/005/005593.json new file mode 100644 index 0000000000000000000000000000000000000000..cfc1900e9ef541e7afbe37f43062a728337c7daf --- /dev/null +++ b/source/designs/detail/005/005593.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5064e4c067d609f583348344c8895f950d99d3b28416c9873747e1b377e07ce +size 1523 diff --git a/source/designs/detail/005/005594.json b/source/designs/detail/005/005594.json new file mode 100644 index 0000000000000000000000000000000000000000..18441fe59d7dad7bc251ccd351e9193b9ba9543d --- /dev/null +++ b/source/designs/detail/005/005594.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbb4e080d49fc8b280e9c14b0b11c81378a2cf96135e928c24682aca6c6a70ee +size 1889 diff --git a/source/designs/detail/005/005595.json b/source/designs/detail/005/005595.json new file mode 100644 index 0000000000000000000000000000000000000000..892fe101016dec0384fe776620ec80cd8f52fb14 --- /dev/null +++ b/source/designs/detail/005/005595.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4236c3da9a5d564d333991e62905451a5512fa7262e76b9355c0cf270d10f91c +size 1293 diff --git a/source/designs/detail/005/005596.json b/source/designs/detail/005/005596.json new file mode 100644 index 0000000000000000000000000000000000000000..716b0b062207381b87b74a87508e4ddff5df6404 --- /dev/null +++ b/source/designs/detail/005/005596.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7fb0bd64afef59e34d5c039ee4b5dbb07ede5d57cd0e23e5f607992d6619d3b +size 1665 diff --git a/source/designs/detail/005/005597.json b/source/designs/detail/005/005597.json new file mode 100644 index 0000000000000000000000000000000000000000..0359f1f45735b2adb5d97609c81fcb7bd96e9eb8 --- /dev/null +++ b/source/designs/detail/005/005597.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81df7660ab07864d0218e96ec427ef15e76b00e59dc089c7ff4d20f62868c69b +size 1308 diff --git a/source/designs/detail/005/005598.json b/source/designs/detail/005/005598.json new file mode 100644 index 0000000000000000000000000000000000000000..adbb99f3ed9d399a4a0078b1f335e689953bd1ef --- /dev/null +++ b/source/designs/detail/005/005598.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de1b5b28609bc071366efc1971b1c26073e848a5124671ff8d7cf0e7fca0aa8 +size 1081 diff --git a/source/designs/detail/005/005599.json b/source/designs/detail/005/005599.json new file mode 100644 index 0000000000000000000000000000000000000000..ec0d2c9c1ed1a293cc8c25686a64fe5067f73034 --- /dev/null +++ b/source/designs/detail/005/005599.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c498637249de98e598587b21505c8da3c6395b1caeca49e19bf2067ecc1cd9b7 +size 1273 diff --git a/source/designs/detail/005/005600.json b/source/designs/detail/005/005600.json new file mode 100644 index 0000000000000000000000000000000000000000..8075d34e73de858ebb79bc91b6069aae511797a1 --- /dev/null +++ b/source/designs/detail/005/005600.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229ce798847cd74dbaaf2b35fae6a7e7edf3d09c700dcf4d55ab63a1b60d20ef +size 1300 diff --git a/source/designs/detail/005/005601.json b/source/designs/detail/005/005601.json new file mode 100644 index 0000000000000000000000000000000000000000..e0c3306c267270372fea4042a5c2643f01323d1e --- /dev/null +++ b/source/designs/detail/005/005601.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d7fdda16a658bca5afd98b8f7a9c80a59e8f113df436f616fdda13bfe6588e +size 1176 diff --git a/source/designs/detail/005/005602.json b/source/designs/detail/005/005602.json new file mode 100644 index 0000000000000000000000000000000000000000..a0f83d2294535a53994726fedcd0a63bb28122e6 --- /dev/null +++ b/source/designs/detail/005/005602.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f926235683f0c1898e85f5994728170d3b6ee2bebf9358daf7f368828de63e +size 1263 diff --git a/source/designs/detail/005/005603.json b/source/designs/detail/005/005603.json new file mode 100644 index 0000000000000000000000000000000000000000..0892bf3eaa2b7b8765150820fea585ccc8c17e80 --- /dev/null +++ b/source/designs/detail/005/005603.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7152f00680418e78374a58a9cd1dea731e8d8f7fc6e37990c2c585bd7fae6fb6 +size 1358 diff --git a/source/designs/detail/005/005604.json b/source/designs/detail/005/005604.json new file mode 100644 index 0000000000000000000000000000000000000000..3a3626be3837b0eb503c28e210130a70ab03faa7 --- /dev/null +++ b/source/designs/detail/005/005604.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8958a4ec21d317d31579e132437b7dd827911dffef402dda863891b87815cfb +size 1703 diff --git a/source/designs/detail/005/005605.json b/source/designs/detail/005/005605.json new file mode 100644 index 0000000000000000000000000000000000000000..1af02896d7b891bd31424577c6feb29808632573 --- /dev/null +++ b/source/designs/detail/005/005605.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7280d8bc51953e2ee5d1e67b78f30529502521f74bc68a575211ab402e17c10 +size 1594 diff --git a/source/designs/detail/005/005606.json b/source/designs/detail/005/005606.json new file mode 100644 index 0000000000000000000000000000000000000000..3d476b7d3493653bde3af880e4f3bc607dba2575 --- /dev/null +++ b/source/designs/detail/005/005606.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8bcb55f53497dc4d6ea688acea5cff59ede2063b50dd808d01178fc913a63d +size 1722 diff --git a/source/designs/detail/005/005607.json b/source/designs/detail/005/005607.json new file mode 100644 index 0000000000000000000000000000000000000000..75e5cdc037bf6838b3120bcb814cf7c9ee8a9d8b --- /dev/null +++ b/source/designs/detail/005/005607.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a1e5985226e262eb07787669a46dc2481868ec678cee1d88c26797384e58d53 +size 1636 diff --git a/source/designs/detail/005/005608.json b/source/designs/detail/005/005608.json new file mode 100644 index 0000000000000000000000000000000000000000..8b1ef206e3f25f2b389638c0746ef07e9cce0a9f --- /dev/null +++ b/source/designs/detail/005/005608.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c98052f4ec9163656fc438ee80f606d685ddd83976f473ad2840285f427cde2 +size 1633 diff --git a/source/designs/detail/005/005609.json b/source/designs/detail/005/005609.json new file mode 100644 index 0000000000000000000000000000000000000000..1be619f714f21d09112c3486f630d57ad0390b0d --- /dev/null +++ b/source/designs/detail/005/005609.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae562cf1658537e0eab96387e3e82e13514fc15ac9af340ea822811b31753a69 +size 1295 diff --git a/source/designs/detail/005/005610.json b/source/designs/detail/005/005610.json new file mode 100644 index 0000000000000000000000000000000000000000..395357d0507536a5750ad25fd9ef50caf0bab279 --- /dev/null +++ b/source/designs/detail/005/005610.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255755ac2ce16036a31ed1daf405c6a254f0fa6d82721582cba96005dc88ed05 +size 1071 diff --git a/source/designs/detail/005/005611.json b/source/designs/detail/005/005611.json new file mode 100644 index 0000000000000000000000000000000000000000..746cba8962e0dca1940313ef75bb2933bf177bee --- /dev/null +++ b/source/designs/detail/005/005611.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a971fd9f4e3cdc50304de73ddfabd4d18d607b4b509836e438a1dbcdd441eae2 +size 1079 diff --git a/source/designs/detail/005/005612.json b/source/designs/detail/005/005612.json new file mode 100644 index 0000000000000000000000000000000000000000..487113b41b8f006150499bb5182c96984c1814ba --- /dev/null +++ b/source/designs/detail/005/005612.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e72e12245a08229954e414d9522f3cba628d06c13297017ee1be845d2ebd66ee +size 2117 diff --git a/source/designs/detail/005/005613.json b/source/designs/detail/005/005613.json new file mode 100644 index 0000000000000000000000000000000000000000..3336eed00bff4fd3d2141cd25901a9d3a6231b88 --- /dev/null +++ b/source/designs/detail/005/005613.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5e7283da80b6f0a187d3fcedf5f70d436c2e9ccd475be7a8a212a77d6344bd +size 1463 diff --git a/source/designs/detail/005/005614.json b/source/designs/detail/005/005614.json new file mode 100644 index 0000000000000000000000000000000000000000..3c85e2e8aa220b321bdeda5e427193f36173951f --- /dev/null +++ b/source/designs/detail/005/005614.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f4b0277254409e705084d5e41fc5e92aa49264cd2a47ffb5f7805df20c09266 +size 1303 diff --git a/source/designs/detail/005/005615.json b/source/designs/detail/005/005615.json new file mode 100644 index 0000000000000000000000000000000000000000..dddcb43122f851bb67ff824a36510981d6d0f5e4 --- /dev/null +++ b/source/designs/detail/005/005615.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0fa372d7204ac6884ec4d4f88d3219021dfa7a14bed78a304f5d776324e77f5 +size 1781 diff --git a/source/designs/detail/005/005616.json b/source/designs/detail/005/005616.json new file mode 100644 index 0000000000000000000000000000000000000000..8c1df5c499d4825bfbf5c988096f5a178af63460 --- /dev/null +++ b/source/designs/detail/005/005616.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8727f67826c48582e2a86ee8c1bf9d7780ac35ca77af7bc124eabf603f6bb8 +size 1480 diff --git a/source/designs/detail/005/005617.json b/source/designs/detail/005/005617.json new file mode 100644 index 0000000000000000000000000000000000000000..8179845ca43868a3812a45342a98032dd8b0920f --- /dev/null +++ b/source/designs/detail/005/005617.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e547cf2cb15e2966ff5c62c634fcb799557d64a5d362003fbfd202d2bf7776f +size 2070 diff --git a/source/designs/detail/005/005618.json b/source/designs/detail/005/005618.json new file mode 100644 index 0000000000000000000000000000000000000000..e3888c1984fec282c399605a0500ebf56f54a3d1 --- /dev/null +++ b/source/designs/detail/005/005618.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb2f9dbd050aa28a40eda5641e4db9b87840db58d0f712b04d471a2b367de30 +size 1139 diff --git a/source/designs/detail/005/005619.json b/source/designs/detail/005/005619.json new file mode 100644 index 0000000000000000000000000000000000000000..75a107ed31197510dec476645c71a0640ff3cfdb --- /dev/null +++ b/source/designs/detail/005/005619.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a4338af644cb452f6048c1c2c8ff496669c98033af2b6aa6952719c51103bd +size 1877 diff --git a/source/designs/detail/005/005620.json b/source/designs/detail/005/005620.json new file mode 100644 index 0000000000000000000000000000000000000000..8a9e8a0e454359db5c56f6c39286477abca68752 --- /dev/null +++ b/source/designs/detail/005/005620.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31595b86f0964fb85f30b118f49d672df144f3f714e19ddc68a41a4dbb4e2ade +size 1995 diff --git a/source/designs/detail/005/005621.json b/source/designs/detail/005/005621.json new file mode 100644 index 0000000000000000000000000000000000000000..a0f73a257ca0a055a7c1692575740cedf5026bdd --- /dev/null +++ b/source/designs/detail/005/005621.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d6d694999db4c6cf231bb5ee63df9e82b0ed26aa7a5712447cc38940abf9a2 +size 1405 diff --git a/source/designs/detail/005/005622.json b/source/designs/detail/005/005622.json new file mode 100644 index 0000000000000000000000000000000000000000..486e5d1bb3d53c0a65b21eeab349e052ac5057ed --- /dev/null +++ b/source/designs/detail/005/005622.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ea8cad3874e1bc90223f14e0f400a6eee6528be40144105d4ddb8c50ac8a23 +size 1275 diff --git a/source/designs/detail/005/005623.json b/source/designs/detail/005/005623.json new file mode 100644 index 0000000000000000000000000000000000000000..c0eb9e9b0bb9d5e200a21cb84505997380b41bc3 --- /dev/null +++ b/source/designs/detail/005/005623.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb9cc8ca30afe130ed0ddcb9a1467edfff7d1e0a4fdb364eb91c39ac5d030aec +size 1613 diff --git a/source/designs/detail/005/005624.json b/source/designs/detail/005/005624.json new file mode 100644 index 0000000000000000000000000000000000000000..f1e4ac258e59e01b66c83ed47d752dfcb76cd0c6 --- /dev/null +++ b/source/designs/detail/005/005624.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731623632392d335b7af61a9a0d566ee0af7061c31e1acee120b9c6dedf927b6 +size 1476 diff --git a/source/designs/detail/005/005625.json b/source/designs/detail/005/005625.json new file mode 100644 index 0000000000000000000000000000000000000000..f31ce38c0f5a18e10f779acd3eb950390896b5fd --- /dev/null +++ b/source/designs/detail/005/005625.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae45dec03bb70726bb72763d43bccb73feff14a4992957fd57c95368fc6796e6 +size 1951 diff --git a/source/designs/detail/005/005626.json b/source/designs/detail/005/005626.json new file mode 100644 index 0000000000000000000000000000000000000000..5de15bb606842d8161e5ba4ea8c213d22eb65e4d --- /dev/null +++ b/source/designs/detail/005/005626.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ade0fc3d150cec01d08c8792b69f08a19f2def0dfbf78a4315a14516b16fa4 +size 1773 diff --git a/source/designs/detail/005/005627.json b/source/designs/detail/005/005627.json new file mode 100644 index 0000000000000000000000000000000000000000..982f6536d31debc15b5b24324ae36c1bc48b5c67 --- /dev/null +++ b/source/designs/detail/005/005627.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d926c4954ba1563177ab5329ae313f64b9490860724188d70faf1fd3d3a95425 +size 1324 diff --git a/source/designs/detail/005/005628.json b/source/designs/detail/005/005628.json new file mode 100644 index 0000000000000000000000000000000000000000..459bcd26cc244c9846bdc9409344f9cf7221edb5 --- /dev/null +++ b/source/designs/detail/005/005628.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b512fe31de19f65a60d898801e6c2c194ccddc8ec2d0eec8161fff92a879b8 +size 2100 diff --git a/source/designs/detail/005/005629.json b/source/designs/detail/005/005629.json new file mode 100644 index 0000000000000000000000000000000000000000..4521897fd84006e77181f8b50a5d1375ee46e3d5 --- /dev/null +++ b/source/designs/detail/005/005629.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14111304ed6d40c48758805755fa9d68cc613463815c375b50af1adfd8346118 +size 1481 diff --git a/source/designs/detail/005/005630.json b/source/designs/detail/005/005630.json new file mode 100644 index 0000000000000000000000000000000000000000..ea37e1a82096404fc413c4c265e3496d5e8875b6 --- /dev/null +++ b/source/designs/detail/005/005630.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366d8a6e2e50902c39414cc280296334c1182a30fa6f5d34658903f31b086400 +size 1472 diff --git a/source/designs/detail/005/005631.json b/source/designs/detail/005/005631.json new file mode 100644 index 0000000000000000000000000000000000000000..62906f5aeac64fa4c2cea8763fd20ab884beafc4 --- /dev/null +++ b/source/designs/detail/005/005631.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb35e5db0f90ab74181aedaca68690852e16a4e9d2ef71087ac28bb588eb0bb9 +size 1481 diff --git a/source/designs/detail/005/005632.json b/source/designs/detail/005/005632.json new file mode 100644 index 0000000000000000000000000000000000000000..0daf2946df99ca32406f459b3ead9c78c587e977 --- /dev/null +++ b/source/designs/detail/005/005632.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd34afc7078ec77f691b18ff6c2e4989f69ee9cf7b94207243dcc14c746048fb +size 1655 diff --git a/source/designs/detail/005/005633.json b/source/designs/detail/005/005633.json new file mode 100644 index 0000000000000000000000000000000000000000..5a66038d69115108645888820f8c16c4b404e8fc --- /dev/null +++ b/source/designs/detail/005/005633.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58238b419398ea8f5fffe96d87c552b4daf3610516e5d9c6e899ff6487c6cc3a +size 1662 diff --git a/source/designs/detail/005/005634.json b/source/designs/detail/005/005634.json new file mode 100644 index 0000000000000000000000000000000000000000..74ceaae3589b47f9e905abdc7028ea532b1ad846 --- /dev/null +++ b/source/designs/detail/005/005634.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42bf7af53a1f19f284b4184b4faeda694c9134373d255e91ab9112e3d834249 +size 1941 diff --git a/source/designs/detail/005/005635.json b/source/designs/detail/005/005635.json new file mode 100644 index 0000000000000000000000000000000000000000..05ead5976672b488aaa5dade16e9d9466f6d69ca --- /dev/null +++ b/source/designs/detail/005/005635.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a8b5d24f50eefe20c756af894ecbdacab6ef29a46f11d50329c692d3769aec +size 1701 diff --git a/source/designs/detail/005/005636.json b/source/designs/detail/005/005636.json new file mode 100644 index 0000000000000000000000000000000000000000..a5c1c434449291184fdde232bd500f787d55b741 --- /dev/null +++ b/source/designs/detail/005/005636.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9bbb893cfe95eaa23af9d4cee62005189c40be5d3548d528d6dad48f4cb770 +size 1713 diff --git a/source/designs/detail/005/005637.json b/source/designs/detail/005/005637.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe08815793742214c6a511b6e20fc7d9c0acdda --- /dev/null +++ b/source/designs/detail/005/005637.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47c1efa75ccd5c320e30b8c26870469c32ad2314f9d0e5c17b9c02ebc36e8a0 +size 1446 diff --git a/source/designs/detail/005/005638.json b/source/designs/detail/005/005638.json new file mode 100644 index 0000000000000000000000000000000000000000..7671c5adbd7babb5a84e03daa22102608e2ac26d --- /dev/null +++ b/source/designs/detail/005/005638.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93259893bd262efeecbca439e4d8c94c91ddc8d881444276e63b3903e52a8361 +size 1922 diff --git a/source/designs/detail/005/005639.json b/source/designs/detail/005/005639.json new file mode 100644 index 0000000000000000000000000000000000000000..a9316f066bd65527fe5965dd9dd77e2f0952b73e --- /dev/null +++ b/source/designs/detail/005/005639.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4a5521221885df605388d90918efd180e8508b97d54172f0cba2a00635d621 +size 2560 diff --git a/source/designs/detail/005/005640.json b/source/designs/detail/005/005640.json new file mode 100644 index 0000000000000000000000000000000000000000..3f169803ac2bf04b34aaf83dd40b1d9b9cb8bb57 --- /dev/null +++ b/source/designs/detail/005/005640.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5132a9ced595fa46b5ebfa226035326ae15450fe5519fed2eddce39bb50f07fc +size 1176 diff --git a/source/designs/detail/005/005641.json b/source/designs/detail/005/005641.json new file mode 100644 index 0000000000000000000000000000000000000000..46aece0e299a03c38d252f1a80a259efa477270c --- /dev/null +++ b/source/designs/detail/005/005641.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26096ffb87f41cebcc2658c0e2186a89f261fae899e85d8eb81d0e61ae0d7ec4 +size 1992 diff --git a/source/designs/detail/005/005642.json b/source/designs/detail/005/005642.json new file mode 100644 index 0000000000000000000000000000000000000000..0130c49665cfe548af9dfc8ae80f4d867d00b8ff --- /dev/null +++ b/source/designs/detail/005/005642.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920ca9fac0d51c467f6533605693ef04fd185ac2f26d634869dc6ef6b08da6c5 +size 1262 diff --git a/source/designs/detail/005/005643.json b/source/designs/detail/005/005643.json new file mode 100644 index 0000000000000000000000000000000000000000..cdd9292396f95ba324fa9073f6fc77788072f8a7 --- /dev/null +++ b/source/designs/detail/005/005643.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c6dbf8424a0263f28322f6f12e053bf21de12a7efea95f8ea7820ca2b6d6db +size 1831 diff --git a/source/designs/detail/005/005644.json b/source/designs/detail/005/005644.json new file mode 100644 index 0000000000000000000000000000000000000000..e514a258c54fc1b56d3b059b314efacd89c8b672 --- /dev/null +++ b/source/designs/detail/005/005644.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ec9a7d0ea68a2aa14d2db9216be3fff154661d8b8b00208317378e89c60eb3 +size 1505 diff --git a/source/designs/detail/005/005645.json b/source/designs/detail/005/005645.json new file mode 100644 index 0000000000000000000000000000000000000000..da3a8cd916f368c11a62baf5bdf7d3848df552e3 --- /dev/null +++ b/source/designs/detail/005/005645.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9104748022f585fa32db9792d013c76d7752fe2c0c7580d2d35c75a27ab34960 +size 2270 diff --git a/source/designs/detail/005/005646.json b/source/designs/detail/005/005646.json new file mode 100644 index 0000000000000000000000000000000000000000..57f77c18c0fa1784d2f19b5cebd6e3a1a5c07389 --- /dev/null +++ b/source/designs/detail/005/005646.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e533d0dd70a7d541e1a9e9b9b85bda56f0e86735d75fbbbd79d52cf5064280b +size 1391 diff --git a/source/designs/detail/005/005647.json b/source/designs/detail/005/005647.json new file mode 100644 index 0000000000000000000000000000000000000000..883661c81b97a98cd5fe6181284214283cb884d7 --- /dev/null +++ b/source/designs/detail/005/005647.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81529395e69d6c35ab2f2873f1349fa7109925f44021a3a7cffbc33c07ae19b4 +size 1931 diff --git a/source/designs/detail/005/005648.json b/source/designs/detail/005/005648.json new file mode 100644 index 0000000000000000000000000000000000000000..46c22769820cb4b464f6909b76980b443ce6849a --- /dev/null +++ b/source/designs/detail/005/005648.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1efbe75aadf53731be02a67f199761e7e37f73e92974bc3b83fb7f8ff2f43f19 +size 1821 diff --git a/source/designs/detail/005/005649.json b/source/designs/detail/005/005649.json new file mode 100644 index 0000000000000000000000000000000000000000..67b465592a34486785e54fe7e452b5774e461daa --- /dev/null +++ b/source/designs/detail/005/005649.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920ad87af1a60efc67841236f4a67d155d141156b6d257f30c2ddb0e01ddca74 +size 2114 diff --git a/source/designs/detail/005/005650.json b/source/designs/detail/005/005650.json new file mode 100644 index 0000000000000000000000000000000000000000..236117de708b3e20617fac93c608138e07f3db97 --- /dev/null +++ b/source/designs/detail/005/005650.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf085336f780af11bf8694c0156fe578987faf9c81abb012fd4d97c7a14a99f3 +size 1337 diff --git a/source/designs/detail/005/005651.json b/source/designs/detail/005/005651.json new file mode 100644 index 0000000000000000000000000000000000000000..884834c927ba102d214af1ebde34110c7e9517e4 --- /dev/null +++ b/source/designs/detail/005/005651.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d5b20a26a08dfdfc12fce41ce374b4d8e24ff6a550cff933e3d7689371aebd +size 1480 diff --git a/source/designs/detail/005/005652.json b/source/designs/detail/005/005652.json new file mode 100644 index 0000000000000000000000000000000000000000..17c5b769f7f84a8870f62d2fe9c59e9b057810cf --- /dev/null +++ b/source/designs/detail/005/005652.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfffb6521fce3458b1fc91e6a9d6c3b1f536592b683baa82f4fd1b7f9266aa52 +size 1917 diff --git a/source/designs/detail/005/005653.json b/source/designs/detail/005/005653.json new file mode 100644 index 0000000000000000000000000000000000000000..94f7196a8b35b595058e18b9d27df8491d829e46 --- /dev/null +++ b/source/designs/detail/005/005653.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ab597110faf9a0e429a084f981e68e65d65dc3aab0ead413f1e30bad071a9c +size 1235 diff --git a/source/designs/detail/005/005654.json b/source/designs/detail/005/005654.json new file mode 100644 index 0000000000000000000000000000000000000000..a046d71ae46c0559660b0414884ade2f448deae9 --- /dev/null +++ b/source/designs/detail/005/005654.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24581aeeb32d46d81b5f379edabe4a1e3a66112e127615cb6377e46ca54a5e5 +size 1619 diff --git a/source/designs/detail/005/005655.json b/source/designs/detail/005/005655.json new file mode 100644 index 0000000000000000000000000000000000000000..6c4543cdcad4268ccd8979cef2fabe22c63c0df1 --- /dev/null +++ b/source/designs/detail/005/005655.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470b9442c833894acaef6ec1fd82d84a16eb8ac360690a6a84038bac923ed549 +size 1775 diff --git a/source/designs/detail/005/005656.json b/source/designs/detail/005/005656.json new file mode 100644 index 0000000000000000000000000000000000000000..92f50a5f10d310e80318505f7c9bae685e1a8fe0 --- /dev/null +++ b/source/designs/detail/005/005656.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3423e70a9230e79050825ed8186af7a29ccc9c46fc311ad2dc71bde7a39b8c32 +size 2809 diff --git a/source/designs/detail/005/005657.json b/source/designs/detail/005/005657.json new file mode 100644 index 0000000000000000000000000000000000000000..6ebb0a478286cb295873b11c17a0dd587244ff66 --- /dev/null +++ b/source/designs/detail/005/005657.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d988958d9a80eb7146971c91e1136f7abc95358e2b1245f66c32104cab09f14a +size 1319 diff --git a/source/designs/detail/005/005658.json b/source/designs/detail/005/005658.json new file mode 100644 index 0000000000000000000000000000000000000000..eb531345ae09cf481b34d9336f9f5bbf15d4ad15 --- /dev/null +++ b/source/designs/detail/005/005658.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be92074f8aa396399b63f781a5fb9b0cdfdf00b3ea6129110ee1d8e8a62a944 +size 1838 diff --git a/source/designs/detail/005/005659.json b/source/designs/detail/005/005659.json new file mode 100644 index 0000000000000000000000000000000000000000..ec98f21a5ddddb11570e91e0764cbf568c551c18 --- /dev/null +++ b/source/designs/detail/005/005659.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b34ad1b34ea56d49978d8325165b938be7af23d57defbd75f46f80fc91dbb236 +size 1190 diff --git a/source/designs/detail/005/005660.json b/source/designs/detail/005/005660.json new file mode 100644 index 0000000000000000000000000000000000000000..2a1afe691125799084107b772a52918ecdbffd6f --- /dev/null +++ b/source/designs/detail/005/005660.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b191e5b1d2894f9abfc4014c6802e6e9ed11b1890f57a0a2cddcb8028fc755ed +size 1575 diff --git a/source/designs/detail/005/005661.json b/source/designs/detail/005/005661.json new file mode 100644 index 0000000000000000000000000000000000000000..fe03622624b65498397849d9d60c7b6d3730d53a --- /dev/null +++ b/source/designs/detail/005/005661.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:838437fc1e9acacbc8778eaae33bc297ed2f184ba8161fbf74809bda507caa85 +size 1289 diff --git a/source/designs/detail/005/005662.json b/source/designs/detail/005/005662.json new file mode 100644 index 0000000000000000000000000000000000000000..0ec96ffb498668ed0ff427ca1f69edf55b1aefda --- /dev/null +++ b/source/designs/detail/005/005662.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b4b662d142914d27693b54652ae5211da36196d7f12a2f212158463c3fb700 +size 1897 diff --git a/source/designs/detail/005/005663.json b/source/designs/detail/005/005663.json new file mode 100644 index 0000000000000000000000000000000000000000..5c0e605b9d086d3a0f5dcf3c1b743af2d1cae01e --- /dev/null +++ b/source/designs/detail/005/005663.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2e8846028db5b6a4545cee334c27c2c071deea8461bb3d90eaeba4816226fb +size 1469 diff --git a/source/designs/detail/005/005664.json b/source/designs/detail/005/005664.json new file mode 100644 index 0000000000000000000000000000000000000000..13a449896dfd1af9cac8acf769895e662ac52668 --- /dev/null +++ b/source/designs/detail/005/005664.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83741e5f38a7e7e3baac7339ab31bd2aa5cf19a906b2055f1a195091330cea8b +size 1661 diff --git a/source/designs/detail/005/005665.json b/source/designs/detail/005/005665.json new file mode 100644 index 0000000000000000000000000000000000000000..1db3d63ba1a8595254005f6d43374f6bfd09eb39 --- /dev/null +++ b/source/designs/detail/005/005665.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46a4d64f4db94cc18e3b6f86baab6d48762a75d6fb8388f7af455c0581dd845e +size 2098 diff --git a/source/designs/detail/005/005666.json b/source/designs/detail/005/005666.json new file mode 100644 index 0000000000000000000000000000000000000000..29665ecccf1bb9612548ca37dc5efadaa5183c93 --- /dev/null +++ b/source/designs/detail/005/005666.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25073f750db1c745380e245df65b574eef6ae87b500e0831fe4a53085fc6c6ba +size 2335 diff --git a/source/designs/detail/005/005667.json b/source/designs/detail/005/005667.json new file mode 100644 index 0000000000000000000000000000000000000000..e512ae17746bdfd655eac21ec3ace64761d475d1 --- /dev/null +++ b/source/designs/detail/005/005667.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7887d3c2262482c03d0950266ddf55d562d9b6c9d3d00d204d3e78f6a8e7d54b +size 1771 diff --git a/source/designs/detail/005/005668.json b/source/designs/detail/005/005668.json new file mode 100644 index 0000000000000000000000000000000000000000..aff4f1d74d5a9f19bffdb700deb801cc4e6a5051 --- /dev/null +++ b/source/designs/detail/005/005668.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04074f76f9131fafddc1542fb3d4182d9cf946a7c36e939a686b4613b73834cc +size 2523 diff --git a/source/designs/detail/005/005669.json b/source/designs/detail/005/005669.json new file mode 100644 index 0000000000000000000000000000000000000000..79f732d96d2e3c2ac3456824d8f032446e52d8f5 --- /dev/null +++ b/source/designs/detail/005/005669.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7283fc957d85758b10da39f5d41e54398232080e4110ddf2e458891ad7de6dee +size 2327 diff --git a/source/designs/detail/005/005670.json b/source/designs/detail/005/005670.json new file mode 100644 index 0000000000000000000000000000000000000000..9917249aac793c510e31cb3fcd518e6a5da50a90 --- /dev/null +++ b/source/designs/detail/005/005670.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f018f51a7892f8d0721f2b16a645b4c1a29e8eee4134f80e21823084fe29ed07 +size 1871 diff --git a/source/designs/detail/005/005671.json b/source/designs/detail/005/005671.json new file mode 100644 index 0000000000000000000000000000000000000000..a1d1ea46c63d5b56d6ecd09fe62f32c2c9051e14 --- /dev/null +++ b/source/designs/detail/005/005671.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f792ecc3d96ce932c39502d820599873f573d9ea087d7b55dcf79ecc3d6fc38f +size 1348 diff --git a/source/designs/detail/005/005672.json b/source/designs/detail/005/005672.json new file mode 100644 index 0000000000000000000000000000000000000000..a547f47bc00ffc8d3a2770e8d48f76f18493dc6b --- /dev/null +++ b/source/designs/detail/005/005672.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1847f9c82f308402cd5a0d79876c4b948fb963eef64ed2bd7a456a1c5d2bd118 +size 1710 diff --git a/source/designs/detail/005/005673.json b/source/designs/detail/005/005673.json new file mode 100644 index 0000000000000000000000000000000000000000..7625919a2a50b4358db91996031e267385440ebe --- /dev/null +++ b/source/designs/detail/005/005673.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f50bd54ffbcc462d84a40127b94cd31b4ccc49a0658b2a605b84f79473441cf +size 1318 diff --git a/source/designs/detail/005/005674.json b/source/designs/detail/005/005674.json new file mode 100644 index 0000000000000000000000000000000000000000..5fe8e2536eed09c2d5413625701c6631bb8fd6ad --- /dev/null +++ b/source/designs/detail/005/005674.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55fc39b97ff81482d111c6b80dfc32c4eed29f8863d2857eda4abe695933fdc +size 1607 diff --git a/source/designs/detail/005/005675.json b/source/designs/detail/005/005675.json new file mode 100644 index 0000000000000000000000000000000000000000..4ea35222a08f5a0478b8bacf143604cbe98751be --- /dev/null +++ b/source/designs/detail/005/005675.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88b87cc359f4bec1a5b9e063e7e431e6a3637c7aea09cac6c430421de5f17476 +size 1524 diff --git a/source/designs/detail/005/005676.json b/source/designs/detail/005/005676.json new file mode 100644 index 0000000000000000000000000000000000000000..8b15dc8a096f321c32ed072c83850d80b88e32a6 --- /dev/null +++ b/source/designs/detail/005/005676.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe8fc2e1ef7a6ec5ea32fc1d5a5c51d476b8cabd182dc8f8d19bb7fc2a97b7d +size 1459 diff --git a/source/designs/detail/005/005677.json b/source/designs/detail/005/005677.json new file mode 100644 index 0000000000000000000000000000000000000000..97c485c46cfe5917eacee9234bca278d306c15d6 --- /dev/null +++ b/source/designs/detail/005/005677.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f4dd6d0097b8e3a50502bab5d2e5c2191772f16ab3983fff6971339e0f72f9 +size 1398 diff --git a/source/designs/detail/005/005678.json b/source/designs/detail/005/005678.json new file mode 100644 index 0000000000000000000000000000000000000000..3c32a6395f5059ff99a9c3923482040d22ae7036 --- /dev/null +++ b/source/designs/detail/005/005678.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276b2f857ba867677c78c5923b9b6ee9a2a37d9f7546587aedd5f1bc30c000dd +size 1288 diff --git a/source/designs/detail/005/005679.json b/source/designs/detail/005/005679.json new file mode 100644 index 0000000000000000000000000000000000000000..290910d9f86711a20d776ad1512b4d3643468181 --- /dev/null +++ b/source/designs/detail/005/005679.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115b285a75ca46c6e61a01ea9cda48db9e167c56cc6d93fe66574de7432810dc +size 1985 diff --git a/source/designs/detail/005/005680.json b/source/designs/detail/005/005680.json new file mode 100644 index 0000000000000000000000000000000000000000..f52faff51be5fa3cea7fb6095644ae3c1db9257b --- /dev/null +++ b/source/designs/detail/005/005680.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dff1e51b9106d587bf7b9d6756082d4cd84e963a288caf50b9decee2db7f175 +size 1127 diff --git a/source/designs/detail/005/005681.json b/source/designs/detail/005/005681.json new file mode 100644 index 0000000000000000000000000000000000000000..9124914522d596b0ee6ab68a56dc9becad5901e6 --- /dev/null +++ b/source/designs/detail/005/005681.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624dd604e09d1243254ed1d55392d9914808d054becbb55f63e9d182c6b82ad7 +size 1303 diff --git a/source/designs/detail/005/005682.json b/source/designs/detail/005/005682.json new file mode 100644 index 0000000000000000000000000000000000000000..1765d55742d93dfb667f0bacfbde6ab011fb08f9 --- /dev/null +++ b/source/designs/detail/005/005682.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a5108f0c559ed996452e1c32e36891a65b834b9719627f74632f0de5f89f24 +size 1545 diff --git a/source/designs/detail/005/005683.json b/source/designs/detail/005/005683.json new file mode 100644 index 0000000000000000000000000000000000000000..48a6dd4d33e0e5c889cd0452ac6673f264cb1d53 --- /dev/null +++ b/source/designs/detail/005/005683.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eee6b7426f444bb731d34ccc6a44999c4ff253886ced4ddc25ef57368ee1bfa +size 1553 diff --git a/source/designs/detail/005/005684.json b/source/designs/detail/005/005684.json new file mode 100644 index 0000000000000000000000000000000000000000..8e0f257c497df842296613c798dc94a0a281a865 --- /dev/null +++ b/source/designs/detail/005/005684.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52a99c4459888f52c5aa518c1009ef1f8f224102e06a258e5e6ad73a9bb2ffb +size 1353 diff --git a/source/designs/detail/005/005685.json b/source/designs/detail/005/005685.json new file mode 100644 index 0000000000000000000000000000000000000000..223330d6f4c0f0712b31392e7f702fe2e50719a8 --- /dev/null +++ b/source/designs/detail/005/005685.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998e38d602426729c4c4f1f2c8c9734e99f8a1024d88daf4520e1b9f2dc95528 +size 1427 diff --git a/source/designs/detail/005/005686.json b/source/designs/detail/005/005686.json new file mode 100644 index 0000000000000000000000000000000000000000..225415848eb5ec8eb862352756bdeb57bf50fe37 --- /dev/null +++ b/source/designs/detail/005/005686.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1d6dbbf986a9624a11552c6df83e4dde6148cc663d1ec6ac199ababc78c010 +size 1519 diff --git a/source/designs/detail/005/005687.json b/source/designs/detail/005/005687.json new file mode 100644 index 0000000000000000000000000000000000000000..7e8189058120d104ca9254e8b00c8509c1f94bb7 --- /dev/null +++ b/source/designs/detail/005/005687.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd8077ee2324052ca1a019a3a3c2da945fc4e1f0db0bfc7a933e04edd598c07 +size 1133 diff --git a/source/designs/detail/005/005688.json b/source/designs/detail/005/005688.json new file mode 100644 index 0000000000000000000000000000000000000000..b81d304e315d8d2fcbf8b7af71d16ae7f9168c86 --- /dev/null +++ b/source/designs/detail/005/005688.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d35d7808f1f17c832c118874719aad7280a57ae5ea4eadecbac29266e5ca243 +size 1504 diff --git a/source/designs/detail/005/005689.json b/source/designs/detail/005/005689.json new file mode 100644 index 0000000000000000000000000000000000000000..65ab9a07c0790c34715c351dcebacc0e133c5e24 --- /dev/null +++ b/source/designs/detail/005/005689.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b444aab90dc7e8862441482ed90b2e83bc6de0c419f4540cee1861eb156d7564 +size 1962 diff --git a/source/designs/detail/005/005690.json b/source/designs/detail/005/005690.json new file mode 100644 index 0000000000000000000000000000000000000000..adf224cf05434ce6ac95196d54865bbd40e90ddb --- /dev/null +++ b/source/designs/detail/005/005690.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abdeded529c77111fe3279928dcc40798a69df3792db5006a53f4462fc68b94 +size 1717 diff --git a/source/designs/detail/005/005691.json b/source/designs/detail/005/005691.json new file mode 100644 index 0000000000000000000000000000000000000000..ff59be3667fe6542de8a60d576e348a2f5cf3db4 --- /dev/null +++ b/source/designs/detail/005/005691.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1824cda70da57400bcc510d899175ed6ddde15f12062e5da434d3a4eb3a1af9 +size 1332 diff --git a/source/designs/detail/005/005692.json b/source/designs/detail/005/005692.json new file mode 100644 index 0000000000000000000000000000000000000000..6a252c290b2bd568a001eb3e697f55dd3624f326 --- /dev/null +++ b/source/designs/detail/005/005692.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc968c25b0e2788836d84826de1cb45a8b0fa52a73bac19309dd0077f179b0c8 +size 1611 diff --git a/source/designs/detail/005/005693.json b/source/designs/detail/005/005693.json new file mode 100644 index 0000000000000000000000000000000000000000..b1a3ba3db54650fdec4444e1fa1439792c58057a --- /dev/null +++ b/source/designs/detail/005/005693.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e2c08d1a794bdb8e2058bf50cb6ddebfb18603c37e45fa10cce273f7191eda +size 1634 diff --git a/source/designs/detail/005/005694.json b/source/designs/detail/005/005694.json new file mode 100644 index 0000000000000000000000000000000000000000..29e4ed77c1bbad876e4cf7144794b8802fb0d26f --- /dev/null +++ b/source/designs/detail/005/005694.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c12a98f0a8af60b290b60f2a33fa8d7b30c5003ba5bf2142375ce22c98a1c1 +size 1361 diff --git a/source/designs/detail/005/005695.json b/source/designs/detail/005/005695.json new file mode 100644 index 0000000000000000000000000000000000000000..dabc1975864c78d8273371b55fa75b777540e08d --- /dev/null +++ b/source/designs/detail/005/005695.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bacb181acc93fedd3747514a66fa5906ec3f8f43ee9edba9e34f34127915112b +size 1264 diff --git a/source/designs/detail/005/005696.json b/source/designs/detail/005/005696.json new file mode 100644 index 0000000000000000000000000000000000000000..05cc3bd37061e64bbde08f030819c4c8fa93b71c --- /dev/null +++ b/source/designs/detail/005/005696.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe509a1ef130db7aac3a99467ab496115b9b47322a25e261dc565e7c2b5a7d3 +size 1229 diff --git a/source/designs/detail/005/005697.json b/source/designs/detail/005/005697.json new file mode 100644 index 0000000000000000000000000000000000000000..98d830f888495bcfb315c1df40f650906e80c038 --- /dev/null +++ b/source/designs/detail/005/005697.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5fae69613415ee477540037600c9a30ae8c016a3df541c6f2730c63f282b4b +size 1843 diff --git a/source/designs/detail/005/005698.json b/source/designs/detail/005/005698.json new file mode 100644 index 0000000000000000000000000000000000000000..c51d1eac538313eb0e9bd95456b0422a11899f00 --- /dev/null +++ b/source/designs/detail/005/005698.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6857060d7897403fc9ddec5aa7fe126ef25a0a24eee3f206c801f3f9b8d03b0 +size 1473 diff --git a/source/designs/detail/005/005699.json b/source/designs/detail/005/005699.json new file mode 100644 index 0000000000000000000000000000000000000000..1b201c142f0a69d9ea8fcde8c1f43d265d8fc796 --- /dev/null +++ b/source/designs/detail/005/005699.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9726c4c9775ebb7eb40778b6fe8a0b7be54ab3097e7d2d18c1c51ae655fc25ca +size 1592 diff --git a/source/designs/detail/005/005700.json b/source/designs/detail/005/005700.json new file mode 100644 index 0000000000000000000000000000000000000000..e9733e1ca46230117d268511b4b33d3dd09fece5 --- /dev/null +++ b/source/designs/detail/005/005700.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a24dc1f42a6761794f9736ec9b422cfa766b50ceda24d64a1c6918366b4e25 +size 1196 diff --git a/source/designs/detail/005/005701.json b/source/designs/detail/005/005701.json new file mode 100644 index 0000000000000000000000000000000000000000..cb11b31d4115b4f196c2f2ec3e08666d8f492aa3 --- /dev/null +++ b/source/designs/detail/005/005701.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8a8e158e9c7bcaf837b8e2e38828fed65dff78d8316da8762982bdb64d03e8 +size 1208 diff --git a/source/designs/detail/005/005702.json b/source/designs/detail/005/005702.json new file mode 100644 index 0000000000000000000000000000000000000000..400e5834c911e9789720cb64ac338fcf86fba0c5 --- /dev/null +++ b/source/designs/detail/005/005702.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889da3aec49472a8ec3abee73a8e10f0e762e1f29974e78e9a120b5dcc836fba +size 2337 diff --git a/source/designs/detail/005/005703.json b/source/designs/detail/005/005703.json new file mode 100644 index 0000000000000000000000000000000000000000..9ddd87f5274d073ca55991860d2d7da1d46af2dc --- /dev/null +++ b/source/designs/detail/005/005703.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b017b1aa877b99c99c81abb3af6d48b9f70f0bee453258f601292b48924ba913 +size 1683 diff --git a/source/designs/detail/005/005704.json b/source/designs/detail/005/005704.json new file mode 100644 index 0000000000000000000000000000000000000000..764ee6b6a36ca0cccf7c4f45312c36797fffe03c --- /dev/null +++ b/source/designs/detail/005/005704.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ef4ce1bf2b3cfd51033e2bdbacd3ffdb6a736df6ab1664eb14333d37a6f010e +size 1146 diff --git a/source/designs/detail/005/005705.json b/source/designs/detail/005/005705.json new file mode 100644 index 0000000000000000000000000000000000000000..d10f3f06d38636671c80d2a0728c7a1f3ba0c329 --- /dev/null +++ b/source/designs/detail/005/005705.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8a07eebd776fafc9cf10e0de114142319260c327f2f4c8d8560bc33f6fbc675 +size 1560 diff --git a/source/designs/detail/005/005706.json b/source/designs/detail/005/005706.json new file mode 100644 index 0000000000000000000000000000000000000000..471e30d4de55e3064fbf9c0c2b1643784fbe1492 --- /dev/null +++ b/source/designs/detail/005/005706.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e62e4dc48e63c0570b42a26879012a82e4f42b3cd673b04ff296b1349dabc0e5 +size 2157 diff --git a/source/designs/detail/005/005707.json b/source/designs/detail/005/005707.json new file mode 100644 index 0000000000000000000000000000000000000000..34361c20c55d993736ee70cf50a7f7b09a701ce6 --- /dev/null +++ b/source/designs/detail/005/005707.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff769da0a34227696be2f57d16c75d47bceb2575726fbd5416b5d7d453e364bd +size 1964 diff --git a/source/designs/detail/005/005708.json b/source/designs/detail/005/005708.json new file mode 100644 index 0000000000000000000000000000000000000000..96f81af52cce25943e0622209435faee3c3be870 --- /dev/null +++ b/source/designs/detail/005/005708.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74aeb0ae3a52ecd0450c81af31902402515c4cc908303509346ec27c500bc7b2 +size 1547 diff --git a/source/designs/detail/005/005709.json b/source/designs/detail/005/005709.json new file mode 100644 index 0000000000000000000000000000000000000000..340b546ee135070dabff518f65e5e2b2c414fb08 --- /dev/null +++ b/source/designs/detail/005/005709.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a88cc3a05ff0596d4442b891452c195b779245a4a1aa4ae513b3e5532e81647 +size 1640 diff --git a/source/designs/detail/005/005710.json b/source/designs/detail/005/005710.json new file mode 100644 index 0000000000000000000000000000000000000000..9715ff89910b385abae7b3602b0e929700d748fb --- /dev/null +++ b/source/designs/detail/005/005710.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c2d2460f2728c86805bc9caa4aa2046655a5be3a3837b4885609f870bee349 +size 1190 diff --git a/source/designs/detail/005/005711.json b/source/designs/detail/005/005711.json new file mode 100644 index 0000000000000000000000000000000000000000..6c006431d4e4398fcb06dfed1a66cddcab4e6c8c --- /dev/null +++ b/source/designs/detail/005/005711.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e386c2a9d2e1d11a07a66f114ee1228f66fbe4edb9b052ab29f0184e152d783f +size 1378 diff --git a/source/designs/detail/005/005712.json b/source/designs/detail/005/005712.json new file mode 100644 index 0000000000000000000000000000000000000000..b0ad6ba57818f1e9c7ccc63f85963e3216aa3aab --- /dev/null +++ b/source/designs/detail/005/005712.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c8afbd99c50edfcdd9693e4b1b1dea26a142363069e36614184c893d642a088 +size 1417 diff --git a/source/designs/detail/005/005713.json b/source/designs/detail/005/005713.json new file mode 100644 index 0000000000000000000000000000000000000000..d2358b81a2b01442a84d1a99efdc888a14aea269 --- /dev/null +++ b/source/designs/detail/005/005713.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ca8f01146e86bd4b3ca506b819557a5be658aa2bd4c119b3b6a8b13100883e +size 1422 diff --git a/source/designs/detail/005/005714.json b/source/designs/detail/005/005714.json new file mode 100644 index 0000000000000000000000000000000000000000..01229ae34650a312f50543f9bb4eebe356fca703 --- /dev/null +++ b/source/designs/detail/005/005714.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f6522b38439f7736c928830d842898edd7d3252efc71ced28de0b45d63b649 +size 1752 diff --git a/source/designs/detail/005/005715.json b/source/designs/detail/005/005715.json new file mode 100644 index 0000000000000000000000000000000000000000..86d52301f41dd44169e97b478d51b741693d657e --- /dev/null +++ b/source/designs/detail/005/005715.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1360f2f1f3a2399c4d0ef945b2d49d04ca0b6190e72eb9dba20d5ff26c90e804 +size 1361 diff --git a/source/designs/detail/005/005716.json b/source/designs/detail/005/005716.json new file mode 100644 index 0000000000000000000000000000000000000000..dce666a4e3cc9934077e92be20e72c81ae47155c --- /dev/null +++ b/source/designs/detail/005/005716.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b0c8d1b23b723bea2e773d4dd0720f0b85647a30a65d6c07b73edf5c618e1a +size 1864 diff --git a/source/designs/detail/005/005717.json b/source/designs/detail/005/005717.json new file mode 100644 index 0000000000000000000000000000000000000000..d02e1413801d202cfa9436389d75c41a06ad4090 --- /dev/null +++ b/source/designs/detail/005/005717.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e291fccc063d3eacad8b9787d8eff406e287bb2ff03cab9217a33963664496ce +size 1890 diff --git a/source/designs/detail/005/005718.json b/source/designs/detail/005/005718.json new file mode 100644 index 0000000000000000000000000000000000000000..ce18e247081e643fa925efd1e4492bcf9e26f528 --- /dev/null +++ b/source/designs/detail/005/005718.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8b48a41e194eaa11f1455c52f802680274b7e4075f63719982ea3f92ca39c5 +size 1736 diff --git a/source/designs/detail/005/005719.json b/source/designs/detail/005/005719.json new file mode 100644 index 0000000000000000000000000000000000000000..2f2bbca0730204a42cc8fa29a2bed80daf051aff --- /dev/null +++ b/source/designs/detail/005/005719.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8b035d1e6b2cc12bce2383a184c44b4c972a73f7e646df2d6362cef1f13b24 +size 1280 diff --git a/source/designs/detail/005/005720.json b/source/designs/detail/005/005720.json new file mode 100644 index 0000000000000000000000000000000000000000..3f78e4946c28a79672e2edeba6c62af63108c1c3 --- /dev/null +++ b/source/designs/detail/005/005720.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36aba90bac069c2a80b7c4393191c310c837980635edc6cccc53fff15347b505 +size 1281 diff --git a/source/designs/detail/005/005721.json b/source/designs/detail/005/005721.json new file mode 100644 index 0000000000000000000000000000000000000000..063e5d7bec603e91d1ce60d7b8fac46d06063330 --- /dev/null +++ b/source/designs/detail/005/005721.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff471ebf896b29ee4251342b554f321cb30e227fdc5b84cc4c0335e81a98dcf1 +size 2887 diff --git a/source/designs/detail/005/005722.json b/source/designs/detail/005/005722.json new file mode 100644 index 0000000000000000000000000000000000000000..f927b6a59dd47ec6b31e8d2f4ac1c04ad438a891 --- /dev/null +++ b/source/designs/detail/005/005722.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9afb598e25fc11314ed4f550fd8fcf7ba850a476d01c9421cc018481522241 +size 1818 diff --git a/source/designs/detail/005/005723.json b/source/designs/detail/005/005723.json new file mode 100644 index 0000000000000000000000000000000000000000..c5b585aba4fdb257b5e8f0615f9e60a4f4f7a67e --- /dev/null +++ b/source/designs/detail/005/005723.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c68bf5d8b3fb6c2f36379b3ea38f52b29ea9eebedd5e61105d9338bc13ff6e36 +size 1208 diff --git a/source/designs/detail/005/005724.json b/source/designs/detail/005/005724.json new file mode 100644 index 0000000000000000000000000000000000000000..311fe1280e25d4c5eea0793857d7709944020403 --- /dev/null +++ b/source/designs/detail/005/005724.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c71a280b38621bb5e0aeeffbbcd9cd793725da7e72a7c54a7e2617fe4964a4b +size 1527 diff --git a/source/designs/detail/005/005725.json b/source/designs/detail/005/005725.json new file mode 100644 index 0000000000000000000000000000000000000000..3875e73436ead99e969f891b75858e1920462443 --- /dev/null +++ b/source/designs/detail/005/005725.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a40e360c5409869a67af071f1e647f6ac1ada8500fb7afde4f6bfdb0137a65 +size 1626 diff --git a/source/designs/detail/005/005726.json b/source/designs/detail/005/005726.json new file mode 100644 index 0000000000000000000000000000000000000000..da9fd3f4bdc17af8fcd9074cada696f632a0a1ce --- /dev/null +++ b/source/designs/detail/005/005726.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3f092085105b846dd0b550c5a0de6f09516c3f18c691f96b894f18eb663f09 +size 1530 diff --git a/source/designs/detail/005/005727.json b/source/designs/detail/005/005727.json new file mode 100644 index 0000000000000000000000000000000000000000..03d35bfc4f74d977e60f2a9af4ed4b4373389688 --- /dev/null +++ b/source/designs/detail/005/005727.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a95166a24b7094e1a27c57042131e7e6eab9489d4d4e33cc499e6f45964e972e +size 1163 diff --git a/source/designs/detail/005/005728.json b/source/designs/detail/005/005728.json new file mode 100644 index 0000000000000000000000000000000000000000..47fe916dccc97668a4400351dd0df063e8604d56 --- /dev/null +++ b/source/designs/detail/005/005728.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3efb23b9ed1560f3b824403409e9c923ea927280cca4a7bb75cf86aef8fd22 +size 1272 diff --git a/source/designs/detail/005/005729.json b/source/designs/detail/005/005729.json new file mode 100644 index 0000000000000000000000000000000000000000..826b61a454cebf9af44801c87cab0bc4a6c1fa1d --- /dev/null +++ b/source/designs/detail/005/005729.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9416a4e60066e6a4f1339f37caa3045a33330d409cd2360a52e6a7facc59ee86 +size 1947 diff --git a/source/designs/detail/005/005730.json b/source/designs/detail/005/005730.json new file mode 100644 index 0000000000000000000000000000000000000000..8cf742937f0d0a7b2256246d5edee8fa77f6ecd1 --- /dev/null +++ b/source/designs/detail/005/005730.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b663bb3cbeca3aa8efdbe2c1bce457727e8e5672172a61fb57f4e84dca5fa4e3 +size 1584 diff --git a/source/designs/detail/005/005731.json b/source/designs/detail/005/005731.json new file mode 100644 index 0000000000000000000000000000000000000000..8f261ab4c573713700094dbe94c7641e0886ded6 --- /dev/null +++ b/source/designs/detail/005/005731.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8321fed9692a8f3d67b6837f0ce38d9cb079bfc50ac0154e7c0addeff0584388 +size 1820 diff --git a/source/designs/detail/005/005732.json b/source/designs/detail/005/005732.json new file mode 100644 index 0000000000000000000000000000000000000000..77551cb4f803aab04cdde2fbd8a1fa6e928c81e7 --- /dev/null +++ b/source/designs/detail/005/005732.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d40ed93465ea1291499ba04718ee3a7b1101f9fb59ebbb8eb2bdd8af1e90e4c +size 1221 diff --git a/source/designs/detail/005/005733.json b/source/designs/detail/005/005733.json new file mode 100644 index 0000000000000000000000000000000000000000..0d12afa25ae9e2c2c5718fde005d4d9d76b2e1f0 --- /dev/null +++ b/source/designs/detail/005/005733.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:523ff769c496c4109b3375c6a3909d3f3abd4598ca12238b535b0d8f4050ab36 +size 1400 diff --git a/source/designs/detail/005/005734.json b/source/designs/detail/005/005734.json new file mode 100644 index 0000000000000000000000000000000000000000..4f72ad32202f20d8adfb7e041bbab899a693f4f1 --- /dev/null +++ b/source/designs/detail/005/005734.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65214564874ff151035c56d4c113a1d928f93167b3f7c0da6d86daf3d6dfc97b +size 1987 diff --git a/source/designs/detail/005/005735.json b/source/designs/detail/005/005735.json new file mode 100644 index 0000000000000000000000000000000000000000..01f97653b4e30aabacba7725815ad27f974f5d0d --- /dev/null +++ b/source/designs/detail/005/005735.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8d0281ecb7f8b207ff7ffaf1c98496f51a016767045de6a9096146756ae1152 +size 1212 diff --git a/source/designs/detail/005/005736.json b/source/designs/detail/005/005736.json new file mode 100644 index 0000000000000000000000000000000000000000..c9658b5a853e827fabd10126346a5f55fbb05cb2 --- /dev/null +++ b/source/designs/detail/005/005736.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966006fe303d9b74d04a7c228dc1fc60f948694c310fce07cacffdc6ea8840c7 +size 1462 diff --git a/source/designs/detail/005/005737.json b/source/designs/detail/005/005737.json new file mode 100644 index 0000000000000000000000000000000000000000..9ec4bf6a562735f54f865e78a38eb99e75b61163 --- /dev/null +++ b/source/designs/detail/005/005737.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b37d26fc692c31a9485935913192f7a06b315bacd01eba2465f1e6996382498 +size 1711 diff --git a/source/designs/detail/005/005738.json b/source/designs/detail/005/005738.json new file mode 100644 index 0000000000000000000000000000000000000000..ea1daa9a9dd2b352dc85b0eb7601de693baf0aa0 --- /dev/null +++ b/source/designs/detail/005/005738.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85add54f825acdf417ca0b480567e5dcdb6a91965358b34d400a8e8b4b1ec02a +size 1670 diff --git a/source/designs/detail/005/005739.json b/source/designs/detail/005/005739.json new file mode 100644 index 0000000000000000000000000000000000000000..4c5563b25e88084f13327033b49e287cae73c9a4 --- /dev/null +++ b/source/designs/detail/005/005739.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed0a9f38ce6ddc0f4916a2e8c3e19cc8b177f6a9d9899dfda418ba4a1a6b5917 +size 2163 diff --git a/source/designs/detail/005/005740.json b/source/designs/detail/005/005740.json new file mode 100644 index 0000000000000000000000000000000000000000..8403f836a865b7bed7df915a3104c39412dfdecd --- /dev/null +++ b/source/designs/detail/005/005740.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:648436d1145529efb7bcfdffcb7c52ba3612d2277be5556a0271f53a7ff6fc4a +size 1312 diff --git a/source/designs/detail/005/005741.json b/source/designs/detail/005/005741.json new file mode 100644 index 0000000000000000000000000000000000000000..2e71caba43956db60f3c82ae2488f6b9a996d209 --- /dev/null +++ b/source/designs/detail/005/005741.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d06a8b833db82d1036ab5ee40e5ec4aa019910c8c3e08059b74224caa8b9e5fc +size 1229 diff --git a/source/designs/detail/005/005742.json b/source/designs/detail/005/005742.json new file mode 100644 index 0000000000000000000000000000000000000000..8a7a4205b59fe7975f2bf31a098c50686b103a69 --- /dev/null +++ b/source/designs/detail/005/005742.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65dd3102800c64a3fac38205fede4ef479ab72d958f8a4ab9710c882d46b7909 +size 2115 diff --git a/source/designs/detail/005/005743.json b/source/designs/detail/005/005743.json new file mode 100644 index 0000000000000000000000000000000000000000..5a8235aa0d29aea33e6fe4dda037fe117c4cc8fd --- /dev/null +++ b/source/designs/detail/005/005743.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974340bb6be916069ce9f5518a7dd74df1d9193c544351b57b38f7788a141f97 +size 1780 diff --git a/source/designs/detail/005/005744.json b/source/designs/detail/005/005744.json new file mode 100644 index 0000000000000000000000000000000000000000..1cde184a598e5c19de7d415ba05b4f6b00378691 --- /dev/null +++ b/source/designs/detail/005/005744.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4dd8644906ef2c67220dd641220dd70baafa840a253451aaf7886f4591fa7d +size 1542 diff --git a/source/designs/detail/005/005745.json b/source/designs/detail/005/005745.json new file mode 100644 index 0000000000000000000000000000000000000000..2a3c188d7574329b86aacab5164b45299e18e3d4 --- /dev/null +++ b/source/designs/detail/005/005745.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b429334aabf190e738a07982dcdba09906f1001055d9feb474035bf8be8f818 +size 1318 diff --git a/source/designs/detail/005/005746.json b/source/designs/detail/005/005746.json new file mode 100644 index 0000000000000000000000000000000000000000..0c2d703f092c9d2d47a09feea0903528e2f6c22a --- /dev/null +++ b/source/designs/detail/005/005746.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d458d366ad35c1d6b352959289a37daa6ed336f12070f08c6921433b489116c0 +size 1395 diff --git a/source/designs/detail/005/005747.json b/source/designs/detail/005/005747.json new file mode 100644 index 0000000000000000000000000000000000000000..5ace1b3300dd92a637cd339f2b4fda0a5acfad2c --- /dev/null +++ b/source/designs/detail/005/005747.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c701fba7cfad3a941b90c63329cc658784b6b4282b91027a0fb6c60d12da2bcb +size 1679 diff --git a/source/designs/detail/005/005748.json b/source/designs/detail/005/005748.json new file mode 100644 index 0000000000000000000000000000000000000000..6c0488889d18dc8360e7e65a5b0de338b992fa3e --- /dev/null +++ b/source/designs/detail/005/005748.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0dab306149297b55dc0081526b4dcaeb1446ac70dd189c227ef7fbf89a91c40 +size 1377 diff --git a/source/designs/detail/005/005749.json b/source/designs/detail/005/005749.json new file mode 100644 index 0000000000000000000000000000000000000000..922519732b7b50aa3a4068568f7bed01f116f552 --- /dev/null +++ b/source/designs/detail/005/005749.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65a33e06f9be3c25a799888c2bffb3d094677e2dc2877049194b216315a0d3e +size 1185 diff --git a/source/designs/detail/005/005750.json b/source/designs/detail/005/005750.json new file mode 100644 index 0000000000000000000000000000000000000000..9c3d58a5c1f10750c5e316fd506a3102a4e9ad3c --- /dev/null +++ b/source/designs/detail/005/005750.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a51ea6f0f14561937e1aead84750de16785822c3fd4904fdfd7aa9025382811 +size 1079 diff --git a/source/designs/detail/005/005751.json b/source/designs/detail/005/005751.json new file mode 100644 index 0000000000000000000000000000000000000000..2959b074af2abf64041176709ef4730f9a755228 --- /dev/null +++ b/source/designs/detail/005/005751.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad9cc5fd50f824f814594809bf43c3cde79dd6e40075ae7a5462de92568ce71 +size 1346 diff --git a/source/designs/detail/005/005752.json b/source/designs/detail/005/005752.json new file mode 100644 index 0000000000000000000000000000000000000000..b93d1a414dfd64c6742622c31b2b489286978540 --- /dev/null +++ b/source/designs/detail/005/005752.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e20bc4ca60dba780037d08ce25f557de7d84237fe58531188373e82c48656d +size 1037 diff --git a/source/designs/detail/005/005753.json b/source/designs/detail/005/005753.json new file mode 100644 index 0000000000000000000000000000000000000000..287b756482fa66a9d88ce37e42c542c3fffaeb16 --- /dev/null +++ b/source/designs/detail/005/005753.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18543505838b62723931f613c3a32a887c9bc543032e7d32f14660961a3d2ac1 +size 1278 diff --git a/source/designs/detail/005/005754.json b/source/designs/detail/005/005754.json new file mode 100644 index 0000000000000000000000000000000000000000..93be97e3bc7350b9453dfdee8d89b65675241e63 --- /dev/null +++ b/source/designs/detail/005/005754.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74044d13f85607ce9749e18b4bbeb07aa84ac8b9c23b482767e0d5183bead993 +size 1508 diff --git a/source/designs/detail/005/005755.json b/source/designs/detail/005/005755.json new file mode 100644 index 0000000000000000000000000000000000000000..74ad38563ea7a9f6f562fd74beb7dc6040f8c3ad --- /dev/null +++ b/source/designs/detail/005/005755.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72deffeb5a2abd042ba918763246acaad45711ac1b44daf1b58eb6082943cfda +size 2791 diff --git a/source/designs/detail/005/005756.json b/source/designs/detail/005/005756.json new file mode 100644 index 0000000000000000000000000000000000000000..75b4632347ea4c9a790eac2a7bb9f7b3b9fde236 --- /dev/null +++ b/source/designs/detail/005/005756.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3895e05765565d8b3b79958b23d7a1362c31f17322f820498a1802f809000ed6 +size 2040 diff --git a/source/designs/detail/005/005757.json b/source/designs/detail/005/005757.json new file mode 100644 index 0000000000000000000000000000000000000000..ded2c8d91ba91f8f7074b55a5fbc9dc405321927 --- /dev/null +++ b/source/designs/detail/005/005757.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed172e1009f4e0720a17453bff6cce0007c139c5bdaf300ccdbcc231a4a90cac +size 1443 diff --git a/source/designs/detail/005/005758.json b/source/designs/detail/005/005758.json new file mode 100644 index 0000000000000000000000000000000000000000..f813635535aa6895f23a7f4f2ab5fc6345389c73 --- /dev/null +++ b/source/designs/detail/005/005758.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07db29ddf740912a10fb4e73cb9ae7aa13f32006acda7b3e4d763afbcbe177b +size 1680 diff --git a/source/designs/detail/005/005759.json b/source/designs/detail/005/005759.json new file mode 100644 index 0000000000000000000000000000000000000000..d6eec51a69c7b84fdeab3f128ed19b542b7b003c --- /dev/null +++ b/source/designs/detail/005/005759.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c892ba72e06d75be30a389e2056a2b514223d93d1bed69c5100bc2d074ac9530 +size 2369 diff --git a/source/designs/detail/005/005760.json b/source/designs/detail/005/005760.json new file mode 100644 index 0000000000000000000000000000000000000000..0c8674accf62218e763d40dcd76caf5a0a719629 --- /dev/null +++ b/source/designs/detail/005/005760.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e83036701c08253cce8e9f5ee9fac36e4e03ba204e4462f85069b3b6a3aea6 +size 1013 diff --git a/source/designs/detail/005/005761.json b/source/designs/detail/005/005761.json new file mode 100644 index 0000000000000000000000000000000000000000..a8421efc9258f3947bfad0655738b414cf18fd97 --- /dev/null +++ b/source/designs/detail/005/005761.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e436d1fda34956bc02b0c837313508856d4be64b56fae349d95bb11d5695de +size 3005 diff --git a/source/designs/detail/005/005762.json b/source/designs/detail/005/005762.json new file mode 100644 index 0000000000000000000000000000000000000000..05beed643abf624e2115d35ba1c53d4d9454c8eb --- /dev/null +++ b/source/designs/detail/005/005762.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b20e8db28f041403692ca41e30d4a39d9c430cfda42d4a51603c5616dc60b22 +size 1996 diff --git a/source/designs/detail/005/005763.json b/source/designs/detail/005/005763.json new file mode 100644 index 0000000000000000000000000000000000000000..1806e36bd2e28217afb096134c250748137448cb --- /dev/null +++ b/source/designs/detail/005/005763.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cca92185fe6e1979548910eb6e5467eff7d878feeef726d79927d078ce20a79 +size 2773 diff --git a/source/designs/detail/005/005764.json b/source/designs/detail/005/005764.json new file mode 100644 index 0000000000000000000000000000000000000000..ca45f7ec887fc2f02e0269ef8fd9484f5fd28cd6 --- /dev/null +++ b/source/designs/detail/005/005764.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa57d3d8b438f8172c0e7929a4e17559216ce3e621cfb907787a9bb28e3d1938 +size 1579 diff --git a/source/designs/detail/005/005765.json b/source/designs/detail/005/005765.json new file mode 100644 index 0000000000000000000000000000000000000000..151a01b0737fb7fce8f6ecaa54342936246766e5 --- /dev/null +++ b/source/designs/detail/005/005765.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de67c93eb68f4392b7e05cfe6a07d4cc01045f266583c5b0de5d3f241a6e11b +size 1522 diff --git a/source/designs/detail/005/005766.json b/source/designs/detail/005/005766.json new file mode 100644 index 0000000000000000000000000000000000000000..7be1ed940abb61ce2b5659d55cf1474b9dbcdaad --- /dev/null +++ b/source/designs/detail/005/005766.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6232a8451e41fbed9c79f06adfb35865681d7f6c0c22a33b8840ccc86cfb664 +size 1579 diff --git a/source/designs/detail/005/005767.json b/source/designs/detail/005/005767.json new file mode 100644 index 0000000000000000000000000000000000000000..e1f4a9da25b21e3c6403ecf0bdd410d6fcc1a9a0 --- /dev/null +++ b/source/designs/detail/005/005767.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e411727f98142b6a829f6de7fc6cf03972b4baf226bec33a414b341be0e4d5 +size 1554 diff --git a/source/designs/detail/005/005768.json b/source/designs/detail/005/005768.json new file mode 100644 index 0000000000000000000000000000000000000000..aaa0880418d66eb4d451eb0d71e03ba6964b0ba1 --- /dev/null +++ b/source/designs/detail/005/005768.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4bddac1472529266733661a7c981adce39304096edf63d1e96eb86265258dd +size 1391 diff --git a/source/designs/detail/005/005769.json b/source/designs/detail/005/005769.json new file mode 100644 index 0000000000000000000000000000000000000000..9ece02b49a8c7805f6d9f75dadc8eb8688db3ad3 --- /dev/null +++ b/source/designs/detail/005/005769.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c1b5e94be602b411e0f99c4ce4f975b0438d8387f05ad3ef9d0490c596450d +size 1605 diff --git a/source/designs/detail/005/005771.json b/source/designs/detail/005/005771.json new file mode 100644 index 0000000000000000000000000000000000000000..d22cb7e9156e771099f05aaf49992df9d860cf69 --- /dev/null +++ b/source/designs/detail/005/005771.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7915086631a376b9fea8774f96215a38dc990199d292d0b9c971bdb325214f +size 1622 diff --git a/source/designs/detail/005/005772.json b/source/designs/detail/005/005772.json new file mode 100644 index 0000000000000000000000000000000000000000..994e4f7206bc4208f2f81aadc697db87fd0d5c5e --- /dev/null +++ b/source/designs/detail/005/005772.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e60b77fe1686a8cd526608e79b250a91a60e7bcc0bc8c6ec322e5be6fb0b809 +size 1409 diff --git a/source/designs/detail/005/005773.json b/source/designs/detail/005/005773.json new file mode 100644 index 0000000000000000000000000000000000000000..627362c1e1fc55d33c185e4e815f8848d2aa7655 --- /dev/null +++ b/source/designs/detail/005/005773.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b588b968ef08404988ce67baf95707870942e5c22b521259802251b4363c3d44 +size 988 diff --git a/source/designs/detail/005/005774.json b/source/designs/detail/005/005774.json new file mode 100644 index 0000000000000000000000000000000000000000..655161913d8621f4d8acaec959d9a62e8eb65969 --- /dev/null +++ b/source/designs/detail/005/005774.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5161d0bc431c0c8ff341313a9330d2b7ff386f348d239896c940b9a843cc59 +size 1810 diff --git a/source/designs/detail/005/005775.json b/source/designs/detail/005/005775.json new file mode 100644 index 0000000000000000000000000000000000000000..6154dfa9b7b795b08c97b24c3e067c77162ebfb9 --- /dev/null +++ b/source/designs/detail/005/005775.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb9ba85009d7f44088c8c2db4c4ac1bf5ac3572fafa8ae5fc460f267ddef75c +size 1723 diff --git a/source/designs/detail/005/005776.json b/source/designs/detail/005/005776.json new file mode 100644 index 0000000000000000000000000000000000000000..9b154bb9a30dd229b5b2c32ea2e3cff3bf95ffc0 --- /dev/null +++ b/source/designs/detail/005/005776.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2650a8c0818d3e92dea76adc48fc8629a8c538c3493723b14f1a03fe6d74dc83 +size 1688 diff --git a/source/designs/detail/005/005777.json b/source/designs/detail/005/005777.json new file mode 100644 index 0000000000000000000000000000000000000000..efa181846d3775f237927d27e425b7644817d013 --- /dev/null +++ b/source/designs/detail/005/005777.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d0610bef47b6f9e295149e1b75afc671ea076835d190edf1d7886628120990 +size 3791 diff --git a/source/designs/detail/005/005778.json b/source/designs/detail/005/005778.json new file mode 100644 index 0000000000000000000000000000000000000000..a59b3a2e1162d2d7cc549a3c74dc6edd9371a073 --- /dev/null +++ b/source/designs/detail/005/005778.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1888ea21ec7ecfe35e7cf9d5664372343e161889926b42a80840f23c0bf614 +size 4213 diff --git a/source/designs/detail/005/005779.json b/source/designs/detail/005/005779.json new file mode 100644 index 0000000000000000000000000000000000000000..80e260a2c265cd86d31fe7853a8ffdf70eac7d61 --- /dev/null +++ b/source/designs/detail/005/005779.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffccac701b202a22d782e90458de3f9185b2ff12196ddff0c779a953587d86aa +size 1148 diff --git a/source/designs/detail/005/005780.json b/source/designs/detail/005/005780.json new file mode 100644 index 0000000000000000000000000000000000000000..ca2da5f7e8d4ef416b3969d4122ca2cb3d465d3a --- /dev/null +++ b/source/designs/detail/005/005780.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b11793401819f255d7ba1197de2de62ecdcd063a4f283a2e8f9fdaf59e61ec0 +size 1936 diff --git a/source/designs/detail/005/005781.json b/source/designs/detail/005/005781.json new file mode 100644 index 0000000000000000000000000000000000000000..aa7b4957d78621a80bb38b2bd6562c04229cecaf --- /dev/null +++ b/source/designs/detail/005/005781.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b40c9c2c5c7f0d9b49b832b9ed04647c5732784a8e5cecf1bdee2ed82308e259 +size 1066 diff --git a/source/designs/detail/005/005783.json b/source/designs/detail/005/005783.json new file mode 100644 index 0000000000000000000000000000000000000000..7a9d1d079d74b0bf408b8b46bd8c8672a6a330d9 --- /dev/null +++ b/source/designs/detail/005/005783.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8d276bb682f396170d7747e8291569414f96d2c0429efa965b9ed1043af874 +size 2510 diff --git a/source/designs/detail/005/005784.json b/source/designs/detail/005/005784.json new file mode 100644 index 0000000000000000000000000000000000000000..32d02a45254068561ec2a06fc6e68793454304d8 --- /dev/null +++ b/source/designs/detail/005/005784.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fafbf4bc118185876231d37b26a582098cadbf5bc36abbcdb8d4bec36f6316f +size 2404 diff --git a/source/designs/detail/005/005785.json b/source/designs/detail/005/005785.json new file mode 100644 index 0000000000000000000000000000000000000000..1c83039c48cb545cfce6957752889a5c7e9b36e6 --- /dev/null +++ b/source/designs/detail/005/005785.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cac750ed172eb3d9f232049b687696d3631dcfeab6181b293dff8cc62463d49 +size 1711 diff --git a/source/designs/detail/005/005786.json b/source/designs/detail/005/005786.json new file mode 100644 index 0000000000000000000000000000000000000000..90578db32c56dedd3036c41c8044b4ec081bc030 --- /dev/null +++ b/source/designs/detail/005/005786.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7555de9e48482b4a10e2065403aa317d7798b83cfd927e3c20086df34dd5423d +size 1733 diff --git a/source/designs/detail/005/005787.json b/source/designs/detail/005/005787.json new file mode 100644 index 0000000000000000000000000000000000000000..f8e7e782abb49237f0c079e2176f6a3acc5f7481 --- /dev/null +++ b/source/designs/detail/005/005787.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23da985001ac20a565e64dec5bc605f6c2f4df36ff1cfc1423b267c94115543c +size 1505 diff --git a/source/designs/detail/005/005788.json b/source/designs/detail/005/005788.json new file mode 100644 index 0000000000000000000000000000000000000000..994f6a8b591a6a45097bd9a6fc82b1d6ac138b46 --- /dev/null +++ b/source/designs/detail/005/005788.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:138e39cb01f4eb25cabce04bb8445c7abc9ec04603ef7938e51055d2d2ec5df5 +size 1010 diff --git a/source/designs/detail/005/005789.json b/source/designs/detail/005/005789.json new file mode 100644 index 0000000000000000000000000000000000000000..652510b2d7e00f2aebb5557a30560c3b3b089b36 --- /dev/null +++ b/source/designs/detail/005/005789.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dd24e6d959d4d42852e70db6ea451089acb1ba6dc43a60e5ec24327adf5e1bc +size 1764 diff --git a/source/designs/detail/005/005790.json b/source/designs/detail/005/005790.json new file mode 100644 index 0000000000000000000000000000000000000000..85f5dc6315f0bea7d1bda856621ccf49641b567c --- /dev/null +++ b/source/designs/detail/005/005790.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad9290203ec3a6b2f7f93711a3e0ac3c86f544a8fdaa8107843b2fe82403926 +size 2885 diff --git a/source/designs/detail/005/005791.json b/source/designs/detail/005/005791.json new file mode 100644 index 0000000000000000000000000000000000000000..5928c2617cc53ca50db0b0132efc3eda8ab35552 --- /dev/null +++ b/source/designs/detail/005/005791.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ee5d357c6175abad2e319e70a5d566ffa531795b3f833bdcfb7d99dca3b266 +size 1669 diff --git a/source/designs/detail/005/005792.json b/source/designs/detail/005/005792.json new file mode 100644 index 0000000000000000000000000000000000000000..7787151d0d6fcaccc8c63a47b3b71c2eabf695d4 --- /dev/null +++ b/source/designs/detail/005/005792.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd3f44a16c850fb6fd17f16a2f47f91705b428bb37c749f6ca9ff031eccaf7c +size 1210 diff --git a/source/designs/detail/005/005793.json b/source/designs/detail/005/005793.json new file mode 100644 index 0000000000000000000000000000000000000000..b5e8b14a44893070fe012a2103ae78f63ec785e6 --- /dev/null +++ b/source/designs/detail/005/005793.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7bf64e58a3ba117348907c84e242cd7bad00324d33d98629a8352e8193561a +size 2635 diff --git a/source/designs/detail/005/005794.json b/source/designs/detail/005/005794.json new file mode 100644 index 0000000000000000000000000000000000000000..2647e1c8843c3afb9fdd6abf06343a3916f58648 --- /dev/null +++ b/source/designs/detail/005/005794.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:564398c8a465e6e4e35004c9ace6f370baab102f5e4a51079f67b8895af941a5 +size 2592 diff --git a/source/designs/detail/005/005795.json b/source/designs/detail/005/005795.json new file mode 100644 index 0000000000000000000000000000000000000000..615914d0b5548e5d307c23a7b42fc44f20db1aa1 --- /dev/null +++ b/source/designs/detail/005/005795.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa78b5d393b1f46beee6fbaf51526d2d49832ce54509118c8836ff70ad902be5 +size 2546 diff --git a/source/designs/detail/005/005796.json b/source/designs/detail/005/005796.json new file mode 100644 index 0000000000000000000000000000000000000000..221326163e12bcbceaf50c45ad0a10e13aa41206 --- /dev/null +++ b/source/designs/detail/005/005796.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e71eea0a8424e2727cdc0439e6b62a3e7a138070e05676b13f4d6c56f071309 +size 2086 diff --git a/source/designs/detail/005/005797.json b/source/designs/detail/005/005797.json new file mode 100644 index 0000000000000000000000000000000000000000..d905e5c7bc5b685821840ced266b90bc30515763 --- /dev/null +++ b/source/designs/detail/005/005797.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfe1c892a749bde0b5610ad96908f9b0d25a3ce63aa5a61e6eabc5e1e6da918 +size 2375 diff --git a/source/designs/detail/005/005798.json b/source/designs/detail/005/005798.json new file mode 100644 index 0000000000000000000000000000000000000000..935179a5a9fe9a4578b4306b723d714459ce6fc8 --- /dev/null +++ b/source/designs/detail/005/005798.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b02825b8f4936e459661b0e6660be4b22d83a555c5d8ace0ce1689d91ee7ae +size 2283 diff --git a/source/designs/detail/005/005799.json b/source/designs/detail/005/005799.json new file mode 100644 index 0000000000000000000000000000000000000000..6cdb7944762d8d27ab69e68cc7d5196f41c3a75c --- /dev/null +++ b/source/designs/detail/005/005799.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c661588ec9435fbe89813e11f3f51aa9ee871db780adc28579ac942af78248 +size 1315 diff --git a/source/designs/detail/005835.json b/source/designs/detail/005/005835.json similarity index 100% rename from source/designs/detail/005835.json rename to source/designs/detail/005/005835.json diff --git a/source/designs/detail/005/005836.json b/source/designs/detail/005/005836.json new file mode 100644 index 0000000000000000000000000000000000000000..e9531854d99efc45c1051b4939e73608442d95c7 --- /dev/null +++ b/source/designs/detail/005/005836.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d1ff07ef3430fdafc8e29e9f2bde44b373f9963a2ca560a4452bd8c0ee0d0e +size 3144 diff --git a/source/designs/detail/005/005838.json b/source/designs/detail/005/005838.json new file mode 100644 index 0000000000000000000000000000000000000000..d9edabaac4ebb74aaee0cc3cf1b13ee249b168a6 --- /dev/null +++ b/source/designs/detail/005/005838.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e83f57220994d7a12dab09f974f9907b75df055976a7e7a889daaf4886a786d +size 1935 diff --git a/source/designs/detail/005/005839.json b/source/designs/detail/005/005839.json new file mode 100644 index 0000000000000000000000000000000000000000..7e3cc9111bdbb8fe81b5f99d191418eaf5e2d1e1 --- /dev/null +++ b/source/designs/detail/005/005839.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87609bb5f7536bc732de97cdaa9d82c2d5123f85be4865ba870fd41edc0c5a6b +size 2043 diff --git a/source/designs/detail/005/005845.json b/source/designs/detail/005/005845.json new file mode 100644 index 0000000000000000000000000000000000000000..7910151aa79a55e98fdd9dd447ba6fc4da57ca37 --- /dev/null +++ b/source/designs/detail/005/005845.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea652742ee0b768e63f7bdd9f47842c10c7a7634085c354f6d761bcab8b2e32 +size 1586 diff --git a/source/designs/detail/005/005873.json b/source/designs/detail/005/005873.json new file mode 100644 index 0000000000000000000000000000000000000000..cc124cada1f4f9b3f94fa531a9f950aab6201cf1 --- /dev/null +++ b/source/designs/detail/005/005873.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a9fa23e0e4ce7cc443c3f7138ee91a9699991b8a218dc30214ad77859a5cee +size 1500 diff --git a/source/designs/detail/005/005876.json b/source/designs/detail/005/005876.json new file mode 100644 index 0000000000000000000000000000000000000000..267a14cc19b595e3a65d1f35743b246f36013650 --- /dev/null +++ b/source/designs/detail/005/005876.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6127d8a601d538ff03a4f97da91bdae03e8b14c3447a17cb388cc542a508fc +size 1527 diff --git a/source/designs/detail/005/005890.json b/source/designs/detail/005/005890.json new file mode 100644 index 0000000000000000000000000000000000000000..2dc8423d4df9f5e53de68b197f5d30a1a0ce23ab --- /dev/null +++ b/source/designs/detail/005/005890.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e46e6f7698052514ca7519c446c0c8c73d8643a12cce99d18f0f8394e0b8046 +size 1644 diff --git a/source/designs/detail/005/005891.json b/source/designs/detail/005/005891.json new file mode 100644 index 0000000000000000000000000000000000000000..2a7eb3c8ff7e6b0b0676e5f529d70897c6b03998 --- /dev/null +++ b/source/designs/detail/005/005891.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e966d9b3152a9674a432c6bc39dc0786edcf662afc733aa69928bbf9e1ed660f +size 2080 diff --git a/source/designs/detail/006/006398.json b/source/designs/detail/006/006398.json new file mode 100644 index 0000000000000000000000000000000000000000..a9fb82b9b6a7740576c48324f2b17cf81ab2ad0f --- /dev/null +++ b/source/designs/detail/006/006398.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eafad267abb0aad5d9075217f33bdebceacce3bdb5007e85f34bbfbbd32d9ba7 +size 1459 diff --git a/source/designs/detail/007/007504.json b/source/designs/detail/007/007504.json new file mode 100644 index 0000000000000000000000000000000000000000..23402a53e96c9ee820d604ef43d2efebad29f9e0 --- /dev/null +++ b/source/designs/detail/007/007504.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1e91a2dc3a16d33eb4888c5208978ec0da26c4ae6750828db0014378f5bb4e +size 2771 diff --git a/source/designs/detail/007/007518.json b/source/designs/detail/007/007518.json new file mode 100644 index 0000000000000000000000000000000000000000..ae3755be16117e7515dd5a65bf804472c5b8e35b --- /dev/null +++ b/source/designs/detail/007/007518.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d02a45edc5d99f97ffaafa76b2d28ee6dc384b4d601aac61274c24b48806500 +size 1084 diff --git a/source/designs/detail/007/007540.json b/source/designs/detail/007/007540.json new file mode 100644 index 0000000000000000000000000000000000000000..e603ea1a30b7052a6bfc4d2e321e36d67f620ad8 --- /dev/null +++ b/source/designs/detail/007/007540.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a64a48909288dcc3c4d990f0d0c48cb931fba68e667c23d40ce3f63f55a755 +size 2398 diff --git a/source/designs/detail/009/009493.json b/source/designs/detail/009/009493.json new file mode 100644 index 0000000000000000000000000000000000000000..32a1ccf0c8d5693533bc3991fa394e4fb6944dcf --- /dev/null +++ b/source/designs/detail/009/009493.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7cd4c4c60e0383163d0d246c57de03c1ce46f92b03ab4d2f26312b52f148d8 +size 1558 diff --git a/source/designs/detail/009/009614.json b/source/designs/detail/009/009614.json new file mode 100644 index 0000000000000000000000000000000000000000..d54901bf89fc0150d5e28323b47cd6c8d184002d --- /dev/null +++ b/source/designs/detail/009/009614.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8493a7f96633a894a86683db3aac6aefcd680e6f72a5e77dbb4b1dff1c5b1ab +size 1267 diff --git a/source/designs/detail/009/009615.json b/source/designs/detail/009/009615.json new file mode 100644 index 0000000000000000000000000000000000000000..b11c61e229c3e880c8a7dfc2b26f7272b26e83d7 --- /dev/null +++ b/source/designs/detail/009/009615.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8ad488435c37b4385baf01ecd92c37d66582e350ec96064f954513921ecabf8 +size 1303 diff --git a/source/designs/detail/009/009650.json b/source/designs/detail/009/009650.json new file mode 100644 index 0000000000000000000000000000000000000000..2096843e5c4cb8841535b9b11151eefea45b5fef --- /dev/null +++ b/source/designs/detail/009/009650.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c96927672b343946713651a2acac9cf2b9d364ce1363c0de1f8011fd96c8d4c +size 2159 diff --git a/source/designs/detail/010877.json b/source/designs/detail/010/010877.json similarity index 100% rename from source/designs/detail/010877.json rename to source/designs/detail/010/010877.json diff --git a/source/designs/detail/010/010932.json b/source/designs/detail/010/010932.json new file mode 100644 index 0000000000000000000000000000000000000000..31b346dc8830e8b448814796de5ba520727afe26 --- /dev/null +++ b/source/designs/detail/010/010932.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3743d336483ecee01b94bd642ac10c2cfede04551b81f2a1c997bc9ef4573451 +size 1478 diff --git a/source/designs/detail/010/010975.json b/source/designs/detail/010/010975.json new file mode 100644 index 0000000000000000000000000000000000000000..e4d6626349a22252b4c41001c73c3e6852e42446 --- /dev/null +++ b/source/designs/detail/010/010975.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e80de0374a6bb58b8842b070809ab5160bbdd1c3da43dc65e6fccc4cea22fd18 +size 1581 diff --git a/source/designs/detail/010/010977.json b/source/designs/detail/010/010977.json new file mode 100644 index 0000000000000000000000000000000000000000..34bfd0113e2b351b246d35a86ded84c5449da230 --- /dev/null +++ b/source/designs/detail/010/010977.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce82004bdf692b7507e49a61ed7fcbecd5b3120519d2e500267f0db77abb660 +size 1423 diff --git a/source/designs/detail/010/010981.json b/source/designs/detail/010/010981.json new file mode 100644 index 0000000000000000000000000000000000000000..13222b3cc5e65918e39165da9b734b02b459d8d8 --- /dev/null +++ b/source/designs/detail/010/010981.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7880ed39f0bbeae4fe6e593b79b19538bcd6a8ad6e68d6a13351a1fb69bc74e1 +size 1228 diff --git a/source/designs/detail/011/011007.json b/source/designs/detail/011/011007.json new file mode 100644 index 0000000000000000000000000000000000000000..0e0d11177c6a3c39225d2b2d1874c754840cf686 --- /dev/null +++ b/source/designs/detail/011/011007.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea909ba0003de3075179651f73ef9a5cccb315705b0033ec762753828a1bed06 +size 1282 diff --git a/source/designs/detail/011/011008.json b/source/designs/detail/011/011008.json new file mode 100644 index 0000000000000000000000000000000000000000..e34d3868febe73f74b94c8609c73bcad3f959547 --- /dev/null +++ b/source/designs/detail/011/011008.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:249dba2950c7488ec9cbcd5350c41a40827b66f60384e7a40fd14ae0e25497a9 +size 1239 diff --git a/source/designs/detail/011/011071.json b/source/designs/detail/011/011071.json new file mode 100644 index 0000000000000000000000000000000000000000..c172334c0b8db0f386b74a7250cddaec69b0efc1 --- /dev/null +++ b/source/designs/detail/011/011071.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e2cf822d21b35e269c51391cd519129266933a30c7c0bbebf8c52e98f77567 +size 1189 diff --git a/source/designs/detail/011/011348.json b/source/designs/detail/011/011348.json new file mode 100644 index 0000000000000000000000000000000000000000..a84ec6f4d20fed7db49349cfe47cdcfb86168215 --- /dev/null +++ b/source/designs/detail/011/011348.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d532fc5911544f8c6c5099c76c0e474f1beff5c7b1d1d20c6cd9488f05785ffb +size 1319 diff --git a/source/designs/detail/011/011350.json b/source/designs/detail/011/011350.json new file mode 100644 index 0000000000000000000000000000000000000000..4273f5b7be59628750aa0ca472f948df0d8df025 --- /dev/null +++ b/source/designs/detail/011/011350.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f5302d4e80cd6761733285ef9a35dfd86e786faa345b8aeefdb6cf1b4cdbb8 +size 1698 diff --git a/source/designs/detail/011/011351.json b/source/designs/detail/011/011351.json new file mode 100644 index 0000000000000000000000000000000000000000..29c96ca60dbc711db1643c57becc00ecdd265a82 --- /dev/null +++ b/source/designs/detail/011/011351.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce077427107f6764e09aa6211964853d3fc86d857ea9c4e9b0a5b3130a9f782 +size 1502 diff --git a/source/designs/detail/012/012839.json b/source/designs/detail/012/012839.json new file mode 100644 index 0000000000000000000000000000000000000000..9a794b2386c922b76113df1b1a3f0111d8a33c4f --- /dev/null +++ b/source/designs/detail/012/012839.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f6d5e9169312410eed8539d62a0c2aa17bbee26831b42a7335798ad798bd1f3 +size 1357 diff --git a/source/designs/detail/015/015513.json b/source/designs/detail/015/015513.json new file mode 100644 index 0000000000000000000000000000000000000000..cca46b59603a0637c52144347492de303bb9a769 --- /dev/null +++ b/source/designs/detail/015/015513.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193199897315562c610933f87c045db6c45542b4478331436f1ce89b8850b47d +size 1295 diff --git a/source/designs/detail/015/015655.json b/source/designs/detail/015/015655.json new file mode 100644 index 0000000000000000000000000000000000000000..975ed7bc53072bd402b4de3ab812976c9b5911bb --- /dev/null +++ b/source/designs/detail/015/015655.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6f37cc4c4998329c639ad0bb90c84aab7e50cea7fbc660e39df83b746f36aa +size 1743 diff --git a/source/designs/detail/021/021092.json b/source/designs/detail/021/021092.json new file mode 100644 index 0000000000000000000000000000000000000000..4cd88453f57a3eb4716867ecdbe847e2d6e34f70 --- /dev/null +++ b/source/designs/detail/021/021092.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910e9af31a8d8fc5dbef6ddd7c5f7d7ec9927daa7257f3e5ce6251d6b07bfd4f +size 1351 diff --git a/source/designs/detail/025/025315.json b/source/designs/detail/025/025315.json new file mode 100644 index 0000000000000000000000000000000000000000..3424fd210d9343233a55ad90bb137573595daf07 --- /dev/null +++ b/source/designs/detail/025/025315.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5817ea8b152f40b90a7e1ae6e006f337f6afe0b8a6d14580935ce51e02422586 +size 1545 diff --git a/source/designs/detail/025/025932.json b/source/designs/detail/025/025932.json new file mode 100644 index 0000000000000000000000000000000000000000..19831442d3b7e91f60f7d6582c898d741d18c652 --- /dev/null +++ b/source/designs/detail/025/025932.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f035b7400011b31666fd27ca00801c35bd9ebb804cceb300121bd62dc5f5c21 +size 1589 diff --git a/source/designs/detail/026839.json b/source/designs/detail/026/026839.json similarity index 100% rename from source/designs/detail/026839.json rename to source/designs/detail/026/026839.json diff --git a/source/designs/detail/026/026850.json b/source/designs/detail/026/026850.json new file mode 100644 index 0000000000000000000000000000000000000000..58fadfe1c1b2e3c69405fc73a0a769637fdddeb3 --- /dev/null +++ b/source/designs/detail/026/026850.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e43277750cebc368b91af11eb7a55fca33d6e22fe04358ab5844773cf1d97cd +size 1834 diff --git a/source/designs/detail/026/026852.json b/source/designs/detail/026/026852.json new file mode 100644 index 0000000000000000000000000000000000000000..f457f228eab1a75c5712a908d4c5a00d6e5f2931 --- /dev/null +++ b/source/designs/detail/026/026852.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec431cc30899e854b40b6917f1f45d9f8f7dfd511671663ebd66b9052f6e310 +size 1667 diff --git a/source/designs/detail/026/026853.json b/source/designs/detail/026/026853.json new file mode 100644 index 0000000000000000000000000000000000000000..323664fe545f8d02048c5c6e1042a3dbc0ea3bb0 --- /dev/null +++ b/source/designs/detail/026/026853.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff7ed03a7105a089a358edaafe47d1869bab045ca3c4ca8e174dc1b4f179b9d +size 1306 diff --git a/source/designs/detail/026/026906.json b/source/designs/detail/026/026906.json new file mode 100644 index 0000000000000000000000000000000000000000..12a4b98851f5690363cbba6b7f3e3f3da2243c73 --- /dev/null +++ b/source/designs/detail/026/026906.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61043b47b1cbbad616987d53e7e60635e78fddcdc4e00e58bcdc12682fc6f6d5 +size 1362 diff --git a/source/designs/detail/026/026907.json b/source/designs/detail/026/026907.json new file mode 100644 index 0000000000000000000000000000000000000000..9fcd90495feb8779614f77825295e4a491b64a3f --- /dev/null +++ b/source/designs/detail/026/026907.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82fe583c187fbc991ccf2472d3c5ef6b67c9c26d5b539b7dabeed4f82cfdd7be +size 1306 diff --git a/source/designs/detail/026/026968.json b/source/designs/detail/026/026968.json new file mode 100644 index 0000000000000000000000000000000000000000..81d1cb4edf5c27e0ba491d38c13f52ea132f3ec7 --- /dev/null +++ b/source/designs/detail/026/026968.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac39814f044ec4e0afdb71c072f0dcd3dc2c4a9d18e352eb9fb7453a81d667d +size 1974 diff --git a/source/designs/detail/026/026969.json b/source/designs/detail/026/026969.json new file mode 100644 index 0000000000000000000000000000000000000000..1ead5a7a8da930908c07c3107eb39784d95c81d3 --- /dev/null +++ b/source/designs/detail/026/026969.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cb84b8568ec23b3262a54028d65867cd63bcd4f0ec41a1e80ec65aa00cebd0b +size 1503 diff --git a/source/designs/detail/026/026970.json b/source/designs/detail/026/026970.json new file mode 100644 index 0000000000000000000000000000000000000000..0039b5842542a2c121c38a9dfaf17b3171d7d1ee --- /dev/null +++ b/source/designs/detail/026/026970.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c2cc0d7002e00ff11a0bea54535b96b47f03cac766e85ecab9014caaabe423 +size 1817 diff --git a/source/designs/detail/026979.json b/source/designs/detail/026/026979.json similarity index 100% rename from source/designs/detail/026979.json rename to source/designs/detail/026/026979.json diff --git a/source/designs/detail/027004.json b/source/designs/detail/027/027004.json similarity index 100% rename from source/designs/detail/027004.json rename to source/designs/detail/027/027004.json diff --git a/source/designs/detail/027029.json b/source/designs/detail/027/027029.json similarity index 100% rename from source/designs/detail/027029.json rename to source/designs/detail/027/027029.json diff --git a/source/designs/detail/027030.json b/source/designs/detail/027/027030.json similarity index 100% rename from source/designs/detail/027030.json rename to source/designs/detail/027/027030.json diff --git a/source/designs/detail/027032.json b/source/designs/detail/027/027032.json similarity index 100% rename from source/designs/detail/027032.json rename to source/designs/detail/027/027032.json diff --git a/source/designs/detail/027033.json b/source/designs/detail/027/027033.json similarity index 100% rename from source/designs/detail/027033.json rename to source/designs/detail/027/027033.json diff --git a/source/designs/detail/027034.json b/source/designs/detail/027/027034.json similarity index 100% rename from source/designs/detail/027034.json rename to source/designs/detail/027/027034.json diff --git a/source/designs/detail/027035.json b/source/designs/detail/027/027035.json similarity index 100% rename from source/designs/detail/027035.json rename to source/designs/detail/027/027035.json diff --git a/source/designs/detail/027036.json b/source/designs/detail/027/027036.json similarity index 100% rename from source/designs/detail/027036.json rename to source/designs/detail/027/027036.json diff --git a/source/designs/detail/027037.json b/source/designs/detail/027/027037.json similarity index 100% rename from source/designs/detail/027037.json rename to source/designs/detail/027/027037.json diff --git a/source/designs/detail/027038.json b/source/designs/detail/027/027038.json similarity index 100% rename from source/designs/detail/027038.json rename to source/designs/detail/027/027038.json diff --git a/source/designs/detail/027039.json b/source/designs/detail/027/027039.json similarity index 100% rename from source/designs/detail/027039.json rename to source/designs/detail/027/027039.json diff --git a/source/designs/detail/027040.json b/source/designs/detail/027/027040.json similarity index 100% rename from source/designs/detail/027040.json rename to source/designs/detail/027/027040.json diff --git a/source/designs/detail/027041.json b/source/designs/detail/027/027041.json similarity index 100% rename from source/designs/detail/027041.json rename to source/designs/detail/027/027041.json diff --git a/source/designs/detail/027042.json b/source/designs/detail/027/027042.json similarity index 100% rename from source/designs/detail/027042.json rename to source/designs/detail/027/027042.json diff --git a/source/designs/detail/027043.json b/source/designs/detail/027/027043.json similarity index 100% rename from source/designs/detail/027043.json rename to source/designs/detail/027/027043.json diff --git a/source/designs/detail/027044.json b/source/designs/detail/027/027044.json similarity index 100% rename from source/designs/detail/027044.json rename to source/designs/detail/027/027044.json diff --git a/source/designs/detail/027045.json b/source/designs/detail/027/027045.json similarity index 100% rename from source/designs/detail/027045.json rename to source/designs/detail/027/027045.json diff --git a/source/designs/detail/027046.json b/source/designs/detail/027/027046.json similarity index 100% rename from source/designs/detail/027046.json rename to source/designs/detail/027/027046.json diff --git a/source/designs/detail/027047.json b/source/designs/detail/027/027047.json similarity index 100% rename from source/designs/detail/027047.json rename to source/designs/detail/027/027047.json diff --git a/source/designs/detail/027048.json b/source/designs/detail/027/027048.json similarity index 100% rename from source/designs/detail/027048.json rename to source/designs/detail/027/027048.json diff --git a/source/designs/detail/027049.json b/source/designs/detail/027/027049.json similarity index 100% rename from source/designs/detail/027049.json rename to source/designs/detail/027/027049.json diff --git a/source/designs/detail/027050.json b/source/designs/detail/027/027050.json similarity index 100% rename from source/designs/detail/027050.json rename to source/designs/detail/027/027050.json diff --git a/source/designs/detail/027051.json b/source/designs/detail/027/027051.json similarity index 100% rename from source/designs/detail/027051.json rename to source/designs/detail/027/027051.json diff --git a/source/designs/detail/027052.json b/source/designs/detail/027/027052.json similarity index 100% rename from source/designs/detail/027052.json rename to source/designs/detail/027/027052.json diff --git a/source/designs/detail/027053.json b/source/designs/detail/027/027053.json similarity index 100% rename from source/designs/detail/027053.json rename to source/designs/detail/027/027053.json diff --git a/source/designs/detail/027054.json b/source/designs/detail/027/027054.json similarity index 100% rename from source/designs/detail/027054.json rename to source/designs/detail/027/027054.json diff --git a/source/designs/detail/027055.json b/source/designs/detail/027/027055.json similarity index 100% rename from source/designs/detail/027055.json rename to source/designs/detail/027/027055.json diff --git a/source/designs/detail/027056.json b/source/designs/detail/027/027056.json similarity index 100% rename from source/designs/detail/027056.json rename to source/designs/detail/027/027056.json diff --git a/source/designs/detail/027057.json b/source/designs/detail/027/027057.json similarity index 100% rename from source/designs/detail/027057.json rename to source/designs/detail/027/027057.json diff --git a/source/designs/detail/027058.json b/source/designs/detail/027/027058.json similarity index 100% rename from source/designs/detail/027058.json rename to source/designs/detail/027/027058.json diff --git a/source/designs/detail/027059.json b/source/designs/detail/027/027059.json similarity index 100% rename from source/designs/detail/027059.json rename to source/designs/detail/027/027059.json diff --git a/source/designs/detail/027060.json b/source/designs/detail/027/027060.json similarity index 100% rename from source/designs/detail/027060.json rename to source/designs/detail/027/027060.json diff --git a/source/designs/detail/027061.json b/source/designs/detail/027/027061.json similarity index 100% rename from source/designs/detail/027061.json rename to source/designs/detail/027/027061.json diff --git a/source/designs/detail/027062.json b/source/designs/detail/027/027062.json similarity index 100% rename from source/designs/detail/027062.json rename to source/designs/detail/027/027062.json diff --git a/source/designs/detail/027063.json b/source/designs/detail/027/027063.json similarity index 100% rename from source/designs/detail/027063.json rename to source/designs/detail/027/027063.json diff --git a/source/designs/detail/027064.json b/source/designs/detail/027/027064.json similarity index 100% rename from source/designs/detail/027064.json rename to source/designs/detail/027/027064.json diff --git a/source/designs/detail/027065.json b/source/designs/detail/027/027065.json similarity index 100% rename from source/designs/detail/027065.json rename to source/designs/detail/027/027065.json diff --git a/source/designs/detail/027066.json b/source/designs/detail/027/027066.json similarity index 100% rename from source/designs/detail/027066.json rename to source/designs/detail/027/027066.json diff --git a/source/designs/detail/027067.json b/source/designs/detail/027/027067.json similarity index 100% rename from source/designs/detail/027067.json rename to source/designs/detail/027/027067.json diff --git a/source/designs/detail/027/027068.json b/source/designs/detail/027/027068.json new file mode 100644 index 0000000000000000000000000000000000000000..de7a74b6caa974c8e813a1f03df628a0b9534fd9 --- /dev/null +++ b/source/designs/detail/027/027068.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98b31e09491f140d62857d2f970f1077e0eb04fab5cf8342e7fda2759c1c381 +size 1059 diff --git a/source/designs/detail/027/027069.json b/source/designs/detail/027/027069.json new file mode 100644 index 0000000000000000000000000000000000000000..57adf5398628b4d5905e6eb50ab2814b4f2f7fba --- /dev/null +++ b/source/designs/detail/027/027069.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8494d348ef0b0a3d3e99a8309165bb4f77e1ca45edc53b860db25c1af56a0ac8 +size 1713 diff --git a/source/designs/detail/027/027070.json b/source/designs/detail/027/027070.json new file mode 100644 index 0000000000000000000000000000000000000000..3d7cf0fc3c6ff666473bc5ebe99745fe64e8009e --- /dev/null +++ b/source/designs/detail/027/027070.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27c5e8c00efed3fe7ce68bb86af2fffb37c13fb6ddf961abc2e8585763ba41b +size 1250 diff --git a/source/designs/detail/027/027071.json b/source/designs/detail/027/027071.json new file mode 100644 index 0000000000000000000000000000000000000000..40324dadefefec3edcdce396fde6252f01c2bf06 --- /dev/null +++ b/source/designs/detail/027/027071.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ca28ad037fc27d94aa62d5ab9cc37df537c79d74d6804ec1790866a5b3c0e7 +size 1578 diff --git a/source/designs/detail/027/027072.json b/source/designs/detail/027/027072.json new file mode 100644 index 0000000000000000000000000000000000000000..484bfc598824b7e6528b1f7c47ece906da2e3b9b --- /dev/null +++ b/source/designs/detail/027/027072.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56295e762f969dfa96b1308cb32927ef218ad97a7be840b268331314de04ddc1 +size 1369 diff --git a/source/designs/detail/027/027073.json b/source/designs/detail/027/027073.json new file mode 100644 index 0000000000000000000000000000000000000000..314f292f359e7c5d1b9fe83dbde72271860d93b3 --- /dev/null +++ b/source/designs/detail/027/027073.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696a5f79e679441c7f76af3bd7fb51a0fea2c99327097e160575af6911a150f9 +size 1526 diff --git a/source/designs/detail/027/027074.json b/source/designs/detail/027/027074.json new file mode 100644 index 0000000000000000000000000000000000000000..ed8e02ae45df41010dbbb1d89081a5f920007ccc --- /dev/null +++ b/source/designs/detail/027/027074.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ec11c72da49bb7d4bda4624ce884a3d34b2bb6ddab419a6dbc9429d70eaea9 +size 1496 diff --git a/source/designs/detail/027/027076.json b/source/designs/detail/027/027076.json new file mode 100644 index 0000000000000000000000000000000000000000..0b6501f3d68751cff6776739d9a16a6bfb4089b3 --- /dev/null +++ b/source/designs/detail/027/027076.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4ca9283e4c665ff8429d9abe59fd51d2625c0e57fbc1e8b9f5660282a704c9 +size 1546 diff --git a/source/designs/detail/027/027077.json b/source/designs/detail/027/027077.json new file mode 100644 index 0000000000000000000000000000000000000000..56ec0691ff0cbd8002174c38549e6d34e5af838d --- /dev/null +++ b/source/designs/detail/027/027077.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91e06aa69dd9023a558b94e2a25dfe3537e790fcc239f954c80ba9bc95f39b46 +size 1461 diff --git a/source/designs/detail/027/027078.json b/source/designs/detail/027/027078.json new file mode 100644 index 0000000000000000000000000000000000000000..238f7ba492224d6977c34160a028c37c61ffc431 --- /dev/null +++ b/source/designs/detail/027/027078.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd41e252ec0a618cd11e8013b956421a4016c96c3ff1e56c7c3bdf359385e7d +size 1283 diff --git a/source/designs/detail/027/027079.json b/source/designs/detail/027/027079.json new file mode 100644 index 0000000000000000000000000000000000000000..36b67d8ef5c5d77b0c936c33ee9d2dc30d890b3f --- /dev/null +++ b/source/designs/detail/027/027079.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00d816576d98ceb2ed5376adf61f316b301ffc38b836aa9494a5089cd069496 +size 1915 diff --git a/source/designs/detail/027/027080.json b/source/designs/detail/027/027080.json new file mode 100644 index 0000000000000000000000000000000000000000..7263fe168f289192745d60e0672f3c61db13b6d7 --- /dev/null +++ b/source/designs/detail/027/027080.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12088a395abce8ea0a3159e1f96bb48e44fd7ef8ba09d6fac97c6639948d6638 +size 1620 diff --git a/source/designs/detail/027/027081.json b/source/designs/detail/027/027081.json new file mode 100644 index 0000000000000000000000000000000000000000..d961f5b16abb000bc1b7f535b4b3f4fb0587f4c9 --- /dev/null +++ b/source/designs/detail/027/027081.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7064b8300340837c906af47229eb8cfc7bb60858d5c69ed334d43023946658d6 +size 1675 diff --git a/source/designs/detail/027/027082.json b/source/designs/detail/027/027082.json new file mode 100644 index 0000000000000000000000000000000000000000..680989358e595a3e3a6c4dd89a4d62f36c466f25 --- /dev/null +++ b/source/designs/detail/027/027082.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61989dbfe89034e2e52a5324d3bb2d37ef7074df1dbb24e8909986d5fae5500b +size 1702 diff --git a/source/designs/detail/027/027083.json b/source/designs/detail/027/027083.json new file mode 100644 index 0000000000000000000000000000000000000000..f28b1fa987b0a1ef49c243dd06a264be63a745a4 --- /dev/null +++ b/source/designs/detail/027/027083.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8252bace2d589cf02853b16807fa25d026dbed0669f4614ad72007a6a305ec +size 1174 diff --git a/source/designs/detail/027/027084.json b/source/designs/detail/027/027084.json new file mode 100644 index 0000000000000000000000000000000000000000..65b753ab0a67c50ef32d2b4c45229fa765bd70d4 --- /dev/null +++ b/source/designs/detail/027/027084.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0cd548506fd6915a2076cc7923779057c1fc2a57d5a51f23705e0aac968760 +size 1540 diff --git a/source/designs/detail/027/027085.json b/source/designs/detail/027/027085.json new file mode 100644 index 0000000000000000000000000000000000000000..440650ecf6682400037e649944d73c16a6d3da92 --- /dev/null +++ b/source/designs/detail/027/027085.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdefe97375db09570118d4cb4e61ce93699de0a69649f1fa803ab2b466b36b43 +size 2290 diff --git a/source/designs/detail/027/027086.json b/source/designs/detail/027/027086.json new file mode 100644 index 0000000000000000000000000000000000000000..846b44b999b3f385c6d51b2cee127b48ecebc6b5 --- /dev/null +++ b/source/designs/detail/027/027086.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdde24891bde25b70b7051f06149ba163f665dd58c723ced37dbc5ec0fb42ffd +size 1427 diff --git a/source/designs/detail/027/027087.json b/source/designs/detail/027/027087.json new file mode 100644 index 0000000000000000000000000000000000000000..9eee252b6e7ce5bfab581c5349993f90e84ae876 --- /dev/null +++ b/source/designs/detail/027/027087.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd87525a42840f7afd943cf76818f295e263f70f5d3f759957b4b3e4990c2d70 +size 1406 diff --git a/source/designs/detail/027/027088.json b/source/designs/detail/027/027088.json new file mode 100644 index 0000000000000000000000000000000000000000..84234ddeaeaab6a8e0f2a5059cb682e8a629ab8d --- /dev/null +++ b/source/designs/detail/027/027088.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2e252529f018c8467c861a3546055662da3d47c594b1c429229b48dfd33812 +size 1583 diff --git a/source/designs/detail/027/027089.json b/source/designs/detail/027/027089.json new file mode 100644 index 0000000000000000000000000000000000000000..38141a6168426222537ebf9a15a9cf6e0f52b328 --- /dev/null +++ b/source/designs/detail/027/027089.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56a54a63afaf2805c2cae32b4f36150710a8f69e0a8933675af59fe3be35408 +size 1408 diff --git a/source/designs/detail/027/027090.json b/source/designs/detail/027/027090.json new file mode 100644 index 0000000000000000000000000000000000000000..742cc99bc2227da992dd57a8d517a98495ee109c --- /dev/null +++ b/source/designs/detail/027/027090.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d345e7511a2d90e4ec1eda456be11ca1889b642b8248d930a67c9fccfc6166ad +size 1265 diff --git a/source/designs/detail/027/027091.json b/source/designs/detail/027/027091.json new file mode 100644 index 0000000000000000000000000000000000000000..8ad10a06da961c294f3bf8aaa80a9567f2fc10a4 --- /dev/null +++ b/source/designs/detail/027/027091.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5613a6e6b23a817aa8dac82cf586a8297ee2086cb5e16141a3b6eb002eb74997 +size 1322 diff --git a/source/designs/detail/027/027092.json b/source/designs/detail/027/027092.json new file mode 100644 index 0000000000000000000000000000000000000000..5c7c187ba2a054579209cb3892918b12034c83fb --- /dev/null +++ b/source/designs/detail/027/027092.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a18a2ca39bad171d15ed06ef7d93d8fe8546c312479a5c429448d030685ab85 +size 1268 diff --git a/source/designs/detail/027/027093.json b/source/designs/detail/027/027093.json new file mode 100644 index 0000000000000000000000000000000000000000..c10907383e72ee8eaba0f2da974713bc20e37c83 --- /dev/null +++ b/source/designs/detail/027/027093.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cdab54bcc1847a2b28526183d33ad467779627c9cf2e88a1f2d56e5db58e379 +size 1425 diff --git a/source/designs/detail/027/027094.json b/source/designs/detail/027/027094.json new file mode 100644 index 0000000000000000000000000000000000000000..c83d542b8f0af8bdc7b5d5e780f89c00f4a853ea --- /dev/null +++ b/source/designs/detail/027/027094.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:644663776cf283e52b8587c191ff801fdd4056d5e2c5c25ac07ae369e924403f +size 2001 diff --git a/source/designs/detail/027/027095.json b/source/designs/detail/027/027095.json new file mode 100644 index 0000000000000000000000000000000000000000..d78461cc539a577a98f496772ab3c22074c6795a --- /dev/null +++ b/source/designs/detail/027/027095.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93eae1a759c35133d1be85d572aa3f6b791b3f25b675ead0ecf662ab06df78ec +size 1489 diff --git a/source/designs/detail/027/027096.json b/source/designs/detail/027/027096.json new file mode 100644 index 0000000000000000000000000000000000000000..1e82c73c3abe499993173c074ac673608d0306a1 --- /dev/null +++ b/source/designs/detail/027/027096.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a26e0ae6655eeb395d62dc7508aab8d3d1389092ebc4ff3ca57b33aa8d5fa67 +size 1508 diff --git a/source/designs/detail/027/027097.json b/source/designs/detail/027/027097.json new file mode 100644 index 0000000000000000000000000000000000000000..56808f320e6161c710807f33cd717df1b623319f --- /dev/null +++ b/source/designs/detail/027/027097.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a8dbf9fa16e2957a9581ab80d40423c8623e9d784992f63b67d10ccb61bdbe +size 1509 diff --git a/source/designs/detail/027/027098.json b/source/designs/detail/027/027098.json new file mode 100644 index 0000000000000000000000000000000000000000..600ae58733c39eb045bc63e55fd3c339f7005755 --- /dev/null +++ b/source/designs/detail/027/027098.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7db33435f69ad98c724ebeaa8d76ed6616e7bde3737e95778958a937c23fe24 +size 1361 diff --git a/source/designs/detail/027/027099.json b/source/designs/detail/027/027099.json new file mode 100644 index 0000000000000000000000000000000000000000..ba2be2c5d0566fda98398f91049602c2cabbba3f --- /dev/null +++ b/source/designs/detail/027/027099.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f34ca61a426d58e6b7bd5875d3d8933f2d3337cb265e5979b7b558cbe88432 +size 1456 diff --git a/source/designs/detail/027/027100.json b/source/designs/detail/027/027100.json new file mode 100644 index 0000000000000000000000000000000000000000..df877f9fffb1294a949ce5307e5eb6c11edae2a1 --- /dev/null +++ b/source/designs/detail/027/027100.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d14363c854c4daca029bb98f7a5b0bfb0bbf237e3bb671082b51adc52955bde +size 1318 diff --git a/source/designs/detail/027/027101.json b/source/designs/detail/027/027101.json new file mode 100644 index 0000000000000000000000000000000000000000..d0997492dfc99379ae633937dad6f29ab6df5248 --- /dev/null +++ b/source/designs/detail/027/027101.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d488d571a229be667c87070983530a029767a2ce2378bf3a6eea6c25b0533e +size 1373 diff --git a/source/designs/detail/027/027102.json b/source/designs/detail/027/027102.json new file mode 100644 index 0000000000000000000000000000000000000000..6527ae0359ee57fe7fef0e1945b0a50b861bbca1 --- /dev/null +++ b/source/designs/detail/027/027102.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec74ae248b8981ae7db761454c7d29a22ed2ff4f13741fd7525c0ac148ea5d8a +size 1362 diff --git a/source/designs/detail/027/027104.json b/source/designs/detail/027/027104.json new file mode 100644 index 0000000000000000000000000000000000000000..acb0391b1ca4f4e27b828c0f9c9c1841b2b2c701 --- /dev/null +++ b/source/designs/detail/027/027104.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3cad54122d363ccbf5e3a4763ecf8d843f2768b42d4f738748cf77b1b570b0 +size 1210 diff --git a/source/designs/detail/027/027105.json b/source/designs/detail/027/027105.json new file mode 100644 index 0000000000000000000000000000000000000000..3b7792aaa144414fd05cf54fc112ac803353db56 --- /dev/null +++ b/source/designs/detail/027/027105.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db75add43439753f9c88f3950aae0c105fa57a597badc462aa0eaab5c1b9cc8d +size 1581 diff --git a/source/designs/detail/027/027106.json b/source/designs/detail/027/027106.json new file mode 100644 index 0000000000000000000000000000000000000000..a6b33199178489cdb7d0cc2b1ac590a156cda827 --- /dev/null +++ b/source/designs/detail/027/027106.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84635797b0e2e6856cbe8932f4b90b29b736e7f1382850369d8f0a4d21504970 +size 1780 diff --git a/source/designs/detail/027/027107.json b/source/designs/detail/027/027107.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c8e805b9585bfe3110fa46763c37240aa71e82 --- /dev/null +++ b/source/designs/detail/027/027107.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c399510c09f32d8118b4c425d9079e6fcd79a71566bb60f5a8c998d9584a0c +size 1688 diff --git a/source/designs/detail/027/027109.json b/source/designs/detail/027/027109.json new file mode 100644 index 0000000000000000000000000000000000000000..baaf35fbcaa1a80c0c55410ad7da47c2b8f18d0a --- /dev/null +++ b/source/designs/detail/027/027109.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5184c347e279e73ad1e6720518f34ba9b05b493cd1d6dcfe90ea8cf4c5f29236 +size 1425 diff --git a/source/designs/detail/027/027110.json b/source/designs/detail/027/027110.json new file mode 100644 index 0000000000000000000000000000000000000000..b900a5bd93d89fa19e9b5915a084815ed90facbe --- /dev/null +++ b/source/designs/detail/027/027110.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e533617df6694019a3e13b27c33ed9d12e069236b5bdb41ac811cf8478879b +size 1245 diff --git a/source/designs/detail/027/027111.json b/source/designs/detail/027/027111.json new file mode 100644 index 0000000000000000000000000000000000000000..8c0e0f37b61723ab6f9811b0401859b824a20ba7 --- /dev/null +++ b/source/designs/detail/027/027111.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9470acaa43c51b3942ba84f3e89eaed9ed1e2688155f0a6ba7177e1e2beb5df6 +size 1395 diff --git a/source/designs/detail/027/027112.json b/source/designs/detail/027/027112.json new file mode 100644 index 0000000000000000000000000000000000000000..0b2c74613aa12eb1a44e75e281b20b6ac8acc330 --- /dev/null +++ b/source/designs/detail/027/027112.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62bf22717265a806ac2511c63dfe95de60cabb8a12898a34e912a84ca4421301 +size 1417 diff --git a/source/designs/detail/027/027113.json b/source/designs/detail/027/027113.json new file mode 100644 index 0000000000000000000000000000000000000000..19736a3580ba24f659a9d4890262d9d06be3c0a6 --- /dev/null +++ b/source/designs/detail/027/027113.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b21d9085e72a66ed7fda69524bd4544bb7a261ed581fe36febf1f9ef07fe2d0 +size 1112 diff --git a/source/designs/detail/027/027114.json b/source/designs/detail/027/027114.json new file mode 100644 index 0000000000000000000000000000000000000000..67566f179f2c02c1733b565c78b395e65a6012bc --- /dev/null +++ b/source/designs/detail/027/027114.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ee74f6ca146ef58697c137a01b41d31ae6c1fe2f2a3e800e64e32e9cd4815e8 +size 1365 diff --git a/source/designs/detail/027/027115.json b/source/designs/detail/027/027115.json new file mode 100644 index 0000000000000000000000000000000000000000..07b5dfa3aff03f5d73e59f731250376b3c4aaa7f --- /dev/null +++ b/source/designs/detail/027/027115.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad80756333a88572830f615b12cc4e52853bbbbe0fcbcbebc6c0c12a54b49980 +size 1518 diff --git a/source/designs/detail/027/027116.json b/source/designs/detail/027/027116.json new file mode 100644 index 0000000000000000000000000000000000000000..2b89d92243c206dbe021d64eecf8098d0492f4e7 --- /dev/null +++ b/source/designs/detail/027/027116.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8f010c24eae0cbfb8c1ddc5246ab4593f78cafeefbe7e52f2f3bc77bc8e595 +size 1481 diff --git a/source/designs/detail/027/027117.json b/source/designs/detail/027/027117.json new file mode 100644 index 0000000000000000000000000000000000000000..3fdcb4d23f8d1a2b760928ef3950d1864008a839 --- /dev/null +++ b/source/designs/detail/027/027117.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75361ae4be6ec47d3ce3cd308aad49503297af8894593044bb4f6ba6df0ef295 +size 1183 diff --git a/source/designs/detail/027/027118.json b/source/designs/detail/027/027118.json new file mode 100644 index 0000000000000000000000000000000000000000..deeac852f861371705df12f79b65fcd5e91f5e5f --- /dev/null +++ b/source/designs/detail/027/027118.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f517562114a1abf18e2dfd78371c8f53fff8dc81feaeaf016a42f17deb79b191 +size 1412 diff --git a/source/designs/detail/027/027119.json b/source/designs/detail/027/027119.json new file mode 100644 index 0000000000000000000000000000000000000000..b56038fc029b59e9dd2753e91837bca4ba91d428 --- /dev/null +++ b/source/designs/detail/027/027119.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f551fee2f7ab959114d2a83e14d5dcb2a256fa83398a459ebc360d7bc0d1a5 +size 1386 diff --git a/source/designs/detail/027/027120.json b/source/designs/detail/027/027120.json new file mode 100644 index 0000000000000000000000000000000000000000..a52fec02baab56d4a991ce4b82c9ab195eea25a0 --- /dev/null +++ b/source/designs/detail/027/027120.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7e3ee1b9069033f608b69e25b6226c3481dc8eda4420ed798277dc05443b39 +size 1378 diff --git a/source/designs/detail/027/027121.json b/source/designs/detail/027/027121.json new file mode 100644 index 0000000000000000000000000000000000000000..0179b587852c6f6e0d909522b6c7af0cdc29509c --- /dev/null +++ b/source/designs/detail/027/027121.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7727828ba37e26ce6d134d0985674cf065bf7931d5a8d1a7f5fc3ab76670ec +size 1449 diff --git a/source/designs/detail/027/027122.json b/source/designs/detail/027/027122.json new file mode 100644 index 0000000000000000000000000000000000000000..e4879d9fe9b2ca078cd3e232e81a404e8908a060 --- /dev/null +++ b/source/designs/detail/027/027122.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84811bd255f1fa2a5440381fbf7d9e918b9be593590e3f2b8453f1ad45d47539 +size 1276 diff --git a/source/designs/detail/027/027123.json b/source/designs/detail/027/027123.json new file mode 100644 index 0000000000000000000000000000000000000000..6bb78f2d5467dead4e5ad16213b11bfd52def31e --- /dev/null +++ b/source/designs/detail/027/027123.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118fd261c0e5a4e00c7c8699d61ef88aba18a88d63ee0c40d5bf486ce7464fe1 +size 1408 diff --git a/source/designs/detail/027/027124.json b/source/designs/detail/027/027124.json new file mode 100644 index 0000000000000000000000000000000000000000..46415966a7cc8dea23580fd66f6addfc7103f79b --- /dev/null +++ b/source/designs/detail/027/027124.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084cb91b0fe9242ed9516e6bed1937cd425db373082c43cd950cbd916d3bfb65 +size 1579 diff --git a/source/designs/detail/027/027127.json b/source/designs/detail/027/027127.json new file mode 100644 index 0000000000000000000000000000000000000000..33b8b5013a6da54b239a6a8552037977010b1690 --- /dev/null +++ b/source/designs/detail/027/027127.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927e1dcbb2ad56d444ad4640e27456ffd97b509f1a4f6694aad08ad0c15f8b6d +size 1687 diff --git a/source/designs/detail/027/027128.json b/source/designs/detail/027/027128.json new file mode 100644 index 0000000000000000000000000000000000000000..b0104cfc9bbf9a564539442b76a7e2bcb48c9930 --- /dev/null +++ b/source/designs/detail/027/027128.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9405c903e861efe43817662f2d1e0a8becb7d0b677048c9544e0e3e59e0cdd +size 1300 diff --git a/source/designs/detail/027/027129.json b/source/designs/detail/027/027129.json new file mode 100644 index 0000000000000000000000000000000000000000..57af61b52133fdd79d3bd38f9b74d6f714ea3b85 --- /dev/null +++ b/source/designs/detail/027/027129.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4220ff2f6223830c26e499d12226c2725747867d2ee9caf7c4299642587b30dc +size 1196 diff --git a/source/designs/detail/027/027131.json b/source/designs/detail/027/027131.json new file mode 100644 index 0000000000000000000000000000000000000000..142ca5858494e0b5b71c1d2e56407fa1311e4d93 --- /dev/null +++ b/source/designs/detail/027/027131.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ab88701ea00ebb8cc5708ef59c7e25a407e522d809d335d38a3a4d2256d0ab +size 1280 diff --git a/source/designs/detail/027/027132.json b/source/designs/detail/027/027132.json new file mode 100644 index 0000000000000000000000000000000000000000..c5c83afe1b9cb3ce20bf439b6a09cb23146891c0 --- /dev/null +++ b/source/designs/detail/027/027132.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:953bd6455614ed2639ff5cfc354c7b2d44477330f259351afc0e9ffe7a694d28 +size 1405 diff --git a/source/designs/detail/027/027133.json b/source/designs/detail/027/027133.json new file mode 100644 index 0000000000000000000000000000000000000000..c2449abfd508454e552e7258346865cc3686db9c --- /dev/null +++ b/source/designs/detail/027/027133.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89d0810c70050902aca7c7743163a4e8c26f2dc01628dcede867cb1e8e55d997 +size 1485 diff --git a/source/designs/detail/027/027134.json b/source/designs/detail/027/027134.json new file mode 100644 index 0000000000000000000000000000000000000000..d3688e4cc7d10ded9c73fc9b965ad09ab532e471 --- /dev/null +++ b/source/designs/detail/027/027134.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27e9da66dfb14dbfdcac8739e7bbc27de7b5fb6597196e9a1bbf7164cba4354 +size 1148 diff --git a/source/designs/detail/027/027135.json b/source/designs/detail/027/027135.json new file mode 100644 index 0000000000000000000000000000000000000000..86a43176e379e82903431880207c15fcfa9b6e98 --- /dev/null +++ b/source/designs/detail/027/027135.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9297495b973b77f80486ffb1152289825ce9fa0ed1f1455a4227e38834bcabdc +size 1375 diff --git a/source/designs/detail/027/027136.json b/source/designs/detail/027/027136.json new file mode 100644 index 0000000000000000000000000000000000000000..a90441de6de56ece699fedb0e1dbb0664548d527 --- /dev/null +++ b/source/designs/detail/027/027136.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5fcb242915f0dfbcdabe84849bd35f80e958424945c47569593b1b285c2b44 +size 1353 diff --git a/source/designs/detail/027/027137.json b/source/designs/detail/027/027137.json new file mode 100644 index 0000000000000000000000000000000000000000..fe90ff7528ee1a47f6400fedc6192fe81b835108 --- /dev/null +++ b/source/designs/detail/027/027137.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e026e092434b4aa2057edb1d9d390537ef5d6aba1bc5a5ac38672ef6d4814845 +size 1222 diff --git a/source/designs/detail/027/027139.json b/source/designs/detail/027/027139.json new file mode 100644 index 0000000000000000000000000000000000000000..a1387cacf99cab1f8e2d8a048ca8cc3a0e5aaa68 --- /dev/null +++ b/source/designs/detail/027/027139.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1edf131a7efc8e3b7fd89df4ccc20148207a93d06bd59dae0cf785794fbdec3b +size 925 diff --git a/source/designs/detail/027/027140.json b/source/designs/detail/027/027140.json new file mode 100644 index 0000000000000000000000000000000000000000..613c4a2d0bee8025af62cce6c3539bbeeb598c07 --- /dev/null +++ b/source/designs/detail/027/027140.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c01e8915e239ed502a654eeaadeabfbdf3a73727035408fc8084c9bef0f1c6a +size 1554 diff --git a/source/designs/detail/027/027141.json b/source/designs/detail/027/027141.json new file mode 100644 index 0000000000000000000000000000000000000000..e2a2bd83823dd599e420344299d36ebc9c1a4a3c --- /dev/null +++ b/source/designs/detail/027/027141.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b87a529592a8e2362d11772c12106160c1ea459919dd69335c5b282970e9762 +size 1355 diff --git a/source/designs/detail/027/027142.json b/source/designs/detail/027/027142.json new file mode 100644 index 0000000000000000000000000000000000000000..00bcae42856c4edddc6f8a661c9faf29fa078d35 --- /dev/null +++ b/source/designs/detail/027/027142.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfd53d9151aa09502bb4e7a11a1fe56a45e00800e1b1e8658fe389aefb6d31e +size 1251 diff --git a/source/designs/detail/027/027143.json b/source/designs/detail/027/027143.json new file mode 100644 index 0000000000000000000000000000000000000000..bea98c485d6fbd1ebb19745f4787b4a0cec6658b --- /dev/null +++ b/source/designs/detail/027/027143.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac04519242f2b4c2d0054fa13e8a3bc603dc5fbf9bef33428d7e0e944a98372 +size 1378 diff --git a/source/designs/detail/027/027144.json b/source/designs/detail/027/027144.json new file mode 100644 index 0000000000000000000000000000000000000000..a86174141afe708f1c6c6cd47153c7e930563764 --- /dev/null +++ b/source/designs/detail/027/027144.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e992064fe818fa6a7c9921a07eb22f512d182bccc567fcfe6ca5bcd3ef8c4ccd +size 1426 diff --git a/source/designs/detail/027/027145.json b/source/designs/detail/027/027145.json new file mode 100644 index 0000000000000000000000000000000000000000..cfb79c526acaad28116b5d675326ffe8b80e3f22 --- /dev/null +++ b/source/designs/detail/027/027145.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214a1aa4c85918e6c92c6e33a32aa79873222c4c3e6c23405924bdef6f2e481a +size 1560 diff --git a/source/designs/detail/027147.json b/source/designs/detail/027/027147.json similarity index 100% rename from source/designs/detail/027147.json rename to source/designs/detail/027/027147.json diff --git a/source/designs/detail/027/027148.json b/source/designs/detail/027/027148.json new file mode 100644 index 0000000000000000000000000000000000000000..37c1b5e6f626d4b4f192d65366fb7f7ee2fb1624 --- /dev/null +++ b/source/designs/detail/027/027148.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81d5455329003b8299c1c9ee3ef7cee676be974102c262721c9747f634548ca5 +size 2152 diff --git a/source/designs/detail/027/027149.json b/source/designs/detail/027/027149.json new file mode 100644 index 0000000000000000000000000000000000000000..aaf597fab97a9a14f35873bfec6768dc339b6d89 --- /dev/null +++ b/source/designs/detail/027/027149.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f79131932b051dd1e4a38aef3d3360c1282d533a12d78320ee9721a33f5eef7 +size 1615 diff --git a/source/designs/detail/027/027150.json b/source/designs/detail/027/027150.json new file mode 100644 index 0000000000000000000000000000000000000000..48398132f00f7a5e23371724cd5d39106d0ec2fb --- /dev/null +++ b/source/designs/detail/027/027150.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd4d9d04c12c7388e7b01e4aa000d5ef017873c4ef0392cea0b390ad145269a +size 1563 diff --git a/source/designs/detail/027/027157.json b/source/designs/detail/027/027157.json new file mode 100644 index 0000000000000000000000000000000000000000..578d2fb0ba0e02e1da47849cdca53dcc0b8664e7 --- /dev/null +++ b/source/designs/detail/027/027157.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db0358a640c4ab2afa2bb60f6ef1f199beb49cdcddebce85c7242fe2c05ac9f +size 1076 diff --git a/source/designs/detail/027/027160.json b/source/designs/detail/027/027160.json new file mode 100644 index 0000000000000000000000000000000000000000..0baa4e8174c731499fb30814c7db8c27034a6da3 --- /dev/null +++ b/source/designs/detail/027/027160.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f962df400e6d8c2de241d894845447d3d4c20ff33c77a48c0793e9a668f02e1e +size 1554 diff --git a/source/designs/detail/027/027179.json b/source/designs/detail/027/027179.json new file mode 100644 index 0000000000000000000000000000000000000000..c85544a3eb8a586eba0d4f3197975d94ef577664 --- /dev/null +++ b/source/designs/detail/027/027179.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aad78a8880760659357dcf8851fd70d23722433e2418b0a06fcfe59b5fc06067 +size 1579 diff --git a/source/designs/detail/027/027181.json b/source/designs/detail/027/027181.json new file mode 100644 index 0000000000000000000000000000000000000000..9d94a0cde8f85a88a3f9b157d855792546037f4b --- /dev/null +++ b/source/designs/detail/027/027181.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a318ee1881005d7dfcc7ac5c72f2364b6044ae7af8486009cfde110b8ce4540 +size 1392 diff --git a/source/designs/detail/027/027182.json b/source/designs/detail/027/027182.json new file mode 100644 index 0000000000000000000000000000000000000000..2a72a41a59abaf8704234bef18a8a068831ac9c0 --- /dev/null +++ b/source/designs/detail/027/027182.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd4114bc3e4c393595fcc5d2c89155473747c10774bd73ee56fc52d96b2aafee +size 1391 diff --git a/source/designs/detail/027/027184.json b/source/designs/detail/027/027184.json new file mode 100644 index 0000000000000000000000000000000000000000..edc571e70f906a5b3b10856ae339afd85431b562 --- /dev/null +++ b/source/designs/detail/027/027184.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d461a1862827a60191da6baecb045afe48bf8090d023326c2a8e60889401835a +size 1316 diff --git a/source/designs/detail/027/027185.json b/source/designs/detail/027/027185.json new file mode 100644 index 0000000000000000000000000000000000000000..c6548f22fa2caf6bcf6fd82e6a1e5ebc0b3976d7 --- /dev/null +++ b/source/designs/detail/027/027185.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b013949840fec3023913283bfa6e00258214be7160a973d1cec2a60c5b9ebf7a +size 1505 diff --git a/source/designs/detail/027/027186.json b/source/designs/detail/027/027186.json new file mode 100644 index 0000000000000000000000000000000000000000..ab791cb33a853a01c574defdfae1071786c90ccc --- /dev/null +++ b/source/designs/detail/027/027186.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83fc88a61f5087323ef21e2dc102254f54c8ca362b795c7a06428c94890a3b74 +size 1558 diff --git a/source/designs/detail/027/027187.json b/source/designs/detail/027/027187.json new file mode 100644 index 0000000000000000000000000000000000000000..07fa1cebbd76ff74fb99ca2f3f633b85a6708cad --- /dev/null +++ b/source/designs/detail/027/027187.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:544242a1a427baacf6e06d59ed1c5a0c05abe5579edcbfef031ccf1d6e2be812 +size 1781 diff --git a/source/designs/detail/027/027188.json b/source/designs/detail/027/027188.json new file mode 100644 index 0000000000000000000000000000000000000000..a5b61bc1fc59b271376d18a295f63340f1106120 --- /dev/null +++ b/source/designs/detail/027/027188.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9609bfee7f19c9b0d243b790f735d152377a277bff4b85b3a2b274ab70aa91 +size 1503 diff --git a/source/designs/detail/027/027189.json b/source/designs/detail/027/027189.json new file mode 100644 index 0000000000000000000000000000000000000000..d1d4b3d8ff009b6707ea4fe707231e0b9bf3c420 --- /dev/null +++ b/source/designs/detail/027/027189.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3544e693684b1c8422143fac26a5749361b9156a714265233fdb2a3b02c2660 +size 1269 diff --git a/source/designs/detail/027/027190.json b/source/designs/detail/027/027190.json new file mode 100644 index 0000000000000000000000000000000000000000..6db22cbcf9db253ce9540fd609861e9979c0b480 --- /dev/null +++ b/source/designs/detail/027/027190.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11db44fe54fbf981e167ddc7458ae57fe095180a7b81e7657909bba09009663 +size 1630 diff --git a/source/designs/detail/027/027191.json b/source/designs/detail/027/027191.json new file mode 100644 index 0000000000000000000000000000000000000000..e02d9bcc73c9a43d3630395efeb994ff96b5ba48 --- /dev/null +++ b/source/designs/detail/027/027191.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e8bc6b18542e873ece20153f9a879a92123f42efe3331c2b82fd52688de64a +size 3478 diff --git a/source/designs/detail/027/027192.json b/source/designs/detail/027/027192.json new file mode 100644 index 0000000000000000000000000000000000000000..03aae9dee7bd5fe3358f046fb55dfba96f123886 --- /dev/null +++ b/source/designs/detail/027/027192.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eddcd9e9e88c74681213cfcfe6107040380aec2fd3c850dd8c08f0ce32e6769 +size 1390 diff --git a/source/designs/detail/027/027193.json b/source/designs/detail/027/027193.json new file mode 100644 index 0000000000000000000000000000000000000000..d15343fae3a09aac43d269b6b0ba65d094808579 --- /dev/null +++ b/source/designs/detail/027/027193.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3c74b0f0be51ea03b58892c383c18c9d2f277fe5c5e099887b3a36d7a8feefb +size 1180 diff --git a/source/designs/detail/027/027194.json b/source/designs/detail/027/027194.json new file mode 100644 index 0000000000000000000000000000000000000000..546ac23693d03ea45e19e8f54a7b001f2cf90f46 --- /dev/null +++ b/source/designs/detail/027/027194.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfa5db125c6c69a539e91bd0b83bc641b67cd1d25e4d341fc5e792b1f845e1f5 +size 1181 diff --git a/source/designs/detail/027/027195.json b/source/designs/detail/027/027195.json new file mode 100644 index 0000000000000000000000000000000000000000..90ab3213c402122edf63581d88691c4016785d73 --- /dev/null +++ b/source/designs/detail/027/027195.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed95c509868fd01a9a97fb5aff04eb354e9bb7dcd41647ac8f1d0c1a247ad780 +size 1206 diff --git a/source/designs/detail/027/027196.json b/source/designs/detail/027/027196.json new file mode 100644 index 0000000000000000000000000000000000000000..c71488b8f54a59e887fa05553d22b42daeaa2806 --- /dev/null +++ b/source/designs/detail/027/027196.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2f2e8f58498f01988cfa87ba8371e7e1c400b35d18f1d21d6f36fe70101e9b +size 1291 diff --git a/source/designs/detail/027/027197.json b/source/designs/detail/027/027197.json new file mode 100644 index 0000000000000000000000000000000000000000..8c5759c7a87fc236d363c9db2c029ea2e0c2122b --- /dev/null +++ b/source/designs/detail/027/027197.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a083da542112337dfd33fb551e903628148b4c5606e4a9db0e92774b6deb2dc2 +size 1178 diff --git a/source/designs/detail/027/027200.json b/source/designs/detail/027/027200.json new file mode 100644 index 0000000000000000000000000000000000000000..bfa69a5de3a554e9b6c86f02c1041d49c010b697 --- /dev/null +++ b/source/designs/detail/027/027200.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f82ff43aba67cce58322832bf9e0eaef7cc29aa6bad8068a6c8583ca9e0e98 +size 1249 diff --git a/source/designs/detail/027/027201.json b/source/designs/detail/027/027201.json new file mode 100644 index 0000000000000000000000000000000000000000..be03cf20a64253d4737cc45999abe8a6044b12e8 --- /dev/null +++ b/source/designs/detail/027/027201.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c488d50b030fba1bbe8c239b40fa9abe9a8b2456962df3dd0bec7dab4737252a +size 2020 diff --git a/source/designs/detail/027/027204.json b/source/designs/detail/027/027204.json new file mode 100644 index 0000000000000000000000000000000000000000..ed7b5a47fe4c80522da0c20a1caf3e4677ba4ef0 --- /dev/null +++ b/source/designs/detail/027/027204.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b6dacdea464e9e4f984f16c304bd6b0f24896f19b39bf19b4a456030cb1634 +size 1348 diff --git a/source/designs/detail/027/027205.json b/source/designs/detail/027/027205.json new file mode 100644 index 0000000000000000000000000000000000000000..645e12be811085242a03073107a2644c9949f526 --- /dev/null +++ b/source/designs/detail/027/027205.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df3fcc80c31cc9ccf7c81d29f4c541b13391bc7716d74474fba5040f584fd1a +size 1696 diff --git a/source/designs/detail/027/027206.json b/source/designs/detail/027/027206.json new file mode 100644 index 0000000000000000000000000000000000000000..d87133736dd49b251baaa1333a547997382ef999 --- /dev/null +++ b/source/designs/detail/027/027206.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4c09148e08aa3b6707c9263b83a0b2144473b34a8754adf07c95eb248fc9f1 +size 1424 diff --git a/source/designs/detail/027/027207.json b/source/designs/detail/027/027207.json new file mode 100644 index 0000000000000000000000000000000000000000..c5b7808db493edc65e51882c281d724f47c1e587 --- /dev/null +++ b/source/designs/detail/027/027207.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab48c5536dd55287065f6a421503db492dc27d8cff9ada8d4f453942d6e99ec +size 1853 diff --git a/source/designs/detail/027/027209.json b/source/designs/detail/027/027209.json new file mode 100644 index 0000000000000000000000000000000000000000..22e1273a1d75d0f4b03738cb46ffa1a5c2537e50 --- /dev/null +++ b/source/designs/detail/027/027209.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0a0a379540d080d5dbd66cccea0c919f85da073efaafba15160cde43aca9aa +size 1451 diff --git a/source/designs/detail/027/027210.json b/source/designs/detail/027/027210.json new file mode 100644 index 0000000000000000000000000000000000000000..d61499e42b7a3c40d641857365f22823bfde176f --- /dev/null +++ b/source/designs/detail/027/027210.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a82494a99e8ac9f3f66b5aed06947000b3766294821175ee08bfbdaec12025e +size 1577 diff --git a/source/designs/detail/027/027211.json b/source/designs/detail/027/027211.json new file mode 100644 index 0000000000000000000000000000000000000000..8526590e1bf07f040ffded52aef49f401468213c --- /dev/null +++ b/source/designs/detail/027/027211.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:658cfdb48585f2bce3072bdcd2391710729c066d4c63c5fdea997d7f64b7b454 +size 1247 diff --git a/source/designs/detail/027/027212.json b/source/designs/detail/027/027212.json new file mode 100644 index 0000000000000000000000000000000000000000..7b14652f31fb6c4fc7fda0d61909e01932aacd96 --- /dev/null +++ b/source/designs/detail/027/027212.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:823777ac4f3a3dbdea2f1decc3d3d9b9c7ef40e98d5259308951f7a61626b81f +size 1272 diff --git a/source/designs/detail/027/027213.json b/source/designs/detail/027/027213.json new file mode 100644 index 0000000000000000000000000000000000000000..4bb2dfb86128d2a9025b67a47ccf31e01ddb9d65 --- /dev/null +++ b/source/designs/detail/027/027213.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f0a0530f48bdfe6d16d261df17b51aa28be03d706ef5183fdd5757f655e178 +size 1405 diff --git a/source/designs/detail/027/027214.json b/source/designs/detail/027/027214.json new file mode 100644 index 0000000000000000000000000000000000000000..7a609e4ee5139b81c20d858a5cfec47f6d115d12 --- /dev/null +++ b/source/designs/detail/027/027214.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137628613c060bda3bf9405e242628fbdafe387bcdc9fc5f26164e2b59bd2796 +size 1248 diff --git a/source/designs/detail/027/027265.json b/source/designs/detail/027/027265.json new file mode 100644 index 0000000000000000000000000000000000000000..41d04a10d7291a613111fd2970c57cb537eb1fbd --- /dev/null +++ b/source/designs/detail/027/027265.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29cc4b0919e732df3a9252ea2d04e44846f531be8666cb56aa58745864fb80d5 +size 1597 diff --git a/source/designs/detail/027/027290.json b/source/designs/detail/027/027290.json new file mode 100644 index 0000000000000000000000000000000000000000..156d7f3c0fda119b3e7e034a51d40a69b53f0b12 --- /dev/null +++ b/source/designs/detail/027/027290.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc4969be5559ec52419e4bc2014a6ea095c82de62cba54eb3d438648cca0900e +size 1840 diff --git a/source/designs/detail/027321.json b/source/designs/detail/027/027321.json similarity index 100% rename from source/designs/detail/027321.json rename to source/designs/detail/027/027321.json diff --git a/source/designs/detail/027322.json b/source/designs/detail/027/027322.json similarity index 100% rename from source/designs/detail/027322.json rename to source/designs/detail/027/027322.json diff --git a/source/designs/detail/027324.json b/source/designs/detail/027/027324.json similarity index 100% rename from source/designs/detail/027324.json rename to source/designs/detail/027/027324.json diff --git a/source/designs/detail/027325.json b/source/designs/detail/027/027325.json similarity index 100% rename from source/designs/detail/027325.json rename to source/designs/detail/027/027325.json diff --git a/source/designs/detail/027326.json b/source/designs/detail/027/027326.json similarity index 100% rename from source/designs/detail/027326.json rename to source/designs/detail/027/027326.json diff --git a/source/designs/detail/027327.json b/source/designs/detail/027/027327.json similarity index 100% rename from source/designs/detail/027327.json rename to source/designs/detail/027/027327.json diff --git a/source/designs/detail/027328.json b/source/designs/detail/027/027328.json similarity index 100% rename from source/designs/detail/027328.json rename to source/designs/detail/027/027328.json diff --git a/source/designs/detail/027/027329.json b/source/designs/detail/027/027329.json new file mode 100644 index 0000000000000000000000000000000000000000..25389c7f214755cd91714c60b60fa406d0ba458e --- /dev/null +++ b/source/designs/detail/027/027329.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e896d87d034d4d0ef05d6590885574d5ec0de488907dc6e0623fa5ff279ba8 +size 1370 diff --git a/source/designs/detail/027/027330.json b/source/designs/detail/027/027330.json new file mode 100644 index 0000000000000000000000000000000000000000..aa82c83f235d28e5a84dafbd9dbdd50a6e30226c --- /dev/null +++ b/source/designs/detail/027/027330.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600ac4bfc01054d17ee7638127c3bc91a84fafd8967baadf9c57e34f3be33608 +size 1376 diff --git a/source/designs/detail/027/027331.json b/source/designs/detail/027/027331.json new file mode 100644 index 0000000000000000000000000000000000000000..86e278a6e74dd8dd785f7ff944902cc763a7f98b --- /dev/null +++ b/source/designs/detail/027/027331.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5062413db2b98884c5a523586be5d4f01346c5860663e322c7108356b1a885f3 +size 1391 diff --git a/source/designs/detail/027/027332.json b/source/designs/detail/027/027332.json new file mode 100644 index 0000000000000000000000000000000000000000..3fda96b2f41b8dae7ca4fe5961b94e58e78fbac8 --- /dev/null +++ b/source/designs/detail/027/027332.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd0b293f7b4c70dbc45c33d05ddbe062586cbbbd4cdc3eb1b691ec80d895ccf +size 1120 diff --git a/source/designs/detail/027/027333.json b/source/designs/detail/027/027333.json new file mode 100644 index 0000000000000000000000000000000000000000..983e0f0b6c92cb4f6deff6657a0e6a385917d11b --- /dev/null +++ b/source/designs/detail/027/027333.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8351336ba368c2281072a5ece949459535a2c1f784bf6114f359bcd3c11ce884 +size 1417 diff --git a/source/designs/detail/027/027334.json b/source/designs/detail/027/027334.json new file mode 100644 index 0000000000000000000000000000000000000000..4634769db084a508d752b391518a3a8946315f59 --- /dev/null +++ b/source/designs/detail/027/027334.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1275a57525217067bbf3992ccfce38e954ad552e70a86ffef787168277083247 +size 1303 diff --git a/source/designs/detail/027/027335.json b/source/designs/detail/027/027335.json new file mode 100644 index 0000000000000000000000000000000000000000..a4e6fb97f1d7b996f264bf33d31e0b28f30d26dd --- /dev/null +++ b/source/designs/detail/027/027335.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dc45dc277c97b52db4b2434f1bdde5d7b904d3f66abd9ddf0c396dca90de3ce +size 1387 diff --git a/source/designs/detail/027/027336.json b/source/designs/detail/027/027336.json new file mode 100644 index 0000000000000000000000000000000000000000..8e36386a8310604e4980148753d744840b4996c2 --- /dev/null +++ b/source/designs/detail/027/027336.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275667de172a14e91c0a8cebec7943a17318c2a53c1c3e82884eec1a0bdbe9aa +size 1510 diff --git a/source/designs/detail/027/027337.json b/source/designs/detail/027/027337.json new file mode 100644 index 0000000000000000000000000000000000000000..e0401a33b030b4045adc0f7b671c78ca8c417e79 --- /dev/null +++ b/source/designs/detail/027/027337.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14ee68c1fc6c1d4c522e4fad33ea1864ae338fe642abe3941a2a647f4d2a21c0 +size 1219 diff --git a/source/designs/detail/027/027338.json b/source/designs/detail/027/027338.json new file mode 100644 index 0000000000000000000000000000000000000000..4d5019bdc6628caef1444f0468ed9e0815e2c612 --- /dev/null +++ b/source/designs/detail/027/027338.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c10c3978a6d0467dccc7744d8dae9910d15de4d4bbd0b779acb10865e21659 +size 1522 diff --git a/source/designs/detail/027/027339.json b/source/designs/detail/027/027339.json new file mode 100644 index 0000000000000000000000000000000000000000..f2fd7e4c64ee1d9383827930df02e4822de87ed2 --- /dev/null +++ b/source/designs/detail/027/027339.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f8a6b26a3688920c0076485f762996ec1c11ca64d127a08db03ef6a0d4f047 +size 1412 diff --git a/source/designs/detail/027/027340.json b/source/designs/detail/027/027340.json new file mode 100644 index 0000000000000000000000000000000000000000..1956d210c080b514f20cd9eaa53c2df0e8902411 --- /dev/null +++ b/source/designs/detail/027/027340.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b989b90c262c6c4448148b7753fb9f85359997d4b13f62a1574b367b0588db83 +size 1340 diff --git a/source/designs/detail/027/027341.json b/source/designs/detail/027/027341.json new file mode 100644 index 0000000000000000000000000000000000000000..db4242c44974891e64a68a40cafd7bc177f388c6 --- /dev/null +++ b/source/designs/detail/027/027341.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ea5d8b09731680bb632778487e82cd462a8fb31d6fec7db4ee3492508ef35e +size 1147 diff --git a/source/designs/detail/027/027342.json b/source/designs/detail/027/027342.json new file mode 100644 index 0000000000000000000000000000000000000000..4b559dc11af1bab097ecd00144bfac343e7eab86 --- /dev/null +++ b/source/designs/detail/027/027342.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0228278d60b3c5ab5033856ee90d3782224d7ad73163228af27014351af7282 +size 1401 diff --git a/source/designs/detail/027/027343.json b/source/designs/detail/027/027343.json new file mode 100644 index 0000000000000000000000000000000000000000..cbc37ccc4d66fe385c5d4de6af6d84357a99c7e4 --- /dev/null +++ b/source/designs/detail/027/027343.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61074087a15b8608ed31c807c20b8a9610fede6a2ff50f2a57077383e464616 +size 1229 diff --git a/source/designs/detail/027/027344.json b/source/designs/detail/027/027344.json new file mode 100644 index 0000000000000000000000000000000000000000..75395508710b5f98bf31339c231cfe0587f40c83 --- /dev/null +++ b/source/designs/detail/027/027344.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952cef75e589a2a8ab4e0753e4a2bf7da11abd4f5aba5587c66c24719ae3c92c +size 1195 diff --git a/source/designs/detail/027/027345.json b/source/designs/detail/027/027345.json new file mode 100644 index 0000000000000000000000000000000000000000..e5fe4256a28a5c3d1a97253ed5ff6f8bf7b12998 --- /dev/null +++ b/source/designs/detail/027/027345.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c593c5f7b4214f5708f98836eee6166545fb5ac7aff06c9ed7010620e946966 +size 1321 diff --git a/source/designs/detail/027/027346.json b/source/designs/detail/027/027346.json new file mode 100644 index 0000000000000000000000000000000000000000..a03b7d2dfe581b3931cd16b5d66b3740d1e75cb4 --- /dev/null +++ b/source/designs/detail/027/027346.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c290829c96798e35b7a1e841394e259a3dd6ff466a29a7a7b7aa3f102c230378 +size 1607 diff --git a/source/designs/detail/027/027347.json b/source/designs/detail/027/027347.json new file mode 100644 index 0000000000000000000000000000000000000000..5683cd8220623c027fc1bd8da1225930f3ee26ba --- /dev/null +++ b/source/designs/detail/027/027347.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a61283bbc22720c6e731ccfe9ce07caef4722fc7e7cfbb7c8306085c6207742 +size 1364 diff --git a/source/designs/detail/027/027348.json b/source/designs/detail/027/027348.json new file mode 100644 index 0000000000000000000000000000000000000000..4d32e9d16c8da3804bb2953f600b308b23b10ca9 --- /dev/null +++ b/source/designs/detail/027/027348.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0594a684d094dd4ef025ce82cca047fee578faf6477ee14b67fd97eddb45c4fd +size 1421 diff --git a/source/designs/detail/027/027349.json b/source/designs/detail/027/027349.json new file mode 100644 index 0000000000000000000000000000000000000000..847b36c345247ce7bf456583b57956a844189b96 --- /dev/null +++ b/source/designs/detail/027/027349.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99218c5c35d04faa1e5fdf0e03c354689820e2a3ead9e0dfb3da4fdb12f2e5a +size 1223 diff --git a/source/designs/detail/027/027350.json b/source/designs/detail/027/027350.json new file mode 100644 index 0000000000000000000000000000000000000000..d289f815705fa5ef37efb75da84d187acf5b312c --- /dev/null +++ b/source/designs/detail/027/027350.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf80204e557b95695e13374c49885b7082eb54f1e715fba94b1c62690ac00030 +size 1315 diff --git a/source/designs/detail/027/027351.json b/source/designs/detail/027/027351.json new file mode 100644 index 0000000000000000000000000000000000000000..b98c34926888b527d2399b56b49c80acff731353 --- /dev/null +++ b/source/designs/detail/027/027351.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37b2534c8f204ef593d8fe5b0ad569c9076e3dbe651badd1648b1a4db4f8fc2 +size 1363 diff --git a/source/designs/detail/027/027352.json b/source/designs/detail/027/027352.json new file mode 100644 index 0000000000000000000000000000000000000000..0878bc7d8feb91dae66a1e9e8286edaa95e67cc6 --- /dev/null +++ b/source/designs/detail/027/027352.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:780b0cfb7aae03f606814b086b7d04afb35c0b666b7b85fd8844cc71b2c0b53e +size 1447 diff --git a/source/designs/detail/027/027353.json b/source/designs/detail/027/027353.json new file mode 100644 index 0000000000000000000000000000000000000000..abf1a2d1f78787c4479c75e469d1860ba1d849ba --- /dev/null +++ b/source/designs/detail/027/027353.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa86b866fef007a008793d5260c3e3669d02e4e5434a8162e6f7b1c9433086d +size 1666 diff --git a/source/designs/detail/027/027354.json b/source/designs/detail/027/027354.json new file mode 100644 index 0000000000000000000000000000000000000000..78d034a9480ba1b72415af7eb900a701d029bc59 --- /dev/null +++ b/source/designs/detail/027/027354.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7305ace11bac6510bda8a595c7769c1d7d379b75c1114169b07d9e68e920e3ca +size 1731 diff --git a/source/designs/detail/027/027355.json b/source/designs/detail/027/027355.json new file mode 100644 index 0000000000000000000000000000000000000000..825aa87f3c2223a3c70485bd395e402878d4030f --- /dev/null +++ b/source/designs/detail/027/027355.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3533252ee5c96f64859537036f9f4087c80122bdd1e60e2215e1f48c792de09d +size 1522 diff --git a/source/designs/detail/027/027356.json b/source/designs/detail/027/027356.json new file mode 100644 index 0000000000000000000000000000000000000000..40c944f2287090ed0552fcd16a5aa89b2a227442 --- /dev/null +++ b/source/designs/detail/027/027356.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51053e217f7d1059199feee48d24993fe420cc15556744ad9d24d1752d8899eb +size 1598 diff --git a/source/designs/detail/027/027357.json b/source/designs/detail/027/027357.json new file mode 100644 index 0000000000000000000000000000000000000000..d43dd1be56cb63b298f1b31e369c630b9b1a53f8 --- /dev/null +++ b/source/designs/detail/027/027357.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a15a0b832318c25184cd8a4e9d3dfe867bc1d774aeb1c005a537c8a773bd7b57 +size 1255 diff --git a/source/designs/detail/027/027358.json b/source/designs/detail/027/027358.json new file mode 100644 index 0000000000000000000000000000000000000000..4e473cff67d3a5cd106a33cd835121a88cffb578 --- /dev/null +++ b/source/designs/detail/027/027358.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afebcb6e17ab4564b7fb3a210ad37da215af75ea81167ff9b5c60c809ee51a64 +size 2074 diff --git a/source/designs/detail/027/027359.json b/source/designs/detail/027/027359.json new file mode 100644 index 0000000000000000000000000000000000000000..0a1c5a2b2e38771c2c71c04991e80dd45cd138e8 --- /dev/null +++ b/source/designs/detail/027/027359.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b91624a62c8a9bcbb3114b1002e4a761dcd2b1bb30cdff5815221d8e612dd2f +size 1336 diff --git a/source/designs/detail/027/027360.json b/source/designs/detail/027/027360.json new file mode 100644 index 0000000000000000000000000000000000000000..b1e9484c15ef4f1eb717c7b3976d6ec910a407ad --- /dev/null +++ b/source/designs/detail/027/027360.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a48905ae24bb69f5d35bd896adb48b3ff5a871a5e28b2bdb379bbf65a4ce83 +size 1249 diff --git a/source/designs/detail/027/027361.json b/source/designs/detail/027/027361.json new file mode 100644 index 0000000000000000000000000000000000000000..842f3a9092fe679b4b8267036f7279be96e8c200 --- /dev/null +++ b/source/designs/detail/027/027361.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5ae60d1103ca9f711d8ae5d5590dc2ed72ed5fa9b82a03f10beafb50e9cdcc +size 1350 diff --git a/source/designs/detail/027/027362.json b/source/designs/detail/027/027362.json new file mode 100644 index 0000000000000000000000000000000000000000..ca4abc9bfc358a9cc1f4ed8926322a40e959b95a --- /dev/null +++ b/source/designs/detail/027/027362.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1006c0d7c81ed579bd149cbaa4e1e3d946b15d2f19e23c7a4a17b49cd06ed2e4 +size 1300 diff --git a/source/designs/detail/027/027363.json b/source/designs/detail/027/027363.json new file mode 100644 index 0000000000000000000000000000000000000000..91a3762a06c158c5a6cdba6503532943e6e195ab --- /dev/null +++ b/source/designs/detail/027/027363.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cef3e2b8cdf620e284dacf414148ee59aa849229d76bf065df81663722315ea +size 1674 diff --git a/source/designs/detail/027/027364.json b/source/designs/detail/027/027364.json new file mode 100644 index 0000000000000000000000000000000000000000..0911ea036dedbede5a01f0e9d38f664144b8e420 --- /dev/null +++ b/source/designs/detail/027/027364.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86c8603a2734e4ae17379b3fad919f962aeb180ae36ffb5214e705b9c39f8bb +size 1462 diff --git a/source/designs/detail/027/027365.json b/source/designs/detail/027/027365.json new file mode 100644 index 0000000000000000000000000000000000000000..85dc2f631564b12820cbff3b076c65f95515badb --- /dev/null +++ b/source/designs/detail/027/027365.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bbb085a8ae47099049cb7c8c5e17a35d5746578936512f2601cd5c59bbc032 +size 1159 diff --git a/source/designs/detail/027/027366.json b/source/designs/detail/027/027366.json new file mode 100644 index 0000000000000000000000000000000000000000..b22cfae2ad40ed56dfe0d11509ebfc9bc26d658c --- /dev/null +++ b/source/designs/detail/027/027366.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4b6c991de57bcfdccda06303d7a5a01f3a220708f8f581674f7093875bbbaf1 +size 1773 diff --git a/source/designs/detail/027/027367.json b/source/designs/detail/027/027367.json new file mode 100644 index 0000000000000000000000000000000000000000..ed2062b1ff913b49eeda98dc10475b6568db0176 --- /dev/null +++ b/source/designs/detail/027/027367.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c5dbe031f88a84521abe4f4cb22844d692c30a61856e772895a3199583db88 +size 1508 diff --git a/source/designs/detail/027/027368.json b/source/designs/detail/027/027368.json new file mode 100644 index 0000000000000000000000000000000000000000..647747062cde8d0217582006af250528e8c7ab9e --- /dev/null +++ b/source/designs/detail/027/027368.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bcfc7f3129c5a958ba3cdd35048c860fb539814d29b5b795e64e5811eda1682 +size 1313 diff --git a/source/designs/detail/027/027369.json b/source/designs/detail/027/027369.json new file mode 100644 index 0000000000000000000000000000000000000000..bf65dc336bfad7e0002a01d4cd4022daa190f830 --- /dev/null +++ b/source/designs/detail/027/027369.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e9a7412a7d01165fa56b8b881caa4909ee3bf9d0440216502755a5f592c102 +size 1367 diff --git a/source/designs/detail/027/027370.json b/source/designs/detail/027/027370.json new file mode 100644 index 0000000000000000000000000000000000000000..f14f9037af8c7775f59da6c14a030faaa89177c3 --- /dev/null +++ b/source/designs/detail/027/027370.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f8fcd855cb4921b9270ba0f09df7796dbe63eea92be4df2403a8a843cdd410 +size 1154 diff --git a/source/designs/detail/027/027371.json b/source/designs/detail/027/027371.json new file mode 100644 index 0000000000000000000000000000000000000000..26dcb512e04fb89a51a8da4c339e8461cecb3fe6 --- /dev/null +++ b/source/designs/detail/027/027371.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22cafdc0cf03bd12cc384c875818dff0abd27c5780d74ffe3a916648294af68a +size 1384 diff --git a/source/designs/detail/027/027372.json b/source/designs/detail/027/027372.json new file mode 100644 index 0000000000000000000000000000000000000000..c67e8eaedf1e4f6c8db50a4ddeb593d31555ad86 --- /dev/null +++ b/source/designs/detail/027/027372.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412a37286eab892bdf76a66cbf8bf1ececf045b5307df8b4cea729e367329996 +size 1262 diff --git a/source/designs/detail/027/027373.json b/source/designs/detail/027/027373.json new file mode 100644 index 0000000000000000000000000000000000000000..eb71a4ad74d5f88c05894f78d69c04168d4c1f48 --- /dev/null +++ b/source/designs/detail/027/027373.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8161e6ee70bceb0a3003a9fb9907392ee2bbf5e4722bc762d41cf058ccd039 +size 1226 diff --git a/source/designs/detail/027/027374.json b/source/designs/detail/027/027374.json new file mode 100644 index 0000000000000000000000000000000000000000..3233331199a687784b4f142bc93e07513258e426 --- /dev/null +++ b/source/designs/detail/027/027374.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6e11cc483f9c0f94bb902c7a28774a8aabd81536688ba84dadb10846962612 +size 1356 diff --git a/source/designs/detail/027/027375.json b/source/designs/detail/027/027375.json new file mode 100644 index 0000000000000000000000000000000000000000..69e79ef5fbbdebddbc9b6890e854b22c572958ef --- /dev/null +++ b/source/designs/detail/027/027375.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de88e7a524a3501747275be88588c1d8356ea4b7218e3b0049ac3d5e90c8d6f +size 2080 diff --git a/source/designs/detail/027/027376.json b/source/designs/detail/027/027376.json new file mode 100644 index 0000000000000000000000000000000000000000..39581d3041d4060adb64d53c54e4c7ca5a858792 --- /dev/null +++ b/source/designs/detail/027/027376.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a4608b1d50782f5d37fb3177a5ace92560c3544ec4ee416a7fd4e21409b46d2 +size 1570 diff --git a/source/designs/detail/027/027377.json b/source/designs/detail/027/027377.json new file mode 100644 index 0000000000000000000000000000000000000000..bf15c146c13d02e65495f0fd2553d4671dc9f7a4 --- /dev/null +++ b/source/designs/detail/027/027377.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fcd5016153fc0d5a5be1c8d7036313e87f0b2933e25194f5e9b35b9b62b5103 +size 2215 diff --git a/source/designs/detail/027/027378.json b/source/designs/detail/027/027378.json new file mode 100644 index 0000000000000000000000000000000000000000..4708b231a88fee435eb580830f1d983e63d0bb45 --- /dev/null +++ b/source/designs/detail/027/027378.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2548f0ace3ff812e9a3e909a3a35a877484eaaf711c30702e81d180ae5a21253 +size 1580 diff --git a/source/designs/detail/027/027379.json b/source/designs/detail/027/027379.json new file mode 100644 index 0000000000000000000000000000000000000000..222da470bd9d42d1e83f074875f8d5c4cec59a5b --- /dev/null +++ b/source/designs/detail/027/027379.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8903282735a9219ff768e723090cfbe01a6e1cfea2a1f6458f0b6159b950626c +size 2535 diff --git a/source/designs/detail/027/027380.json b/source/designs/detail/027/027380.json new file mode 100644 index 0000000000000000000000000000000000000000..3977c2a1aa3089cbca9d53b6ee848d79bc046778 --- /dev/null +++ b/source/designs/detail/027/027380.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ce21c99894da61cc7de5f1b86f07a9ee0590af88ee279793dde8570ab06ee1 +size 1640 diff --git a/source/designs/detail/027/027381.json b/source/designs/detail/027/027381.json new file mode 100644 index 0000000000000000000000000000000000000000..00425833afc561246fe396eb6f6f681d25f648d1 --- /dev/null +++ b/source/designs/detail/027/027381.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece60487bc8c9ccd875fb122754d5b9ee6adb5d8651d5f77a5adb70faaf542f6 +size 1344 diff --git a/source/designs/detail/027/027382.json b/source/designs/detail/027/027382.json new file mode 100644 index 0000000000000000000000000000000000000000..bdf657f79546d878c31dcca852eef1bd2c7a2d8e --- /dev/null +++ b/source/designs/detail/027/027382.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278c7c1b23a338077fef4396c535488eaae5ff9e6cde9b5e31ac52b52d39aaba +size 1600 diff --git a/source/designs/detail/027/027383.json b/source/designs/detail/027/027383.json new file mode 100644 index 0000000000000000000000000000000000000000..25c269b46975d6f20bb1bdab57603469badf9375 --- /dev/null +++ b/source/designs/detail/027/027383.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adae2f33caa6a8bb9e82a2e1ab76b97d3f9c74d4d65e17e309a50e85e4fdd40d +size 1545 diff --git a/source/designs/detail/027/027384.json b/source/designs/detail/027/027384.json new file mode 100644 index 0000000000000000000000000000000000000000..9a7091d938bceabc4c281ea79789d4cc9ae04325 --- /dev/null +++ b/source/designs/detail/027/027384.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f83b50fecfccf83d7ac06c4c0fa36e1f1eea4503448c3316eb53b4955e3a00e +size 1542 diff --git a/source/designs/detail/027/027385.json b/source/designs/detail/027/027385.json new file mode 100644 index 0000000000000000000000000000000000000000..6d4b0207b0c421c5c8dba19cceee85f7cf2dee36 --- /dev/null +++ b/source/designs/detail/027/027385.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fcd4b592316228d2882bc39d4408c41477bec30a146b0473c9ca2f30d3d92fa +size 1622 diff --git a/source/designs/detail/027/027386.json b/source/designs/detail/027/027386.json new file mode 100644 index 0000000000000000000000000000000000000000..474642de0ba4a248834f44ad3c9f1a69f07772aa --- /dev/null +++ b/source/designs/detail/027/027386.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a95bcd77d50ee07a6e46332e1acd4ec46aa3a89979d8626cd12fe17f0a89a2c +size 1684 diff --git a/source/designs/detail/027/027387.json b/source/designs/detail/027/027387.json new file mode 100644 index 0000000000000000000000000000000000000000..437fae4c92c527223a076798c85511d7b89f289d --- /dev/null +++ b/source/designs/detail/027/027387.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59dfbd94f77de2c6eda0b528108c58a2159c92b35b9eb7c4c944a4207b668750 +size 1591 diff --git a/source/designs/detail/027/027388.json b/source/designs/detail/027/027388.json new file mode 100644 index 0000000000000000000000000000000000000000..1000bd9501a5633ab5b56bc1ed089403a8e388ed --- /dev/null +++ b/source/designs/detail/027/027388.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3163b72e090aac180cc2f9730ca8bbca1771f6d9d346bf5aed6972ca3be5cb90 +size 1415 diff --git a/source/designs/detail/027/027389.json b/source/designs/detail/027/027389.json new file mode 100644 index 0000000000000000000000000000000000000000..a4a54e5bac1b0074550a38cfe50177862e347093 --- /dev/null +++ b/source/designs/detail/027/027389.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1816b56aec06c785ea40de236f552731dbe5c6766726e08176803252e349c1be +size 1990 diff --git a/source/designs/detail/027/027390.json b/source/designs/detail/027/027390.json new file mode 100644 index 0000000000000000000000000000000000000000..5a7a50ffa796846b1268a0b3f13890c7e14a06ca --- /dev/null +++ b/source/designs/detail/027/027390.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c11f65d8014e15365ef535845d13ecab9c7b9437d66fc59e2ea4c63c244a65 +size 1729 diff --git a/source/designs/detail/027/027393.json b/source/designs/detail/027/027393.json new file mode 100644 index 0000000000000000000000000000000000000000..1c8133223aa13dbbd03213ec748c758087d15f31 --- /dev/null +++ b/source/designs/detail/027/027393.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9eba6402cf7806e2246287e074edf062d9cac6dcfa57b5a263c0420e1932eba +size 2270 diff --git a/source/designs/detail/027/027394.json b/source/designs/detail/027/027394.json new file mode 100644 index 0000000000000000000000000000000000000000..b6fc65041487158a729204b23e9ef28ef22b7c8a --- /dev/null +++ b/source/designs/detail/027/027394.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b88dace00e47ef38a05c330e86419f2a4bed8f4b8f4f36b91207d3480b40b59 +size 2615 diff --git a/source/designs/detail/027/027395.json b/source/designs/detail/027/027395.json new file mode 100644 index 0000000000000000000000000000000000000000..75b20a0c48d370174342d70fd91e8c1d34788c4d --- /dev/null +++ b/source/designs/detail/027/027395.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd76c634547eb6a42b68f4c6b70af25c0da2208d16ded4c6a5113567dd720bde +size 1685 diff --git a/source/designs/detail/027/027396.json b/source/designs/detail/027/027396.json new file mode 100644 index 0000000000000000000000000000000000000000..2b64cbf090d2928bbb06d7d6605abe9652fcca7c --- /dev/null +++ b/source/designs/detail/027/027396.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbb4b1e0c0a5d87e558f5955ce40de822ac1676d4cfc9699ab9d70a237cb7037 +size 1411 diff --git a/source/designs/detail/027/027397.json b/source/designs/detail/027/027397.json new file mode 100644 index 0000000000000000000000000000000000000000..72cbdb814bfa23cde3b728f487715cb1e61a0606 --- /dev/null +++ b/source/designs/detail/027/027397.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa895805060fd0312b87a6a847586d3da2e7ba1cf3eff90778a53b412eb5f966 +size 1277 diff --git a/source/designs/detail/027/027398.json b/source/designs/detail/027/027398.json new file mode 100644 index 0000000000000000000000000000000000000000..79efd703f55c5d9e08017eedf687ef033e3fc6ad --- /dev/null +++ b/source/designs/detail/027/027398.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab5cb635850e6eb99ab4524827eb672ef613ccd50915f8e7927423270119288 +size 1605 diff --git a/source/designs/detail/027/027399.json b/source/designs/detail/027/027399.json new file mode 100644 index 0000000000000000000000000000000000000000..cfc99ff41c1054d92013fd0d75b7da39a37496fc --- /dev/null +++ b/source/designs/detail/027/027399.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa6087952ae4e7bd683c7b0883999dbe15d47bd43c41a3275266314c41ccea3 +size 1283 diff --git a/source/designs/detail/027/027400.json b/source/designs/detail/027/027400.json new file mode 100644 index 0000000000000000000000000000000000000000..aaa07372a78030dc9e00d26bd5b34894a859961c --- /dev/null +++ b/source/designs/detail/027/027400.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ca6b4cde87cf35ce5962860b92dc4991c975798233c727b0600e642c2c7449 +size 1199 diff --git a/source/designs/detail/027/027401.json b/source/designs/detail/027/027401.json new file mode 100644 index 0000000000000000000000000000000000000000..a44ff473637ce0b45dc53ff4bbdce62e8ca49db8 --- /dev/null +++ b/source/designs/detail/027/027401.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c46d3a672b4c8d184e95ba0da5fd95145db7272def239c93e0b3537b376fb7 +size 1353 diff --git a/source/designs/detail/027/027402.json b/source/designs/detail/027/027402.json new file mode 100644 index 0000000000000000000000000000000000000000..860554346e6b0020b5eed54640682d223c2564c1 --- /dev/null +++ b/source/designs/detail/027/027402.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5540d0ac7114b89c303ba00905b117dcfd89c730fe7ce08096ae6fe319b7d724 +size 965 diff --git a/source/designs/detail/027/027403.json b/source/designs/detail/027/027403.json new file mode 100644 index 0000000000000000000000000000000000000000..ae15285e87f0edc5887739ed1cce1b824ddac19f --- /dev/null +++ b/source/designs/detail/027/027403.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26ed5caa6ad5e44b8d98e22766a95d64635095f71b46db5c2b4e864ff737846 +size 1276 diff --git a/source/designs/detail/027/027404.json b/source/designs/detail/027/027404.json new file mode 100644 index 0000000000000000000000000000000000000000..f2132beeb68d2c00a82c950bed4897bc220f2eea --- /dev/null +++ b/source/designs/detail/027/027404.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5eeb883f41a5d65347cc6a740d0130555ed860c902fd8884892566f7682b798 +size 1375 diff --git a/source/designs/detail/027/027405.json b/source/designs/detail/027/027405.json new file mode 100644 index 0000000000000000000000000000000000000000..9fcb66ccdbf295aafcef9578ffd21767ca63dad8 --- /dev/null +++ b/source/designs/detail/027/027405.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62d8e431b8a267577861e60f03f834e914a5dbecba621225630093e3a1e3c66 +size 1572 diff --git a/source/designs/detail/027/027406.json b/source/designs/detail/027/027406.json new file mode 100644 index 0000000000000000000000000000000000000000..bd9fb579a293ee18c7335427998e6dc55f3de9f0 --- /dev/null +++ b/source/designs/detail/027/027406.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb6f06ab4ec02b5eeff3c6751b50b834989f4cc367ee2996396ea12f5963e11a +size 1681 diff --git a/source/designs/detail/027/027407.json b/source/designs/detail/027/027407.json new file mode 100644 index 0000000000000000000000000000000000000000..a0b4880e714594cc46d7d39b7be13fb51f7661b1 --- /dev/null +++ b/source/designs/detail/027/027407.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1330a903dcec430adc1703620e17780998c7f982e5512a65e6a639eaaca7328 +size 1489 diff --git a/source/designs/detail/027/027408.json b/source/designs/detail/027/027408.json new file mode 100644 index 0000000000000000000000000000000000000000..6def186b0d46a04dbe5211c9817577a1a7740dc0 --- /dev/null +++ b/source/designs/detail/027/027408.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e22b36673af3766631715a100e6b8651c372dd767c882c5861c1b2f0c897e65 +size 1260 diff --git a/source/designs/detail/027/027409.json b/source/designs/detail/027/027409.json new file mode 100644 index 0000000000000000000000000000000000000000..7968b7e1b04e0514c4968fbb616c0bf496e8fe89 --- /dev/null +++ b/source/designs/detail/027/027409.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da00981fdae67aeaf9f6e66df86500c14e19b54c3c501e6f0007b690ed6bd1ee +size 1578 diff --git a/source/designs/detail/027/027410.json b/source/designs/detail/027/027410.json new file mode 100644 index 0000000000000000000000000000000000000000..70b2cdd5a7e0d336340e2d75449c3de5f3da1781 --- /dev/null +++ b/source/designs/detail/027/027410.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6be4bf23904598d2d3e6ab261c7cce523d69d37f6c200469618e3b261cc7d8 +size 1840 diff --git a/source/designs/detail/027/027411.json b/source/designs/detail/027/027411.json new file mode 100644 index 0000000000000000000000000000000000000000..6bb56a7fb8d5ad8074149e32b85bb7f20055900f --- /dev/null +++ b/source/designs/detail/027/027411.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79944b098a5cde841f3d13fab6a07545610f97ab6fe8bc5e796d634bd50dbcd1 +size 1659 diff --git a/source/designs/detail/027/027412.json b/source/designs/detail/027/027412.json new file mode 100644 index 0000000000000000000000000000000000000000..4832e4dae9a94ce35bd9fb098103a65cbd0e7694 --- /dev/null +++ b/source/designs/detail/027/027412.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a58d53714b5433d23e170a08b4052bed7dc5410f114b9d9b27003e053b9f08f +size 1514 diff --git a/source/designs/detail/027/027413.json b/source/designs/detail/027/027413.json new file mode 100644 index 0000000000000000000000000000000000000000..651c51bc19b9ea786af28493ecd195beaa397470 --- /dev/null +++ b/source/designs/detail/027/027413.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bdbd1971b5f4fa4644626454e7d58211b745df23736d645c5c73b261618ecb3 +size 1481 diff --git a/source/designs/detail/027/027414.json b/source/designs/detail/027/027414.json new file mode 100644 index 0000000000000000000000000000000000000000..66ffbd59f5b6ee6272756d03a7f86ebaf155d5cf --- /dev/null +++ b/source/designs/detail/027/027414.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3bcf98f7dee8d08cf535bd3f2d093a84980840ea2059562ca1318779e4d348 +size 1548 diff --git a/source/designs/detail/027/027415.json b/source/designs/detail/027/027415.json new file mode 100644 index 0000000000000000000000000000000000000000..bb4b980c0c9549e7557b95429567e7413dedd532 --- /dev/null +++ b/source/designs/detail/027/027415.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb08c9c710fae79611e5dd29f756d0977669046db77fa0ff2d6b647eaf07f230 +size 2545 diff --git a/source/designs/detail/027/027416.json b/source/designs/detail/027/027416.json new file mode 100644 index 0000000000000000000000000000000000000000..b87363b589e083d0e379541f1a9f65e6a18fe87b --- /dev/null +++ b/source/designs/detail/027/027416.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ad7cb1c2be7fd688dc82573d6efe0c988ec1b84e8ead309f7d21ab679e5ccb +size 1248 diff --git a/source/designs/detail/027/027418.json b/source/designs/detail/027/027418.json new file mode 100644 index 0000000000000000000000000000000000000000..f675df513ddefb7a07bd2d38379601668d38498c --- /dev/null +++ b/source/designs/detail/027/027418.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3caf5788fa4607290574ddd10d78197e94f2a8ff138bebd2b4c347fb89c05348 +size 1094 diff --git a/source/designs/detail/027/027419.json b/source/designs/detail/027/027419.json new file mode 100644 index 0000000000000000000000000000000000000000..f108263aaf695e9abdb683cd3c6adf64065c91ce --- /dev/null +++ b/source/designs/detail/027/027419.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad77b9fd510d09a9716c3da866a0a565b76173329351eff6e01cb779f8b9b141 +size 1155 diff --git a/source/designs/detail/027/027420.json b/source/designs/detail/027/027420.json new file mode 100644 index 0000000000000000000000000000000000000000..79eb9205e4f2543cd1a27c8b6a134c96bd513631 --- /dev/null +++ b/source/designs/detail/027/027420.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b30045a9e9d27a6705d0100ba46dc0dc06602cefe75cd21c3eb6fbc13e23770a +size 1280 diff --git a/source/designs/detail/027/027421.json b/source/designs/detail/027/027421.json new file mode 100644 index 0000000000000000000000000000000000000000..8446a19e0267833d5ef096afd9cd9abc9942880b --- /dev/null +++ b/source/designs/detail/027/027421.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee79a07e774d7b9d503161708ea7b0a568454ad832d0450f47132654ae1a56a +size 1399 diff --git a/source/designs/detail/027/027422.json b/source/designs/detail/027/027422.json new file mode 100644 index 0000000000000000000000000000000000000000..f9c0347686171b1441437e0d18c6e0aebcb0bf3c --- /dev/null +++ b/source/designs/detail/027/027422.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3cfc33d18cef7ce7d78b3a6a9ba0346758c71e6fe089d01d76acc8bd1af41c +size 1282 diff --git a/source/designs/detail/027/027423.json b/source/designs/detail/027/027423.json new file mode 100644 index 0000000000000000000000000000000000000000..e4c2e835e48209f734e0cc042994e9a421552a85 --- /dev/null +++ b/source/designs/detail/027/027423.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c632a2cab1ef37e6ad361ed2c9503ac12b1b1b1b1db2121010f0ea16460cb194 +size 1404 diff --git a/source/designs/detail/027/027424.json b/source/designs/detail/027/027424.json new file mode 100644 index 0000000000000000000000000000000000000000..6c933aa5d6d276adf480a085dafe572fed3db426 --- /dev/null +++ b/source/designs/detail/027/027424.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce35f930f9d6ce7faea0b3af7011c29e4d63e5180984bc2adda3505b1650512 +size 1135 diff --git a/source/designs/detail/027/027425.json b/source/designs/detail/027/027425.json new file mode 100644 index 0000000000000000000000000000000000000000..9d527a4843c3712691263f9fc7f0614b401228f4 --- /dev/null +++ b/source/designs/detail/027/027425.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a74582f30a5e8a72e6f8d4c30a9d803fa91fb03a6e756392f351712f62006a2 +size 1112 diff --git a/source/designs/detail/027/027426.json b/source/designs/detail/027/027426.json new file mode 100644 index 0000000000000000000000000000000000000000..d836068e3d9776bcd7a3460e27e2bc20c35d8307 --- /dev/null +++ b/source/designs/detail/027/027426.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043a96721a3311e7210a05a9c8f04e77a657975b746a526d4fd9128572df4aa9 +size 1247 diff --git a/source/designs/detail/027/027427.json b/source/designs/detail/027/027427.json new file mode 100644 index 0000000000000000000000000000000000000000..58efe30a48606ebc41cba1a1224914728f87b46d --- /dev/null +++ b/source/designs/detail/027/027427.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b6d36c5dbe14b7bac46250a2890180376a24491967d588d46481306411293d +size 1313 diff --git a/source/designs/detail/027/027428.json b/source/designs/detail/027/027428.json new file mode 100644 index 0000000000000000000000000000000000000000..95161704a3b1ff35ce473ca2160c9b228cb2b555 --- /dev/null +++ b/source/designs/detail/027/027428.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a2336f12d75449cd1a50f3dab70aeb56ffa61d1422e6e92e30f6c4eabd9591a +size 1369 diff --git a/source/designs/detail/027/027430.json b/source/designs/detail/027/027430.json new file mode 100644 index 0000000000000000000000000000000000000000..d85c375cbbce951f151775d30cdc7fbecfdbe088 --- /dev/null +++ b/source/designs/detail/027/027430.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a73e80eab768e8d72d67a0451bf35c1644e41d55511d12b7e725d5e52e19b9 +size 1626 diff --git a/source/designs/detail/027/027431.json b/source/designs/detail/027/027431.json new file mode 100644 index 0000000000000000000000000000000000000000..e1cc10c9d6986cd6e6eec1c95307d0de2c7ce18a --- /dev/null +++ b/source/designs/detail/027/027431.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab065fd704d8ee05bc69c9907732a4008c9de6c8ce09d31f20c79d843df48399 +size 1539 diff --git a/source/designs/detail/027/027432.json b/source/designs/detail/027/027432.json new file mode 100644 index 0000000000000000000000000000000000000000..0a60000bcb6d8f240ea85f6b5d6798686d5b1242 --- /dev/null +++ b/source/designs/detail/027/027432.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9520c7ebd280e7350daa2c0f8b29fdf1118334fb8068e2eb51f2b1a639e14f4 +size 1220 diff --git a/source/designs/detail/027/027433.json b/source/designs/detail/027/027433.json new file mode 100644 index 0000000000000000000000000000000000000000..0a0d1e61801b9821475c54f197ce0c2561fba55f --- /dev/null +++ b/source/designs/detail/027/027433.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04fc59a63ab6699f98bc1d91a5d7c12ec64181f2d5d62e5a657daba45a64e656 +size 1272 diff --git a/source/designs/detail/027/027434.json b/source/designs/detail/027/027434.json new file mode 100644 index 0000000000000000000000000000000000000000..99c18bf61e889b7600cfb54f6459eedf5e2a7c2d --- /dev/null +++ b/source/designs/detail/027/027434.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d775b89144b421b216cfa7accc2112739ab93ab871065705d96e4e83fe220c +size 1261 diff --git a/source/designs/detail/027/027435.json b/source/designs/detail/027/027435.json new file mode 100644 index 0000000000000000000000000000000000000000..f877d9b0f6552aca838ea5a8cdda7bd9e862e113 --- /dev/null +++ b/source/designs/detail/027/027435.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1360ffd769241020d76341c750f0456d026f7dcf5fc3404669c44544704d0d +size 1249 diff --git a/source/designs/detail/027/027436.json b/source/designs/detail/027/027436.json new file mode 100644 index 0000000000000000000000000000000000000000..36629a465512c197c5a344933e47c3f14f6d299e --- /dev/null +++ b/source/designs/detail/027/027436.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:507b4c7660cadca6d167070a406e08ede629e8464a66e224fae4b22066f66bbc +size 1264 diff --git a/source/designs/detail/027/027437.json b/source/designs/detail/027/027437.json new file mode 100644 index 0000000000000000000000000000000000000000..b1bcdac38d8c88bf1049cac21addfdc92caf6b4c --- /dev/null +++ b/source/designs/detail/027/027437.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d677337eb2bc0d94ee6d4551229c356367ed87b042c74f75620491a19cf8754c +size 1634 diff --git a/source/designs/detail/027/027438.json b/source/designs/detail/027/027438.json new file mode 100644 index 0000000000000000000000000000000000000000..32de2f4aad7f7ea5853bfb600e3cf094878e3d2b --- /dev/null +++ b/source/designs/detail/027/027438.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a30d135790079408041fdffb54d4ff0cd94036d2ec2dfcfb02b0b7859077df2 +size 1457 diff --git a/source/designs/detail/027/027439.json b/source/designs/detail/027/027439.json new file mode 100644 index 0000000000000000000000000000000000000000..ba7ea5c53b9537cdd8c3ebffba6b31f865709a01 --- /dev/null +++ b/source/designs/detail/027/027439.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adeeb59107da95d7a59ac744da18d0c8874e82053b15f5b907042adc815d4d88 +size 1676 diff --git a/source/designs/detail/027/027440.json b/source/designs/detail/027/027440.json new file mode 100644 index 0000000000000000000000000000000000000000..a8130b72547b7b0cfbf7722485308573aedde01f --- /dev/null +++ b/source/designs/detail/027/027440.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ce790a4d84299d2e917bcd4fbe4b3490c52e381a7e9e60c63738aeaf4637d2 +size 2079 diff --git a/source/designs/detail/027/027441.json b/source/designs/detail/027/027441.json new file mode 100644 index 0000000000000000000000000000000000000000..61e343a8cc6bac3e0cec5ee42582d943ebff6b7f --- /dev/null +++ b/source/designs/detail/027/027441.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3b03ae10b6e1720aef81b2798f8f9017e2b37cb2a462bb9991071076f509bd +size 1640 diff --git a/source/designs/detail/027/027442.json b/source/designs/detail/027/027442.json new file mode 100644 index 0000000000000000000000000000000000000000..833f7ec75c63969206736fd5d0fc47f6f9165aab --- /dev/null +++ b/source/designs/detail/027/027442.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb448a515000f1fd0df237d32dbd66d5c9a8300c7e03d1c3c7d29db5d5db83a6 +size 1492 diff --git a/source/designs/detail/027/027443.json b/source/designs/detail/027/027443.json new file mode 100644 index 0000000000000000000000000000000000000000..ba756d2ba9335c8c9162fd2db10c007a644976d5 --- /dev/null +++ b/source/designs/detail/027/027443.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa047d76d5fe0941b881b569cd8a41b9db5efc3014b900162e42be060d83406c +size 1269 diff --git a/source/designs/detail/027/027444.json b/source/designs/detail/027/027444.json new file mode 100644 index 0000000000000000000000000000000000000000..1a3c70ced0e7aed26ad2f36c8f32c88b2d52f20e --- /dev/null +++ b/source/designs/detail/027/027444.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2715a99979a1c9cd030ccfb81ff6fef2cdecd83662a82ae207a4dc43d1000086 +size 1248 diff --git a/source/designs/detail/027/027445.json b/source/designs/detail/027/027445.json new file mode 100644 index 0000000000000000000000000000000000000000..d294bb428b6b01fb0bcb456ae6744f65b418a1aa --- /dev/null +++ b/source/designs/detail/027/027445.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb488e7683ca3bbbfec838735b4d319dfe5255ea28d68608d0bf41308f3562cf +size 1407 diff --git a/source/designs/detail/027/027446.json b/source/designs/detail/027/027446.json new file mode 100644 index 0000000000000000000000000000000000000000..b55cd320b6b0d04b41ed4df58b77a6593dc1a49f --- /dev/null +++ b/source/designs/detail/027/027446.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bf0cdbb12d686c40c7cc6df62b6534f7cb6d30e38e44e8fdadb33f3d7886f87 +size 1188 diff --git a/source/designs/detail/027/027447.json b/source/designs/detail/027/027447.json new file mode 100644 index 0000000000000000000000000000000000000000..135a55cc487c4202dd45c44b78a59463ad2ffda3 --- /dev/null +++ b/source/designs/detail/027/027447.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1ca400563ee8ed47e465ae9b9a0b7451c6876f0d51c29bf9cb6440b27174e7d +size 1119 diff --git a/source/designs/detail/027/027448.json b/source/designs/detail/027/027448.json new file mode 100644 index 0000000000000000000000000000000000000000..32344642899270def80380f77ddd42eb6cc7d775 --- /dev/null +++ b/source/designs/detail/027/027448.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7cf70e177aa6413423be3bdaac502b8e74fd501fbc846458b3997c9990ffed6 +size 1290 diff --git a/source/designs/detail/027/027449.json b/source/designs/detail/027/027449.json new file mode 100644 index 0000000000000000000000000000000000000000..6c9df8b2f6ab347c1ed1abd5dc63ece8c33c22c7 --- /dev/null +++ b/source/designs/detail/027/027449.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f84db820d75dc92aed3c21a91be1fa7b5651f7889dbeb3519858c14a203dfc +size 1280 diff --git a/source/designs/detail/027/027450.json b/source/designs/detail/027/027450.json new file mode 100644 index 0000000000000000000000000000000000000000..27aae158a8837ea78bb816bc4b6c4d9823ebb3f0 --- /dev/null +++ b/source/designs/detail/027/027450.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f24c0ca1d2d418859ba8634e84978f1cc9deafa4ca3a1bf5441f0e7dfca53bb +size 1115 diff --git a/source/designs/detail/027/027451.json b/source/designs/detail/027/027451.json new file mode 100644 index 0000000000000000000000000000000000000000..94b707330953ed359171064a5ea72eeaf105e12a --- /dev/null +++ b/source/designs/detail/027/027451.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffde029de0e989b02431d4be3680480d5f5f15b1be39b7e4edb861c89d9ecfe1 +size 1329 diff --git a/source/designs/detail/027/027452.json b/source/designs/detail/027/027452.json new file mode 100644 index 0000000000000000000000000000000000000000..b0575e8a9298613812fadf231b89efd527b3c4db --- /dev/null +++ b/source/designs/detail/027/027452.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974d0339ae8d50c90837ce9b24c6fd7c6fa9189dbcd79aa05093de80ee58618e +size 1977 diff --git a/source/designs/detail/027/027453.json b/source/designs/detail/027/027453.json new file mode 100644 index 0000000000000000000000000000000000000000..b76a42edf977f940b02945063aaab49738611c72 --- /dev/null +++ b/source/designs/detail/027/027453.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc3c646baba277287dc5e58db357714a6ac4a7d39b757b5a903dd0fbdab76c70 +size 1442 diff --git a/source/designs/detail/027/027454.json b/source/designs/detail/027/027454.json new file mode 100644 index 0000000000000000000000000000000000000000..447847313259c0f209a1a0869a3c7b457c10e186 --- /dev/null +++ b/source/designs/detail/027/027454.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86e3394e6fb7ede3ab9ce85c525584b31fb10f6007e72dcfde446054e885aa6 +size 1960 diff --git a/source/designs/detail/027/027455.json b/source/designs/detail/027/027455.json new file mode 100644 index 0000000000000000000000000000000000000000..bf094533aaf454afab9a1fb691ca2cf02f94cd71 --- /dev/null +++ b/source/designs/detail/027/027455.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b84e40921f521bec4c132dab9b43a2cc0b8cc0410a260c27f4200ce5896eba +size 1725 diff --git a/source/designs/detail/027/027456.json b/source/designs/detail/027/027456.json new file mode 100644 index 0000000000000000000000000000000000000000..610b39577b9c776831a13a874da3e262692e24e7 --- /dev/null +++ b/source/designs/detail/027/027456.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5012fb993f72488a5886afcb241428dd2e1e4d79791047ef3f14062ff7d26b42 +size 1331 diff --git a/source/designs/detail/027/027458.json b/source/designs/detail/027/027458.json new file mode 100644 index 0000000000000000000000000000000000000000..0d2f417c34ac347ab64cd1266ba84f9596ff0365 --- /dev/null +++ b/source/designs/detail/027/027458.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31538bca4fa95b91264235d72e39071add37fea777863ab02aacb4ee0c986626 +size 1538 diff --git a/source/designs/detail/027/027460.json b/source/designs/detail/027/027460.json new file mode 100644 index 0000000000000000000000000000000000000000..1881fa1f4a1ff37cb4549a0474f933828f0819e1 --- /dev/null +++ b/source/designs/detail/027/027460.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed109e339285773aef0375d16b5f9f3013e88eb5a56706017b9bff90f174b728 +size 1684 diff --git a/source/designs/detail/027/027461.json b/source/designs/detail/027/027461.json new file mode 100644 index 0000000000000000000000000000000000000000..921435d1512b6485f570bf5ddc4737d7e4ce7ea4 --- /dev/null +++ b/source/designs/detail/027/027461.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0303472913c18bb430437d3d210207c659658bb10dedf4270f67f07eee4efd54 +size 1365 diff --git a/source/designs/detail/027/027462.json b/source/designs/detail/027/027462.json new file mode 100644 index 0000000000000000000000000000000000000000..9029e3b3e2409bdaf5a277eb2ffcdebf66c64742 --- /dev/null +++ b/source/designs/detail/027/027462.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66af6033db3389a02e89df565b0dd8ab35283038b1beeaedc7b7db16c0aa48a2 +size 1378 diff --git a/source/designs/detail/027/027463.json b/source/designs/detail/027/027463.json new file mode 100644 index 0000000000000000000000000000000000000000..29b02bdc2ef94719f7204edd006139573a015d89 --- /dev/null +++ b/source/designs/detail/027/027463.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920acfd1936b51b89bc67255889557528f075bcd869f8f32dd1132dddd4216e5 +size 1566 diff --git a/source/designs/detail/027/027464.json b/source/designs/detail/027/027464.json new file mode 100644 index 0000000000000000000000000000000000000000..c515487a8507b9314bb09bde6900ca1cabc5f85f --- /dev/null +++ b/source/designs/detail/027/027464.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c976a0ee717f47621f4fd1f8f951defb95094a666ea7eacb5cb987216895cf64 +size 1283 diff --git a/source/designs/detail/027/027465.json b/source/designs/detail/027/027465.json new file mode 100644 index 0000000000000000000000000000000000000000..a63cd88da3219617d0e2d965e2e0d7d8326483e8 --- /dev/null +++ b/source/designs/detail/027/027465.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405ad10aac5a5d0c16a0b6e0dc6cca6caaee17dfe38dcc97a775b2156a676b2b +size 1330 diff --git a/source/designs/detail/027/027466.json b/source/designs/detail/027/027466.json new file mode 100644 index 0000000000000000000000000000000000000000..8b38eafe2ba3fd7c02452bb61883c09859049ccc --- /dev/null +++ b/source/designs/detail/027/027466.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cacf77169a95a394e0de2dafa5068562535c714fa1c9fc3f90e1ecea4ceca4c6 +size 1309 diff --git a/source/designs/detail/027/027467.json b/source/designs/detail/027/027467.json new file mode 100644 index 0000000000000000000000000000000000000000..3760a3a501ac219199d94fc68ebf5453060e7369 --- /dev/null +++ b/source/designs/detail/027/027467.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9041524c0492716d98c54157078520c0a7ba4634512a6685d7342b53ef061df2 +size 1157 diff --git a/source/designs/detail/027/027468.json b/source/designs/detail/027/027468.json new file mode 100644 index 0000000000000000000000000000000000000000..b78e1057585494ed397acc53c1927f6bc68de125 --- /dev/null +++ b/source/designs/detail/027/027468.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53802bdd6490cb70c6afdef847e4e29d7e098eb4e3f57eccdce353dea7fead8c +size 1610 diff --git a/source/designs/detail/027/027471.json b/source/designs/detail/027/027471.json new file mode 100644 index 0000000000000000000000000000000000000000..50fa782480519120968d07f94889a875bcdaab4e --- /dev/null +++ b/source/designs/detail/027/027471.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81048dafdf5774a4040037a743f566a389886fcb6b669cbe740c38230f6a81bc +size 1259 diff --git a/source/designs/detail/027/027472.json b/source/designs/detail/027/027472.json new file mode 100644 index 0000000000000000000000000000000000000000..3d795f52e5effd27dd42bf203e5d83b02a5fb520 --- /dev/null +++ b/source/designs/detail/027/027472.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc236e5958da83fc370200c650a7a65f4aba0ed2fa15546fffbcaed2a0f90ab +size 1269 diff --git a/source/designs/detail/027/027473.json b/source/designs/detail/027/027473.json new file mode 100644 index 0000000000000000000000000000000000000000..f9e5d7cabb5dfe2221f06d0e32c96d29ca9d8f3f --- /dev/null +++ b/source/designs/detail/027/027473.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea11a51137f0ae4694f837cbf69508633308771dbf88883e479eab2431907bd3 +size 1437 diff --git a/source/designs/detail/027/027474.json b/source/designs/detail/027/027474.json new file mode 100644 index 0000000000000000000000000000000000000000..6193a0c90d9496b6166875ffacf5e346211a4008 --- /dev/null +++ b/source/designs/detail/027/027474.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8ebcbfa0f0e8abfa5c7c4e4fb7401e5c86bc6f72c56dd24f3b89df1096007f +size 1399 diff --git a/source/designs/detail/027/027475.json b/source/designs/detail/027/027475.json new file mode 100644 index 0000000000000000000000000000000000000000..d85c4fabc0b8a23df23d4e5c987a171acfabd59c --- /dev/null +++ b/source/designs/detail/027/027475.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e05f5301fc271c283490b7f513c079b24aad039633bb48edd2f63658729fb5 +size 1803 diff --git a/source/designs/detail/027/027476.json b/source/designs/detail/027/027476.json new file mode 100644 index 0000000000000000000000000000000000000000..878b09906a53d7cdd42f26d9b3e9a44f640898f2 --- /dev/null +++ b/source/designs/detail/027/027476.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5549a97a73b0b917c1ee3f967a8097b4b405128a2de0a9dd027c8a17c30e727a +size 1515 diff --git a/source/designs/detail/027/027478.json b/source/designs/detail/027/027478.json new file mode 100644 index 0000000000000000000000000000000000000000..3f5e79bffa2e81a1747022c33e613e142df7b8a2 --- /dev/null +++ b/source/designs/detail/027/027478.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:677d30fc74926999277d039d5676b7013b40f53fe1c17a1a5f11f986804bd732 +size 1331 diff --git a/source/designs/detail/027/027479.json b/source/designs/detail/027/027479.json new file mode 100644 index 0000000000000000000000000000000000000000..ae375355251d1e0700494fb76c108117e9af53c7 --- /dev/null +++ b/source/designs/detail/027/027479.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213862dcc27fc71bf5de7f6cc48f53b6e51a7be531af33f366ee110fd2c42901 +size 1182 diff --git a/source/designs/detail/027/027480.json b/source/designs/detail/027/027480.json new file mode 100644 index 0000000000000000000000000000000000000000..78cd0ad3989908f638f33cda9e1ad1be3cd15e51 --- /dev/null +++ b/source/designs/detail/027/027480.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe02d75b432cd664bbc4ee6345d7bbcb677dd2b0e044db803a239e791e34891 +size 1740 diff --git a/source/designs/detail/027/027481.json b/source/designs/detail/027/027481.json new file mode 100644 index 0000000000000000000000000000000000000000..c0331fce539d580a5800f67a05a98f599c9f014a --- /dev/null +++ b/source/designs/detail/027/027481.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5fcb23cfaa56de65867f1da3e21934039167e05880b5543ce79997097e15b8 +size 1160 diff --git a/source/designs/detail/027/027483.json b/source/designs/detail/027/027483.json new file mode 100644 index 0000000000000000000000000000000000000000..bd304304b166a5f32e96d06504f4a302b09c2d24 --- /dev/null +++ b/source/designs/detail/027/027483.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d81e7d7e4543ff9bbe90743d1fb48a53948c9a475d693043722ada8662c276 +size 1187 diff --git a/source/designs/detail/027/027484.json b/source/designs/detail/027/027484.json new file mode 100644 index 0000000000000000000000000000000000000000..44aa3ac320e58d13fd01aea260cc33b578a04b4a --- /dev/null +++ b/source/designs/detail/027/027484.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a86a5a41e79665c40cccfa30eb8a9f5dd02d9c8e240b1dbd076e2c63b83bbd +size 1269 diff --git a/source/designs/detail/027/027485.json b/source/designs/detail/027/027485.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3614676b621340f716bdab0d0034c0c393287c --- /dev/null +++ b/source/designs/detail/027/027485.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a5968240c445b9df5bcfd948ac9926cdeec7c67470d3a88d52429f53ac7dd8 +size 2582 diff --git a/source/designs/detail/027/027486.json b/source/designs/detail/027/027486.json new file mode 100644 index 0000000000000000000000000000000000000000..f814688288dc0fb8350b3457a73a24b734ce4f2a --- /dev/null +++ b/source/designs/detail/027/027486.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d4a2e035e63dc4b19de59113506a1fa37acedb9adadab63599da3e07cc0b894 +size 1790 diff --git a/source/designs/detail/027/027487.json b/source/designs/detail/027/027487.json new file mode 100644 index 0000000000000000000000000000000000000000..e8dfc1746bf34dab891d34d715cfd43f25349798 --- /dev/null +++ b/source/designs/detail/027/027487.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6bf861aa1341e89eb7811fe04ff5c340d1414d9517a5a3669545a5e2e35b2a +size 1908 diff --git a/source/designs/detail/027/027488.json b/source/designs/detail/027/027488.json new file mode 100644 index 0000000000000000000000000000000000000000..c60d29c21229d4a5c5d02237dcab704c2a22d575 --- /dev/null +++ b/source/designs/detail/027/027488.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:292543436d951af7700ed3ac1ad8a697229f51208ac32a20f3f9ff0b43208ba1 +size 1089 diff --git a/source/designs/detail/027/027489.json b/source/designs/detail/027/027489.json new file mode 100644 index 0000000000000000000000000000000000000000..d29df470d9b193e86122f89b57fc19bd71695157 --- /dev/null +++ b/source/designs/detail/027/027489.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:423ae2389492efd2dee1acef1309699550a7579815b80086e4073eee88efb664 +size 1584 diff --git a/source/designs/detail/027/027490.json b/source/designs/detail/027/027490.json new file mode 100644 index 0000000000000000000000000000000000000000..97b57bba65f841cfdedb8feb8515092b2c48dbd9 --- /dev/null +++ b/source/designs/detail/027/027490.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b784d15683568ad4a00073ab3c58749ac91594953051d48ca79294df687e82 +size 1164 diff --git a/source/designs/detail/027/027491.json b/source/designs/detail/027/027491.json new file mode 100644 index 0000000000000000000000000000000000000000..72e138286e9204e52f80af78020af0498f084fe8 --- /dev/null +++ b/source/designs/detail/027/027491.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f63feaa5cf8c5ba3547d9390301b4127a003e3d9e806d30f02739bfddba3128 +size 1525 diff --git a/source/designs/detail/027/027492.json b/source/designs/detail/027/027492.json new file mode 100644 index 0000000000000000000000000000000000000000..61239401624d9b435926ff3c2771f08e139e477c --- /dev/null +++ b/source/designs/detail/027/027492.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb152e23095f276b9aa8f325f7d007679dd8fec83362de8090d1801f6a84084 +size 1106 diff --git a/source/designs/detail/027/027493.json b/source/designs/detail/027/027493.json new file mode 100644 index 0000000000000000000000000000000000000000..65d417f5eaf133c8cd9f52203927b6b48995448c --- /dev/null +++ b/source/designs/detail/027/027493.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be1f7c2c78320a285effcda76a4be64903aab19375d68feba4d65b5761130927 +size 1402 diff --git a/source/designs/detail/027/027494.json b/source/designs/detail/027/027494.json new file mode 100644 index 0000000000000000000000000000000000000000..6ed34206e4261a183b36cd7e4bb5c2ec4ebc37b0 --- /dev/null +++ b/source/designs/detail/027/027494.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1e43575720d7f490f5243db35ef5ff5a50ecb1d5c58932caae62ca1e5b2566 +size 1245 diff --git a/source/designs/detail/027/027495.json b/source/designs/detail/027/027495.json new file mode 100644 index 0000000000000000000000000000000000000000..46da6a267e9d869b08339a6ed4bd3bf990b08968 --- /dev/null +++ b/source/designs/detail/027/027495.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0824ffce111bb5504e98039cab67b9d22d3aab107aba5b3dfa197dcafbbb685c +size 1308 diff --git a/source/designs/detail/027/027496.json b/source/designs/detail/027/027496.json new file mode 100644 index 0000000000000000000000000000000000000000..aae777c56740e2e4d38e43b181f53214b55c0ab2 --- /dev/null +++ b/source/designs/detail/027/027496.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b5584ed35dbc6ba56c99327592fe1c7eecb233516ac050a6f1af5ea2112aed +size 1518 diff --git a/source/designs/detail/027/027497.json b/source/designs/detail/027/027497.json new file mode 100644 index 0000000000000000000000000000000000000000..17fbc98e18e83f31f37598b58ace1a2cdce28810 --- /dev/null +++ b/source/designs/detail/027/027497.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f200165cc0d08b91542a3b260f01714152e246c5068641e82209cb3ef873d4a +size 1344 diff --git a/source/designs/detail/027/027498.json b/source/designs/detail/027/027498.json new file mode 100644 index 0000000000000000000000000000000000000000..3ed33297fc4f632c456f5ad1d22e56abe95e0ce3 --- /dev/null +++ b/source/designs/detail/027/027498.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25073ebb7a4bdc30ab436b01beb90affd94c27ccc5b832733ae7805960eedab9 +size 1798 diff --git a/source/designs/detail/027/027499.json b/source/designs/detail/027/027499.json new file mode 100644 index 0000000000000000000000000000000000000000..a1bf1c587a49d9e2b41647f6e78c45edd460bba0 --- /dev/null +++ b/source/designs/detail/027/027499.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dfcdbb680fa4b1dbe1d480315f8866c528644c5015e60a4a3e84a36354365ed +size 1245 diff --git a/source/designs/detail/027/027500.json b/source/designs/detail/027/027500.json new file mode 100644 index 0000000000000000000000000000000000000000..22f6e6ad0fc3043719cddbddb634cbae37873d14 --- /dev/null +++ b/source/designs/detail/027/027500.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0270b0566e8d33991b327b375d956adb19db19db8b2c9cb8324ef88aa224de5 +size 1405 diff --git a/source/designs/detail/027/027501.json b/source/designs/detail/027/027501.json new file mode 100644 index 0000000000000000000000000000000000000000..f7311568741286e78b8103d1359193fe3986fb50 --- /dev/null +++ b/source/designs/detail/027/027501.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82d1efcbe471cb2ae8cfef5cf4c67dddd80e2ecfca14abcde47c9a899f4f2b7 +size 1306 diff --git a/source/designs/detail/027/027502.json b/source/designs/detail/027/027502.json new file mode 100644 index 0000000000000000000000000000000000000000..eae84750fd03e5a5b26a223bd351489e4169a1e9 --- /dev/null +++ b/source/designs/detail/027/027502.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db7d54a03ac833db87b6309d232e1b8ddf7ae166e438ce2d69cb5d30fd85444a +size 1961 diff --git a/source/designs/detail/027/027503.json b/source/designs/detail/027/027503.json new file mode 100644 index 0000000000000000000000000000000000000000..5780fb66640ffa2a9114dfe471ee5dd6bed74d49 --- /dev/null +++ b/source/designs/detail/027/027503.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b896c091aca909521a6e11e442ba46ea5d2fd66c34f4ee4d472989728075d7 +size 1847 diff --git a/source/designs/detail/027/027504.json b/source/designs/detail/027/027504.json new file mode 100644 index 0000000000000000000000000000000000000000..cec2bbaea2378cfd15a28132f4b24ecbdd90c93b --- /dev/null +++ b/source/designs/detail/027/027504.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d880571f60cd58278ae76bbe951ff382c3273ddc91772cb3ff379e6716f91834 +size 1763 diff --git a/source/designs/detail/027/027505.json b/source/designs/detail/027/027505.json new file mode 100644 index 0000000000000000000000000000000000000000..b9d9f0079142be841469ba2bb14d23a1a995367b --- /dev/null +++ b/source/designs/detail/027/027505.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3932efc67a615d94764c9d97be17a457b7d11f6dcd62045e617b39bcde5cd4d2 +size 1912 diff --git a/source/designs/detail/027/027506.json b/source/designs/detail/027/027506.json new file mode 100644 index 0000000000000000000000000000000000000000..e5be0c4c70a44a175b52dda99eb8b6f3de4fdce3 --- /dev/null +++ b/source/designs/detail/027/027506.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51cb6ff8526b0a038200dbb4fffed65ddfbe026a46c45ab68585807ee38ac64d +size 3135 diff --git a/source/designs/detail/027/027507.json b/source/designs/detail/027/027507.json new file mode 100644 index 0000000000000000000000000000000000000000..c322211f58d8ad7ecf50f730ac95b513709895cf --- /dev/null +++ b/source/designs/detail/027/027507.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03db590a3231eb79a34739dfd50063ca5465e6d79a60c9a77d4e0198ac9108e3 +size 1383 diff --git a/source/designs/detail/027/027508.json b/source/designs/detail/027/027508.json new file mode 100644 index 0000000000000000000000000000000000000000..dae6024b67f43be47d318bca5e2349a2c70a0e1b --- /dev/null +++ b/source/designs/detail/027/027508.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6809285671f141d767040ceea00d8d51b7a7b0a1361833aeaf46692aab79dcf +size 1811 diff --git a/source/designs/detail/027/027509.json b/source/designs/detail/027/027509.json new file mode 100644 index 0000000000000000000000000000000000000000..14a3cd00ca428a14e6018ddeac4337038dbb1a89 --- /dev/null +++ b/source/designs/detail/027/027509.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a04318e0b005502b895cc1f49ccff54522b89a58e1a5cec6c3bb62fe61d1dea +size 2746 diff --git a/source/designs/detail/027/027511.json b/source/designs/detail/027/027511.json new file mode 100644 index 0000000000000000000000000000000000000000..47b61c944f33192ccba934798d288e6832c4644b --- /dev/null +++ b/source/designs/detail/027/027511.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9bd1c18d5f69028aa6fb69695c7c3de48e8596b47934fcf73724dcdee1bfcc4 +size 3577 diff --git a/source/designs/detail/027/027512.json b/source/designs/detail/027/027512.json new file mode 100644 index 0000000000000000000000000000000000000000..1105ebbc5a0dcc11a42ddff5f2ab58698c6aed66 --- /dev/null +++ b/source/designs/detail/027/027512.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c962bc656d829ee0732e3c8d17bbe5c2a13c6b384bc48c494432c43bbe1dfc +size 966 diff --git a/source/designs/detail/027/027513.json b/source/designs/detail/027/027513.json new file mode 100644 index 0000000000000000000000000000000000000000..fe93d6ae6d242dbf3b16e139dee3ea964e2b25fc --- /dev/null +++ b/source/designs/detail/027/027513.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbcebcad820e03fa7731064776f05f772009d5bd7b08000a6e9d222b5f3568a +size 1872 diff --git a/source/designs/detail/027/027514.json b/source/designs/detail/027/027514.json new file mode 100644 index 0000000000000000000000000000000000000000..9f532fb5098544b806f443acf9d7067ce8279f06 --- /dev/null +++ b/source/designs/detail/027/027514.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa9fec41df123bf214b428ad585fa93b17b2a9a33b6337c8e78eba1c418242bc +size 1512 diff --git a/source/designs/detail/027/027515.json b/source/designs/detail/027/027515.json new file mode 100644 index 0000000000000000000000000000000000000000..9480913d37f37e0c1428ce900241cfaeef77c773 --- /dev/null +++ b/source/designs/detail/027/027515.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8cedc4903fa449698f26864963150ac1c06f64e34ea3e094711f4217baeffb7 +size 1302 diff --git a/source/designs/detail/027/027516.json b/source/designs/detail/027/027516.json new file mode 100644 index 0000000000000000000000000000000000000000..69bca2bdd0dd209ae5d9397bc74a8a98fe62fd56 --- /dev/null +++ b/source/designs/detail/027/027516.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19774d111d3ab8e9d355d3cb362fcf235258f82c0464ea5bd19560a91c62f79b +size 1240 diff --git a/source/designs/detail/027/027517.json b/source/designs/detail/027/027517.json new file mode 100644 index 0000000000000000000000000000000000000000..821a3ec75a9eb601fedc71541c9f7b19301e2070 --- /dev/null +++ b/source/designs/detail/027/027517.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560ff04ccd4afe203f29783f63f7a7ca072ba8cabed1c614f188d7b499ed37a6 +size 1496 diff --git a/source/designs/detail/027/027518.json b/source/designs/detail/027/027518.json new file mode 100644 index 0000000000000000000000000000000000000000..6bc03caaec90a26136d207b9f663a1911e2278e4 --- /dev/null +++ b/source/designs/detail/027/027518.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeb8e47d57b7731355950964d60e0dc53f6d4fafcc1b24e4f27fb116e7d0c3b6 +size 1915 diff --git a/source/designs/detail/027/027519.json b/source/designs/detail/027/027519.json new file mode 100644 index 0000000000000000000000000000000000000000..6f6a09bb01ace90d13e991e5cf82fab35d60ed79 --- /dev/null +++ b/source/designs/detail/027/027519.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b5c5b88c48fb29e95692a497d20b26714ef33ffa0d2ab5581c5c7305e5da4dd +size 1270 diff --git a/source/designs/detail/027/027520.json b/source/designs/detail/027/027520.json new file mode 100644 index 0000000000000000000000000000000000000000..ea65be314f4d97371972d55a65fd5461c6e4ae9e --- /dev/null +++ b/source/designs/detail/027/027520.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531be15d40f3af6a2e8f448bdb71a8abfa51cb56674e9b810b1f5b81126a1cb1 +size 1351 diff --git a/source/designs/detail/027/027523.json b/source/designs/detail/027/027523.json new file mode 100644 index 0000000000000000000000000000000000000000..93125603d5a8511fa033b7f264f358cb3fac7a0d --- /dev/null +++ b/source/designs/detail/027/027523.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fa2b3cfcb1f844cc631a1bd37b97c05cc7ff0c6705a7011a0091d6c3190b995 +size 1269 diff --git a/source/designs/detail/027/027524.json b/source/designs/detail/027/027524.json new file mode 100644 index 0000000000000000000000000000000000000000..b34357ceaeedd69d976d28a576e4e999d206204a --- /dev/null +++ b/source/designs/detail/027/027524.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80514fcc6617687911112fc20c1aea340d02fe797cf0bb8ce72bcd6887b5b44c +size 2119 diff --git a/source/designs/detail/027/027525.json b/source/designs/detail/027/027525.json new file mode 100644 index 0000000000000000000000000000000000000000..051b8b019a307f18e64fb502a6c118f700ba4a83 --- /dev/null +++ b/source/designs/detail/027/027525.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805544863cd5f213a257530be754a2895f72efa7243b3a87e5a731c721ca6f6a +size 2401 diff --git a/source/designs/detail/027/027526.json b/source/designs/detail/027/027526.json new file mode 100644 index 0000000000000000000000000000000000000000..3706efabd10322db79e3791b6ab91299e5351323 --- /dev/null +++ b/source/designs/detail/027/027526.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8569da20e0da6f8c7cc4ce51c8c457d7b3cb7e7ac46a59c6fdabbd9ea7f7057f +size 1302 diff --git a/source/designs/detail/027/027527.json b/source/designs/detail/027/027527.json new file mode 100644 index 0000000000000000000000000000000000000000..ca4aa5913964001a16695f3a2d6dcaf7a2e689ee --- /dev/null +++ b/source/designs/detail/027/027527.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f143b3ec2a765f9d93017ed6af78d1e5f94ab8c6cd8c7155a325a68f3c1c3539 +size 1226 diff --git a/source/designs/detail/027/027528.json b/source/designs/detail/027/027528.json new file mode 100644 index 0000000000000000000000000000000000000000..c0ad305a8219e043c7c7da755f00fd660b30e51a --- /dev/null +++ b/source/designs/detail/027/027528.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad2ad6f1663305859f911dd81b8dc459a70a51ed914e56489896417fa39d022 +size 1265 diff --git a/source/designs/detail/027/027529.json b/source/designs/detail/027/027529.json new file mode 100644 index 0000000000000000000000000000000000000000..fda9eb20a33f7e8e80658cd5ebf21d70d223fb9e --- /dev/null +++ b/source/designs/detail/027/027529.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9c1e5862899d253eb9fc14f16f177ff22ccdb42926ab85e956e716db802a91 +size 1232 diff --git a/source/designs/detail/027/027530.json b/source/designs/detail/027/027530.json new file mode 100644 index 0000000000000000000000000000000000000000..968cb19edf860ebf7fecbb5beea99f261cdea8f2 --- /dev/null +++ b/source/designs/detail/027/027530.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e9d1af3ea917c1ab449c652e4ebd82c1fc53a364fa2179a3bfc1a960a85bcc +size 2346 diff --git a/source/designs/detail/027/027531.json b/source/designs/detail/027/027531.json new file mode 100644 index 0000000000000000000000000000000000000000..064fe15ab8c8e8fa68a869111eacafe11e49c212 --- /dev/null +++ b/source/designs/detail/027/027531.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d8a79adf4db9888769cd4ff8da037aedf263faa632e8051d200bd21a18893e0 +size 1005 diff --git a/source/designs/detail/027/027532.json b/source/designs/detail/027/027532.json new file mode 100644 index 0000000000000000000000000000000000000000..1d855086bff06589e0c73038533e4bb544eb4ff1 --- /dev/null +++ b/source/designs/detail/027/027532.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6160362bdf7e4a1ad9e0869151035954182f2fc88c9b84ef80299de876e8abe +size 1621 diff --git a/source/designs/detail/027/027533.json b/source/designs/detail/027/027533.json new file mode 100644 index 0000000000000000000000000000000000000000..76b4c966743bbb2c128d67ac2bd94ae4225e7fd0 --- /dev/null +++ b/source/designs/detail/027/027533.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5da3b8d67489f066b6e537fae52b5ba860e8eac5745cd88f78e9a6a9eed64c +size 1477 diff --git a/source/designs/detail/027/027534.json b/source/designs/detail/027/027534.json new file mode 100644 index 0000000000000000000000000000000000000000..69d19017bb954082425c14a71255fb11a3d79d99 --- /dev/null +++ b/source/designs/detail/027/027534.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d416979b71809ece2ef3d09d2ded8482d774d5a5c944b4e30d6eb06e59f6a0d +size 1163 diff --git a/source/designs/detail/027/027535.json b/source/designs/detail/027/027535.json new file mode 100644 index 0000000000000000000000000000000000000000..07d80c06cd84c4ed94ab91f3f1035d19cd38ae15 --- /dev/null +++ b/source/designs/detail/027/027535.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7901a0b5e2a04f40825f64067e1c5a5013c8dc8b7a4e3d0fe5ba23753429795 +size 1926 diff --git a/source/designs/detail/027/027536.json b/source/designs/detail/027/027536.json new file mode 100644 index 0000000000000000000000000000000000000000..9466aae6424f13ffa22543773eedde7bd780f114 --- /dev/null +++ b/source/designs/detail/027/027536.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efbc903a5db9c2059398349a7023d69f325323b8fd0bba149df3010961e3e415 +size 1244 diff --git a/source/designs/detail/027/027537.json b/source/designs/detail/027/027537.json new file mode 100644 index 0000000000000000000000000000000000000000..d295660ff9fa93c605dc97105e5a90bddd8c5f44 --- /dev/null +++ b/source/designs/detail/027/027537.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878e03f10c4e0e4f4e1fd09df044110fb13475b9accec693e82100187da6aab2 +size 1485 diff --git a/source/designs/detail/027/027538.json b/source/designs/detail/027/027538.json new file mode 100644 index 0000000000000000000000000000000000000000..254f55ff4f78d5c852d571d0f6a9e3cc8becab6b --- /dev/null +++ b/source/designs/detail/027/027538.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b1a2126daa876d4fc14b37c0e72682c3b07e61ea97ded5d2e126b52de2acd9 +size 1422 diff --git a/source/designs/detail/027/027539.json b/source/designs/detail/027/027539.json new file mode 100644 index 0000000000000000000000000000000000000000..465e6413c653c83bce652fbc07972c8845fc79ce --- /dev/null +++ b/source/designs/detail/027/027539.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd8306808d590b7fd611fd8596b4f5e9ba54dc390f426b91ecda4f0c03322df8 +size 1509 diff --git a/source/designs/detail/027/027540.json b/source/designs/detail/027/027540.json new file mode 100644 index 0000000000000000000000000000000000000000..0ae1cd17259aba5f4a77ed10773057b1adf7f259 --- /dev/null +++ b/source/designs/detail/027/027540.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e655245f3d95317df2e0e602645b26b555d0113b8582af0e0deb9324b7833d9 +size 2371 diff --git a/source/designs/detail/027/027541.json b/source/designs/detail/027/027541.json new file mode 100644 index 0000000000000000000000000000000000000000..d1e7c1f6b6bdff1cee0234a91d6ad786569bbcb0 --- /dev/null +++ b/source/designs/detail/027/027541.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ecc7d614fbbbb13cf89682e8abc42bdaa4c604810873125264792ca0266a228 +size 2709 diff --git a/source/designs/detail/027/027542.json b/source/designs/detail/027/027542.json new file mode 100644 index 0000000000000000000000000000000000000000..b15e82286a038d70546221c828176182db73efaf --- /dev/null +++ b/source/designs/detail/027/027542.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a2682dd934547c9177b553224c0a73843e2bf50fc044994922d05536ff368f +size 1269 diff --git a/source/designs/detail/027/027543.json b/source/designs/detail/027/027543.json new file mode 100644 index 0000000000000000000000000000000000000000..b919b1e2554e791b9b1bc16dc4f7a09422103976 --- /dev/null +++ b/source/designs/detail/027/027543.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f274162fa2f1b617463ab23645c7096e8f618b297f4f8b0b9f7a9a5519b38595 +size 1380 diff --git a/source/designs/detail/027/027544.json b/source/designs/detail/027/027544.json new file mode 100644 index 0000000000000000000000000000000000000000..e02d841c3d20dbb8cb9f76465504054c98e6ec76 --- /dev/null +++ b/source/designs/detail/027/027544.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eaefa2eb3458768c063f23b8c898ae5701c1cea59dad166dfc195f988854f8f +size 1093 diff --git a/source/designs/detail/027/027545.json b/source/designs/detail/027/027545.json new file mode 100644 index 0000000000000000000000000000000000000000..1c5982a7a240704023c9eb26163a2a07126f7f32 --- /dev/null +++ b/source/designs/detail/027/027545.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87fffa6dde93814bd9bc2291df6701b3bf8d584a319cd7b0f6e1c0aabbe6ce8 +size 1355 diff --git a/source/designs/detail/027/027546.json b/source/designs/detail/027/027546.json new file mode 100644 index 0000000000000000000000000000000000000000..972d199fbf952f0cd21b573eb6617806b5316f4d --- /dev/null +++ b/source/designs/detail/027/027546.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9dc43597a87a69f41961611878d62090e37f1e8321702737d4a92ebaba9c21 +size 2600 diff --git a/source/designs/detail/027/027547.json b/source/designs/detail/027/027547.json new file mode 100644 index 0000000000000000000000000000000000000000..93e9d97e7c0517fd995337edf7a952999d6822e0 --- /dev/null +++ b/source/designs/detail/027/027547.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6e671a37c95a57ec8cd8fd672bb3e3e5586f8286f32b5b160e0961501511d9 +size 1276 diff --git a/source/designs/detail/027/027548.json b/source/designs/detail/027/027548.json new file mode 100644 index 0000000000000000000000000000000000000000..0b26f9d4c657801ec2aab89a88fe8f89039068fb --- /dev/null +++ b/source/designs/detail/027/027548.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98348f0fb57e54c8fbc3aba9f77d44c336ab67c68e8da46d71ec601f6410b913 +size 1217 diff --git a/source/designs/detail/027/027549.json b/source/designs/detail/027/027549.json new file mode 100644 index 0000000000000000000000000000000000000000..99cf80501cd15eb92bc69694237e394f2c76feef --- /dev/null +++ b/source/designs/detail/027/027549.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e383423335461fd5eb0bc850456bb468325434940482679e365ff6758895ba85 +size 1423 diff --git a/source/designs/detail/027/027550.json b/source/designs/detail/027/027550.json new file mode 100644 index 0000000000000000000000000000000000000000..0e63783a606b8deea78f33bfb9658e18c333dfe1 --- /dev/null +++ b/source/designs/detail/027/027550.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed8c8f11fd22daa781084e92edf4dbf020a904d60e15a2d5165e55a8c1a01e5 +size 1685 diff --git a/source/designs/detail/027/027551.json b/source/designs/detail/027/027551.json new file mode 100644 index 0000000000000000000000000000000000000000..3e9cd53a37b8c3e3f755d2af9978e67350a78f49 --- /dev/null +++ b/source/designs/detail/027/027551.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a095aa876476556627b3e95f027215133e3fc7a32c4825f3bf67490a1a2b0897 +size 1562 diff --git a/source/designs/detail/027/027552.json b/source/designs/detail/027/027552.json new file mode 100644 index 0000000000000000000000000000000000000000..c7488230ad42462833133dfd83d8b7bf617419a9 --- /dev/null +++ b/source/designs/detail/027/027552.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7f52a133b9b4b60f0ef8017be720e52d2b21542fbc2da3603685a3604d8890 +size 1635 diff --git a/source/designs/detail/027/027553.json b/source/designs/detail/027/027553.json new file mode 100644 index 0000000000000000000000000000000000000000..0420adc6b080446ab806f8e6063d68f8a1b1c942 --- /dev/null +++ b/source/designs/detail/027/027553.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b092178ebd1463d22eae80f456afe8043086ab5460814be31b4092c30b15a8b +size 2041 diff --git a/source/designs/detail/027/027556.json b/source/designs/detail/027/027556.json new file mode 100644 index 0000000000000000000000000000000000000000..c6a36310fe742fbe2c975533e8ebd3db5913ca01 --- /dev/null +++ b/source/designs/detail/027/027556.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4abb8af44443085fbcf9b44160de0a3b6b69f038ca56613b8daad4a858ed3138 +size 1088 diff --git a/source/designs/detail/027/027557.json b/source/designs/detail/027/027557.json new file mode 100644 index 0000000000000000000000000000000000000000..6c372591138b565d5815cc9d8a1271cae1348e5c --- /dev/null +++ b/source/designs/detail/027/027557.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98f42bf30bbfcb82c5c7d073b0c836a6c590a4317f3de5b77b83cbef59df71f +size 1866 diff --git a/source/designs/detail/027/027558.json b/source/designs/detail/027/027558.json new file mode 100644 index 0000000000000000000000000000000000000000..01155e932b96acdf2e2bb5bdee54f1fbe44701b1 --- /dev/null +++ b/source/designs/detail/027/027558.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f103af4997bcc92f3ad2ea7feb2385e1b6d74d4a901941623bcf68032a58a2 +size 1233 diff --git a/source/designs/detail/027/027559.json b/source/designs/detail/027/027559.json new file mode 100644 index 0000000000000000000000000000000000000000..ad5bc914e846a414e369ed1ea5554211b0de5bb0 --- /dev/null +++ b/source/designs/detail/027/027559.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4156501bae1d0dd017128dc09537fae0ce98165d5983621fc015c32595a9748b +size 1532 diff --git a/source/designs/detail/027/027560.json b/source/designs/detail/027/027560.json new file mode 100644 index 0000000000000000000000000000000000000000..1064931ed2ec34776abf0e784d1b842a51a19c42 --- /dev/null +++ b/source/designs/detail/027/027560.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c593021f8c3199704f105c50adde0f3931de32eb90e01aa497201beab4c593a2 +size 1183 diff --git a/source/designs/detail/027/027561.json b/source/designs/detail/027/027561.json new file mode 100644 index 0000000000000000000000000000000000000000..18a0cd989486e1b0751a760adadfc69909f109ab --- /dev/null +++ b/source/designs/detail/027/027561.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7f7cfeeb9b07ef4dc2eb66c7c9045a214486d9c425f99f033c20c59d034677 +size 1207 diff --git a/source/designs/detail/027/027562.json b/source/designs/detail/027/027562.json new file mode 100644 index 0000000000000000000000000000000000000000..6a106dd224b768f5765b29c29e55d9bc58cdd1a1 --- /dev/null +++ b/source/designs/detail/027/027562.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959e6f8a3a7827d2ab58ef3c57373bdc1af4843a16c6845ee8377485dab6d156 +size 1768 diff --git a/source/designs/detail/027/027563.json b/source/designs/detail/027/027563.json new file mode 100644 index 0000000000000000000000000000000000000000..7ffbbfcd21fe141157a398ea188f338d8eab5d01 --- /dev/null +++ b/source/designs/detail/027/027563.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7493bc8884da256d3e1b6fd5f78549b16188192458d1fdb9971864979406ae +size 1422 diff --git a/source/designs/detail/027/027564.json b/source/designs/detail/027/027564.json new file mode 100644 index 0000000000000000000000000000000000000000..18eccfa1c5fa8062a35340cb96b0b5db06232bcd --- /dev/null +++ b/source/designs/detail/027/027564.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc0f7cbf173dbecc32211bcc5152f67a0013906bf795d4b8e2df1145fab77db +size 1272 diff --git a/source/designs/detail/027/027565.json b/source/designs/detail/027/027565.json new file mode 100644 index 0000000000000000000000000000000000000000..58158eea4eda99fd609bfad59474d945c670977b --- /dev/null +++ b/source/designs/detail/027/027565.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a93631cf86f7717affcb1ec180160a32fbb4c0de3542ae28bb4d6d1137294b +size 1791 diff --git a/source/designs/detail/027/027566.json b/source/designs/detail/027/027566.json new file mode 100644 index 0000000000000000000000000000000000000000..bb7593db531c7d58525d7204288d5bf146d3fe6a --- /dev/null +++ b/source/designs/detail/027/027566.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dddb2dbb22e68ae19dfd56ac20769c09076bf776a9b0d0495f2a3c5849cd9a4 +size 1121 diff --git a/source/designs/detail/027/027567.json b/source/designs/detail/027/027567.json new file mode 100644 index 0000000000000000000000000000000000000000..1600e4ba807db987ff5f153e0ba665a5826cbe74 --- /dev/null +++ b/source/designs/detail/027/027567.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4349f8ebdc9a972815c1147483ae81a379ff9c43a241b30f756831316fd91af +size 2318 diff --git a/source/designs/detail/027/027568.json b/source/designs/detail/027/027568.json new file mode 100644 index 0000000000000000000000000000000000000000..a7d0b4a1d9f74f5b50c973b2ce43c4d9a4fdbf14 --- /dev/null +++ b/source/designs/detail/027/027568.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c567f998702f2014e0b9fbb12cd24cdce00b44c315753bf1b9ebbdf8095d5a04 +size 1196 diff --git a/source/designs/detail/027/027569.json b/source/designs/detail/027/027569.json new file mode 100644 index 0000000000000000000000000000000000000000..dca37f54b0a0426ce0d10a7d4129be05ac95b442 --- /dev/null +++ b/source/designs/detail/027/027569.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8c21755665d601b776e0bdeda2109850d36863057d4ac4b346e9faf459ffca0 +size 1251 diff --git a/source/designs/detail/027/027570.json b/source/designs/detail/027/027570.json new file mode 100644 index 0000000000000000000000000000000000000000..255667627b54728c0ba4c62a3cc674e9528a14f3 --- /dev/null +++ b/source/designs/detail/027/027570.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1517cac3b772f2341770b5e2a0faea5fc75aba44d985dea82387e55f99b18173 +size 1877 diff --git a/source/designs/detail/027/027571.json b/source/designs/detail/027/027571.json new file mode 100644 index 0000000000000000000000000000000000000000..5042cbebb91d42f42f27aece41425cae22a971fb --- /dev/null +++ b/source/designs/detail/027/027571.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e808e42685633894b4c472bbe65aa25ce26b06606e3cb6703999fcdf16cc0901 +size 1262 diff --git a/source/designs/detail/027/027572.json b/source/designs/detail/027/027572.json new file mode 100644 index 0000000000000000000000000000000000000000..ed315f3ea75a7b2877922ef409a9e36d24e4e611 --- /dev/null +++ b/source/designs/detail/027/027572.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e618798b8c3a4bbb391601187392309e63fdd4262802c99bef444199b7960280 +size 1149 diff --git a/source/designs/detail/027/027573.json b/source/designs/detail/027/027573.json new file mode 100644 index 0000000000000000000000000000000000000000..debee59f726817f8ed17cce9170380f8f75ec5d2 --- /dev/null +++ b/source/designs/detail/027/027573.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53e1be37cb2fe3a5bcebf024cc52e672200b98f2b68edb759071519498fce02 +size 1505 diff --git a/source/designs/detail/027/027574.json b/source/designs/detail/027/027574.json new file mode 100644 index 0000000000000000000000000000000000000000..4d071c753be95793baad86d06eae653941b654a5 --- /dev/null +++ b/source/designs/detail/027/027574.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d2dc4c364e345cbbbc705678c22a7187008af2d71d61c507a50df512e4bc29 +size 1300 diff --git a/source/designs/detail/027/027575.json b/source/designs/detail/027/027575.json new file mode 100644 index 0000000000000000000000000000000000000000..f415a4ad16a87096fb1bd6bcc628acb399705fcf --- /dev/null +++ b/source/designs/detail/027/027575.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b7775d5a2dfc1ae9b2902c7c12037e0e03ce042e0aa174d809b1e9f431ac1b +size 2221 diff --git a/source/designs/detail/027/027576.json b/source/designs/detail/027/027576.json new file mode 100644 index 0000000000000000000000000000000000000000..c8f0a135f5b1a825ec480c7875e69760b8409e52 --- /dev/null +++ b/source/designs/detail/027/027576.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd942c70ae237362356ce4dca3784647810870992dbf8c131ab842468ffbf6f7 +size 2123 diff --git a/source/designs/detail/027/027577.json b/source/designs/detail/027/027577.json new file mode 100644 index 0000000000000000000000000000000000000000..b447c480d1de7c820a362b2028c30a116dee84f4 --- /dev/null +++ b/source/designs/detail/027/027577.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86fb0ead7c0626db9a3fc60f5d3be093278d4b97d06081200ffebd18d9afe943 +size 1180 diff --git a/source/designs/detail/027/027578.json b/source/designs/detail/027/027578.json new file mode 100644 index 0000000000000000000000000000000000000000..41aa67089a30bc0e373b41c4307a1666020c02a4 --- /dev/null +++ b/source/designs/detail/027/027578.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a32fc1e29f7580643e30f6c01ef8c822e8437d2ab96b3000d1851dd204f4c3 +size 1047 diff --git a/source/designs/detail/027/027579.json b/source/designs/detail/027/027579.json new file mode 100644 index 0000000000000000000000000000000000000000..a6be021f932bee6e1f7ac73e46bcfff0ca331fa5 --- /dev/null +++ b/source/designs/detail/027/027579.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ba23363783b65977476f139bf36dd5f2b803ce30ddf26171e93d6aac8d1518 +size 1559 diff --git a/source/designs/detail/027/027580.json b/source/designs/detail/027/027580.json new file mode 100644 index 0000000000000000000000000000000000000000..ad2575b01351442e16d9ec1f1a0e458d1602a4d6 --- /dev/null +++ b/source/designs/detail/027/027580.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f2e3b11309a79b7dfea0942a7cd45006fd910faad9a7095fb854bd6d1a74f70 +size 1564 diff --git a/source/designs/detail/027/027581.json b/source/designs/detail/027/027581.json new file mode 100644 index 0000000000000000000000000000000000000000..8b6312c689eadbd850238e9b83177f5b28003152 --- /dev/null +++ b/source/designs/detail/027/027581.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81997644d35bb6a0cccdce4d22c9ab55047f2a50159796a7be1c90f9ae71843c +size 1528 diff --git a/source/designs/detail/027/027582.json b/source/designs/detail/027/027582.json new file mode 100644 index 0000000000000000000000000000000000000000..85bf98343b2c80daacd9ccd809a55ef77212ab22 --- /dev/null +++ b/source/designs/detail/027/027582.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2396bb46274910117492b0a1c9ed6e9c50713005522d6a1b875b430af3561d9d +size 1491 diff --git a/source/designs/detail/027/027583.json b/source/designs/detail/027/027583.json new file mode 100644 index 0000000000000000000000000000000000000000..b4ecdb9741d74a808b218b5fe6372fbd2768e519 --- /dev/null +++ b/source/designs/detail/027/027583.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2bc8b1770757fb8ec1d03da16d0029a6f47645821ab3af7893df5b283018391 +size 1620 diff --git a/source/designs/detail/027/027584.json b/source/designs/detail/027/027584.json new file mode 100644 index 0000000000000000000000000000000000000000..714704b0e0a81e38c918bcb811adff45f721ac53 --- /dev/null +++ b/source/designs/detail/027/027584.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f40904c5fc409ec4d33fcd4eecf0527cd68ce1d4d0090e0dc29e443343ba257 +size 1002 diff --git a/source/designs/detail/027/027585.json b/source/designs/detail/027/027585.json new file mode 100644 index 0000000000000000000000000000000000000000..163aad076338f7fe5ee385839fdefa776de4ff85 --- /dev/null +++ b/source/designs/detail/027/027585.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea6beb2c731dd97226f45be40bccf307d821a15e9edcbee1108f12b8eebe300 +size 955 diff --git a/source/designs/detail/027/027586.json b/source/designs/detail/027/027586.json new file mode 100644 index 0000000000000000000000000000000000000000..42df0d044e2edc606b311535d77de6166e746cf4 --- /dev/null +++ b/source/designs/detail/027/027586.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ee6e2ae4279b2fe114dc86ed8fc152cf62e7fb7cf7b0c1fb98098024026632 +size 984 diff --git a/source/designs/detail/027/027587.json b/source/designs/detail/027/027587.json new file mode 100644 index 0000000000000000000000000000000000000000..c8874ffda5678ad940ba4ac7f77bfd9f0490e98b --- /dev/null +++ b/source/designs/detail/027/027587.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5118c6d0243e68d837300dd2eaab844498393256bdad728742df017bdb622ef +size 1167 diff --git a/source/designs/detail/027/027588.json b/source/designs/detail/027/027588.json new file mode 100644 index 0000000000000000000000000000000000000000..7053af8c4c25b2c215b34147502b19b0e408a3bc --- /dev/null +++ b/source/designs/detail/027/027588.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7b72e476d6303dbac09e5244c3472af7ef6c833f0ad4015ad5606be2fa84d9 +size 1116 diff --git a/source/designs/detail/027/027589.json b/source/designs/detail/027/027589.json new file mode 100644 index 0000000000000000000000000000000000000000..2dee42a0d2f967019d79c2f037dd391ca2fcd62b --- /dev/null +++ b/source/designs/detail/027/027589.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323d22d41cbe6250ea12bebcdb950f997e8c6ecb72a43a4a4b2219e3d0ec4c6a +size 1376 diff --git a/source/designs/detail/027/027590.json b/source/designs/detail/027/027590.json new file mode 100644 index 0000000000000000000000000000000000000000..ab37a052b007c5e2f55cb2a919b0197586a5ba8d --- /dev/null +++ b/source/designs/detail/027/027590.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a6feeccfbc2530e2fdc2405588ad0dd8b9c0db05ece96de77bc64fa9b61b47 +size 1302 diff --git a/source/designs/detail/027/027591.json b/source/designs/detail/027/027591.json new file mode 100644 index 0000000000000000000000000000000000000000..852744afa9100a7dd238b5799d652ec8e273391e --- /dev/null +++ b/source/designs/detail/027/027591.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:592815c5946d514fce13a79e0fce102c9b8e217ffb15b11501d8446facad1d80 +size 1881 diff --git a/source/designs/detail/027/027593.json b/source/designs/detail/027/027593.json new file mode 100644 index 0000000000000000000000000000000000000000..7c752b8d69a003d06a1a72c99dbf03e569e7c5ca --- /dev/null +++ b/source/designs/detail/027/027593.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b0ce2ca5e0fb6acb546bbb02f0fedd932a18b14a238112438d5df8bb1e32f9 +size 1119 diff --git a/source/designs/detail/027/027594.json b/source/designs/detail/027/027594.json new file mode 100644 index 0000000000000000000000000000000000000000..0065298151c823226d6bc7593266387b6c62fb92 --- /dev/null +++ b/source/designs/detail/027/027594.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e75302235d65e79a0432dcc4c4f78706c1e18d48602857a03148c40ae7f29cf +size 1995 diff --git a/source/designs/detail/027/027595.json b/source/designs/detail/027/027595.json new file mode 100644 index 0000000000000000000000000000000000000000..105b0db6033c3adee12e7d46120a6295e6d641da --- /dev/null +++ b/source/designs/detail/027/027595.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d97e66804f47ceb0b8452e462c5fc8e977cacd874912a3e3853a058fc92eff +size 1171 diff --git a/source/designs/detail/027/027596.json b/source/designs/detail/027/027596.json new file mode 100644 index 0000000000000000000000000000000000000000..c44782a818615b0274198acb3b5d54c083eb24e1 --- /dev/null +++ b/source/designs/detail/027/027596.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0e0b94eb56ff30bfd7701fc351167ffbc9c757a0ee0440d0572d081fe6fd4f1 +size 1687 diff --git a/source/designs/detail/027/027597.json b/source/designs/detail/027/027597.json new file mode 100644 index 0000000000000000000000000000000000000000..040603a2d20d99a8be5ded9c65736e7e71dfaf5a --- /dev/null +++ b/source/designs/detail/027/027597.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2709446bf51dd988a5a7a7527bf348d15fb0cdd63d972ba300717a4aae7e41c +size 1455 diff --git a/source/designs/detail/027/027598.json b/source/designs/detail/027/027598.json new file mode 100644 index 0000000000000000000000000000000000000000..26ac0ea16308423fcc6b55ee7a1bf3ee0db6a35d --- /dev/null +++ b/source/designs/detail/027/027598.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a447a2a6ecf82832d3efaca93f1dba316f64201ed687e7ebb11cecc49e44af9 +size 1987 diff --git a/source/designs/detail/027/027599.json b/source/designs/detail/027/027599.json new file mode 100644 index 0000000000000000000000000000000000000000..29b61d0d442b1ff3c6341fe1ceadb9a69dceafa6 --- /dev/null +++ b/source/designs/detail/027/027599.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8561cac00687a1b6356b8f1e8793bb055259c432374d75ec1fbd658f37e25bf8 +size 2676 diff --git a/source/designs/detail/027/027600.json b/source/designs/detail/027/027600.json new file mode 100644 index 0000000000000000000000000000000000000000..1894fe0662331f4261fb2169b8978edee4da932e --- /dev/null +++ b/source/designs/detail/027/027600.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0755d5af9b4de37585816bb1d571b8946032b53deebce049be9a289454325b69 +size 1146 diff --git a/source/designs/detail/027/027601.json b/source/designs/detail/027/027601.json new file mode 100644 index 0000000000000000000000000000000000000000..860cf141e9aac3b997c0589feb2dab82ca77e416 --- /dev/null +++ b/source/designs/detail/027/027601.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553b2ef5e55387cbceebf282ae5dca3fa97b07635daae4c48b73e2cac9ea717d +size 1407 diff --git a/source/designs/detail/027/027603.json b/source/designs/detail/027/027603.json new file mode 100644 index 0000000000000000000000000000000000000000..21ff2c87a8d118855b95abbf37793753be5db0ee --- /dev/null +++ b/source/designs/detail/027/027603.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4c5e74bab382d63dc7c55ba086bf6e412d1e1a57d488228ad702f24e64a11d2 +size 1309 diff --git a/source/designs/detail/027/027604.json b/source/designs/detail/027/027604.json new file mode 100644 index 0000000000000000000000000000000000000000..c1f383806572bd28abe5b3036d59ef67844dd5ce --- /dev/null +++ b/source/designs/detail/027/027604.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52478cd67ac5b4a77fb022b06b855a90fcc1ea4ccee09b7121d28a3f2eb04224 +size 1856 diff --git a/source/designs/detail/027/027605.json b/source/designs/detail/027/027605.json new file mode 100644 index 0000000000000000000000000000000000000000..2faddcd5e46553efc2376194fe7793781c712858 --- /dev/null +++ b/source/designs/detail/027/027605.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1c6f1f0ee7b0821a82f92a3b269489e2d22c9cc70b7b0fba10c6db323498bd +size 1479 diff --git a/source/designs/detail/027/027606.json b/source/designs/detail/027/027606.json new file mode 100644 index 0000000000000000000000000000000000000000..78954f0121d926d4e5ab8102cabc4eb177be69ce --- /dev/null +++ b/source/designs/detail/027/027606.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c76664c4962bfbc810b144feed23de277060a911454db2eaa5da5bea523c0df +size 1974 diff --git a/source/designs/detail/027/027607.json b/source/designs/detail/027/027607.json new file mode 100644 index 0000000000000000000000000000000000000000..fee4d70144237761206876a3027e105d3f510fdc --- /dev/null +++ b/source/designs/detail/027/027607.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bad08fbc98c638262593b7d2c9849f034b0eb0a50a730a320cc5e9b0550379 +size 1413 diff --git a/source/designs/detail/027/027608.json b/source/designs/detail/027/027608.json new file mode 100644 index 0000000000000000000000000000000000000000..930600431dd1eed47209ebaf53c852c5c1c60ebb --- /dev/null +++ b/source/designs/detail/027/027608.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3395a33e7f1b804c739c051ca7872e9820191058cca5f99e5598bd6779022880 +size 1494 diff --git a/source/designs/detail/027/027609.json b/source/designs/detail/027/027609.json new file mode 100644 index 0000000000000000000000000000000000000000..86999a46c7918b7995b354d79bcc5c99f28c5cf6 --- /dev/null +++ b/source/designs/detail/027/027609.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa883388393c77a83397a983a17175a9d039e697e75395f74ec5ee56f123271 +size 1504 diff --git a/source/designs/detail/027/027610.json b/source/designs/detail/027/027610.json new file mode 100644 index 0000000000000000000000000000000000000000..00d1f2650340b3783d1638d225bc5b56429e183e --- /dev/null +++ b/source/designs/detail/027/027610.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea5b768b9d9c5799461c3a8387189e0adc7a20c1bac1653f7770fa3853cb652 +size 1711 diff --git a/source/designs/detail/027/027611.json b/source/designs/detail/027/027611.json new file mode 100644 index 0000000000000000000000000000000000000000..958441b6e2f700395d5da5794eccad56eb601def --- /dev/null +++ b/source/designs/detail/027/027611.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a349ac4f603564d009bff13d5fc4bbac04e8778806838fae69a8cf3298496048 +size 1356 diff --git a/source/designs/detail/027/027612.json b/source/designs/detail/027/027612.json new file mode 100644 index 0000000000000000000000000000000000000000..198643d4b3968339bc94b354aa29ef49a8451015 --- /dev/null +++ b/source/designs/detail/027/027612.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fba8471a7c5ec40c4118eebc2d5d1f42aa673a04ce704db8a337b069df6a50 +size 1483 diff --git a/source/designs/detail/027/027613.json b/source/designs/detail/027/027613.json new file mode 100644 index 0000000000000000000000000000000000000000..c893aee104213bbb2912e0aa4671b227f488ecf6 --- /dev/null +++ b/source/designs/detail/027/027613.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ac43700c2bc679aa70ead4ad42c5b2c80f59b4232da9cc77d91c2976da2abe +size 1634 diff --git a/source/designs/detail/027/027614.json b/source/designs/detail/027/027614.json new file mode 100644 index 0000000000000000000000000000000000000000..d678eb81584832791873a2c8109a50041f4a51ab --- /dev/null +++ b/source/designs/detail/027/027614.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cdab5968155f1fd594cb728e9708f398f1da68ccae49c99007c3c0a70feb701 +size 1335 diff --git a/source/designs/detail/027/027615.json b/source/designs/detail/027/027615.json new file mode 100644 index 0000000000000000000000000000000000000000..a9cea09738e2abee99f76b5ee1c8aa8531c7c100 --- /dev/null +++ b/source/designs/detail/027/027615.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e29b6deeb5d7a6a16e0e4e830a9c9fde6d2e23cadce60a253b637d144f111c +size 1682 diff --git a/source/designs/detail/027/027617.json b/source/designs/detail/027/027617.json new file mode 100644 index 0000000000000000000000000000000000000000..412fcf3c778b680ba4c072853288bff270598467 --- /dev/null +++ b/source/designs/detail/027/027617.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af48ef0a0e8cebf8b0c300a239dbe11a8be8c92dca84c71df5f003b53163e09c +size 1404 diff --git a/source/designs/detail/027/027618.json b/source/designs/detail/027/027618.json new file mode 100644 index 0000000000000000000000000000000000000000..4970c33a39ec79177bf9bcc5d3937c405b109b2e --- /dev/null +++ b/source/designs/detail/027/027618.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:201c4ab94c41e59c03731faaf2c6765d9b383746b3409d953d271e9778514236 +size 1167 diff --git a/source/designs/detail/027/027619.json b/source/designs/detail/027/027619.json new file mode 100644 index 0000000000000000000000000000000000000000..223756f2644c1ce67904709ba5a74125eb10e6e7 --- /dev/null +++ b/source/designs/detail/027/027619.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d452be0b17689d32f197badeaa05c14425db0fc2def2f9bd3c57ba8e3b3720 +size 1438 diff --git a/source/designs/detail/027/027620.json b/source/designs/detail/027/027620.json new file mode 100644 index 0000000000000000000000000000000000000000..e88a2e2629678d49617faad6ff8e795f8f98337e --- /dev/null +++ b/source/designs/detail/027/027620.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b917337ffcee5480ef3d2770ed7b7f62a72c8c14779969b1624aa3dd35cd6d1e +size 1392 diff --git a/source/designs/detail/027/027621.json b/source/designs/detail/027/027621.json new file mode 100644 index 0000000000000000000000000000000000000000..1f54ca956d53c5b9aec53cf995b1c736eac298a3 --- /dev/null +++ b/source/designs/detail/027/027621.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3aeb9ae948b6fd8c1df541e6c67e075df5674b9cfbf9ba4c02f4a7be5d3a99e +size 1686 diff --git a/source/designs/detail/027/027622.json b/source/designs/detail/027/027622.json new file mode 100644 index 0000000000000000000000000000000000000000..66fef3d0396c88228f87bc9306ac7b8930f36345 --- /dev/null +++ b/source/designs/detail/027/027622.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6b5814d50af46c193ed399c1a17a07f2963fc892a3607b0755bbfa78a82ec0c +size 1677 diff --git a/source/designs/detail/027/027623.json b/source/designs/detail/027/027623.json new file mode 100644 index 0000000000000000000000000000000000000000..ccc291859b443505526c1047eafaa7d889350728 --- /dev/null +++ b/source/designs/detail/027/027623.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9107b3e48c8e4234a574a45cd7c26a0c9253853b9d39c7f4f7497f27bf2d07fc +size 1212 diff --git a/source/designs/detail/027/027624.json b/source/designs/detail/027/027624.json new file mode 100644 index 0000000000000000000000000000000000000000..35b5a4de096fd7e8473e3687a6a160ab8f15c2cd --- /dev/null +++ b/source/designs/detail/027/027624.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:210dbd99295103ca7a8d8f36e563608d09f57fcf0c7cfef13f34b1e924f3827a +size 1324 diff --git a/source/designs/detail/027/027625.json b/source/designs/detail/027/027625.json new file mode 100644 index 0000000000000000000000000000000000000000..4131bdaaf0002d833d8169453c522f2aa50e4ee6 --- /dev/null +++ b/source/designs/detail/027/027625.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e304c98afec7c7154edf0c52081dbee0cc13ed4fa8bb44ea5b8726354b0a443 +size 1314 diff --git a/source/designs/detail/027/027626.json b/source/designs/detail/027/027626.json new file mode 100644 index 0000000000000000000000000000000000000000..1e1892987986238f3cdb2af55d316f4b40b4241b --- /dev/null +++ b/source/designs/detail/027/027626.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa9ae355efd14877c058c39fec60f7f7dec683abeb136f117f8d50f5875f5e0 +size 1641 diff --git a/source/designs/detail/027/027627.json b/source/designs/detail/027/027627.json new file mode 100644 index 0000000000000000000000000000000000000000..80c975e7d0a0b0e627ed57bf8a847d9723591e0d --- /dev/null +++ b/source/designs/detail/027/027627.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5ff444af44a6aafc3aae1d1ea1f0fa139302b6f2dcf9a22025125f29dc576c +size 1075 diff --git a/source/designs/detail/027/027628.json b/source/designs/detail/027/027628.json new file mode 100644 index 0000000000000000000000000000000000000000..c3d28bc62adb7eea00bce402d6029f05c7288131 --- /dev/null +++ b/source/designs/detail/027/027628.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da76582e43b61b395ea534fb36e340b8940efaa64bdad33757f70fb9074f68a +size 1054 diff --git a/source/designs/detail/027/027629.json b/source/designs/detail/027/027629.json new file mode 100644 index 0000000000000000000000000000000000000000..d42d6fb3c6eebf6f703f075bf4bdaa983893be0e --- /dev/null +++ b/source/designs/detail/027/027629.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41cf7898e739dca059709ecb2e3b7aae872cdcc40a3341e7b5d784c6ccfe9ca1 +size 1228 diff --git a/source/designs/detail/027/027630.json b/source/designs/detail/027/027630.json new file mode 100644 index 0000000000000000000000000000000000000000..fe93cc8821a9091a66498ce6e2714ba316c13bb5 --- /dev/null +++ b/source/designs/detail/027/027630.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9419ec4932b928d45578a3d6e5f39b0428efac37f7ff6011cd98423814a11f5 +size 1455 diff --git a/source/designs/detail/027/027631.json b/source/designs/detail/027/027631.json new file mode 100644 index 0000000000000000000000000000000000000000..bf380a0a768c1e0efaacb2658d302d913c0ce212 --- /dev/null +++ b/source/designs/detail/027/027631.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff475c8801a1ba39fcdf2792a2f0e976e9c3619e9b42452a4a3fd4dd4a755bb +size 1403 diff --git a/source/designs/detail/027/027632.json b/source/designs/detail/027/027632.json new file mode 100644 index 0000000000000000000000000000000000000000..64f475f1b1e6b22774c71c34a7474e0111317de4 --- /dev/null +++ b/source/designs/detail/027/027632.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0c0a9acfdee6388d3b0dc64d8a5bbb880d35750318e3597b729c3589da4e8f +size 1105 diff --git a/source/designs/detail/027/027633.json b/source/designs/detail/027/027633.json new file mode 100644 index 0000000000000000000000000000000000000000..72d0fa25132c0a0bc89ce159048fe11d9ec4b7c3 --- /dev/null +++ b/source/designs/detail/027/027633.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76dff4a5f76808499cfaf62900a338effa0baa83d7c2659e6daa5b92f74f97eb +size 1270 diff --git a/source/designs/detail/027/027634.json b/source/designs/detail/027/027634.json new file mode 100644 index 0000000000000000000000000000000000000000..b18535e7ec52e55b79b11dd163394360537b2fc8 --- /dev/null +++ b/source/designs/detail/027/027634.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0373776ab3e95c64a5097a5529777a9ea1f5e834407f0b637038830595133e +size 2928 diff --git a/source/designs/detail/027/027635.json b/source/designs/detail/027/027635.json new file mode 100644 index 0000000000000000000000000000000000000000..67413a9ea45f5777b2d68a98b8bccb6c185125d0 --- /dev/null +++ b/source/designs/detail/027/027635.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:285ffda9ee6c0eb0e9ec11658db1d5862e33fe391ad99e27844ca0dc0ac89652 +size 1301 diff --git a/source/designs/detail/027/027636.json b/source/designs/detail/027/027636.json new file mode 100644 index 0000000000000000000000000000000000000000..37a987c5be7bed6fe15d376c80502d163f48f7c1 --- /dev/null +++ b/source/designs/detail/027/027636.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395a5f681799f3559e1885891790f2c8c41433375b70c8c14b865ef3bd3007b9 +size 1410 diff --git a/source/designs/detail/027/027637.json b/source/designs/detail/027/027637.json new file mode 100644 index 0000000000000000000000000000000000000000..e8b2cfafe0a7e6638b5910c681bee01459020f2e --- /dev/null +++ b/source/designs/detail/027/027637.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78af43f3b652d70f15593f965ddd047a5e54d96c9ceafabc5a465175537fcc9c +size 2020 diff --git a/source/designs/detail/027/027638.json b/source/designs/detail/027/027638.json new file mode 100644 index 0000000000000000000000000000000000000000..d26a9ab0959c505b95b6aa76ae1c37763493e789 --- /dev/null +++ b/source/designs/detail/027/027638.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6b3082f832e6b4be77ecca89d9871a3d026c3df1d978f3ad38242316938c27 +size 1396 diff --git a/source/designs/detail/027/027639.json b/source/designs/detail/027/027639.json new file mode 100644 index 0000000000000000000000000000000000000000..969259120bb46d7528d57cb5d1039b05597e299c --- /dev/null +++ b/source/designs/detail/027/027639.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c487342b4985e9a723bd5bdec7ca752ed6163a06d97c49404068493c2b4ac8 +size 3243 diff --git a/source/designs/detail/027/027641.json b/source/designs/detail/027/027641.json new file mode 100644 index 0000000000000000000000000000000000000000..0e6060680e4b8d34facd18bf686e082edd41047d --- /dev/null +++ b/source/designs/detail/027/027641.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee24db869a6e696c8dccb60c168613eb9521d3c80d7841a027e423b2fb90575 +size 1436 diff --git a/source/designs/detail/027/027642.json b/source/designs/detail/027/027642.json new file mode 100644 index 0000000000000000000000000000000000000000..45160bd1b5f234dc1458713dfb0eeaad9c9ce51d --- /dev/null +++ b/source/designs/detail/027/027642.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90b4c546bd16a49ca993097420434d54f7e201c28b0ea25e734806aba1b86b35 +size 1788 diff --git a/source/designs/detail/027/027643.json b/source/designs/detail/027/027643.json new file mode 100644 index 0000000000000000000000000000000000000000..b042bc42a9900047e7b022431bf5f30a373b8c59 --- /dev/null +++ b/source/designs/detail/027/027643.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb83252c3d07eeef24cd66d282f72d369de90325d4dc10b09e07108dea1f0547 +size 1444 diff --git a/source/designs/detail/027/027644.json b/source/designs/detail/027/027644.json new file mode 100644 index 0000000000000000000000000000000000000000..8bc03f57aeaacbf8a8d8b79a26af98dab7c6e327 --- /dev/null +++ b/source/designs/detail/027/027644.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b338457b9ebe75b3b2bec267c0b31e3846d1cd5f5bde5bf3aa90b870cb95fb +size 1656 diff --git a/source/designs/detail/027/027645.json b/source/designs/detail/027/027645.json new file mode 100644 index 0000000000000000000000000000000000000000..670a455d144b6fc5889663184e3fe97864064704 --- /dev/null +++ b/source/designs/detail/027/027645.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ffe9f90a0212720b6ebb0081f1a6d9a3706e0567db2468781556ac108ceb3b1 +size 992 diff --git a/source/designs/detail/027/027646.json b/source/designs/detail/027/027646.json new file mode 100644 index 0000000000000000000000000000000000000000..3cc8f6cf46f4c5597bf3fade7515734e1a86c39e --- /dev/null +++ b/source/designs/detail/027/027646.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28e39c867e3ec1c4037236a90d2d79e7af6ea6e5faaeb29aafeace5b9bf5547 +size 1387 diff --git a/source/designs/detail/027/027647.json b/source/designs/detail/027/027647.json new file mode 100644 index 0000000000000000000000000000000000000000..c2697eaf2bb5fdcfb18a0bd2b31ad97b8a86422d --- /dev/null +++ b/source/designs/detail/027/027647.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7be8b1dc423a269c79e068e6005bc5222c04f9715c4acbadc0e476acf2af10 +size 1399 diff --git a/source/designs/detail/027/027648.json b/source/designs/detail/027/027648.json new file mode 100644 index 0000000000000000000000000000000000000000..d09a2cfc1ef9b21bc72408a4a8c1f360523600b9 --- /dev/null +++ b/source/designs/detail/027/027648.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0215b4c0b54bc0e95605d6e08dab16fcf112a1079fd4b94ea1696a9aff8b1ee4 +size 1668 diff --git a/source/designs/detail/027/027649.json b/source/designs/detail/027/027649.json new file mode 100644 index 0000000000000000000000000000000000000000..836d349e8c62adb87352d4164ad7cfeed3d61b23 --- /dev/null +++ b/source/designs/detail/027/027649.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28965b8b7f60efe6a7597749c7a7b9fb1f47dca0b972c57b22b7d0f32ca11ac7 +size 1480 diff --git a/source/designs/detail/027/027650.json b/source/designs/detail/027/027650.json new file mode 100644 index 0000000000000000000000000000000000000000..dd24a39292c19b6526d0437523f02fe98960a779 --- /dev/null +++ b/source/designs/detail/027/027650.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124e0e2a0d0376e2dc1f2eacd7081ee0e3ebda564e9256e577cb073bb6dad2b2 +size 1411 diff --git a/source/designs/detail/027/027651.json b/source/designs/detail/027/027651.json new file mode 100644 index 0000000000000000000000000000000000000000..cef737a889f8ee3aa60654fc0381be1f5cd8d352 --- /dev/null +++ b/source/designs/detail/027/027651.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf43aecffc402c67ef8beedce9e5637babd82c616fea1f0dfe3c4e44579ad93b +size 1492 diff --git a/source/designs/detail/027/027652.json b/source/designs/detail/027/027652.json new file mode 100644 index 0000000000000000000000000000000000000000..96b3eb9070be45e73af316a860fa69fccf3caca1 --- /dev/null +++ b/source/designs/detail/027/027652.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59cf253f5ce491cb08f8e07e54789449ce30caeeb1b2d2062227d5ad6582856 +size 1316 diff --git a/source/designs/detail/027/027653.json b/source/designs/detail/027/027653.json new file mode 100644 index 0000000000000000000000000000000000000000..8cac0e7997b961ef63e1e0f63c8cc112727bc92f --- /dev/null +++ b/source/designs/detail/027/027653.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611dbe77b9bb7adb81bd81a5c8bfa5207b780ab26ddd1c9b4f6b103ee6541ac5 +size 1960 diff --git a/source/designs/detail/027/027655.json b/source/designs/detail/027/027655.json new file mode 100644 index 0000000000000000000000000000000000000000..2dbe22c95cfe1a0ea0453d6711984be3b8ac95cc --- /dev/null +++ b/source/designs/detail/027/027655.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f92b30acb830e8495a2d490f717bedf04f0347567d1442e9ffe48334b7c952 +size 1781 diff --git a/source/designs/detail/027/027656.json b/source/designs/detail/027/027656.json new file mode 100644 index 0000000000000000000000000000000000000000..39b82f20108caa89918dc8f49014f2b05807d905 --- /dev/null +++ b/source/designs/detail/027/027656.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ebb67bd470d81c41f9121189065142926e2b80d3810e1c97e1829c9610cab2 +size 1329 diff --git a/source/designs/detail/027/027657.json b/source/designs/detail/027/027657.json new file mode 100644 index 0000000000000000000000000000000000000000..8b9a429ea9a7eb3908ad7854d569e33668bef99e --- /dev/null +++ b/source/designs/detail/027/027657.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084439d11905e74e8eb6e7c2bb86dcb33f9b8a0b5c914a9055e426b4566c5d17 +size 1736 diff --git a/source/designs/detail/027/027658.json b/source/designs/detail/027/027658.json new file mode 100644 index 0000000000000000000000000000000000000000..2b7de6d7d2c6330c1c12a83f4a3afbdac88ea693 --- /dev/null +++ b/source/designs/detail/027/027658.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:845b6e084c41b4fdd4984b3e679834eb211323b89d348abb984db2eed7fa8087 +size 1692 diff --git a/source/designs/detail/027/027659.json b/source/designs/detail/027/027659.json new file mode 100644 index 0000000000000000000000000000000000000000..6688342233c33a033694c1a22f64fe2bc4fc3ff9 --- /dev/null +++ b/source/designs/detail/027/027659.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f45505e7fb14c657f09e64e2f58d3f2e83eea7cf4cebb14ee59017478979c62 +size 1293 diff --git a/source/designs/detail/027/027660.json b/source/designs/detail/027/027660.json new file mode 100644 index 0000000000000000000000000000000000000000..c9f41384fa54a7ad4e48cd621be7ebd3e947fb89 --- /dev/null +++ b/source/designs/detail/027/027660.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25e170225d257cb2a41db5303dfaadf130357f6bc9354b0e5684d609a8a3a61 +size 1383 diff --git a/source/designs/detail/027/027661.json b/source/designs/detail/027/027661.json new file mode 100644 index 0000000000000000000000000000000000000000..1d6d026d7c39035727a3935ef9dad56c08201318 --- /dev/null +++ b/source/designs/detail/027/027661.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40780839ee251da9c4cc3ce10f82ac973a40146b2a98eab2231320ded4a945e2 +size 1653 diff --git a/source/designs/detail/027/027662.json b/source/designs/detail/027/027662.json new file mode 100644 index 0000000000000000000000000000000000000000..cf7e496e183c7f7d0600fb4ddb6e3dab933df461 --- /dev/null +++ b/source/designs/detail/027/027662.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f82a303c1b6e2fb561067d1aa0d23332553937061b23d11c4b96d5ccae2eadcb +size 1396 diff --git a/source/designs/detail/027/027663.json b/source/designs/detail/027/027663.json new file mode 100644 index 0000000000000000000000000000000000000000..bf66487ae8613129e4d568220292f83d00f67d56 --- /dev/null +++ b/source/designs/detail/027/027663.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76185f51022db6f890b60aae3da45860bff9272f6d1b0824aed02b2dbcc8e508 +size 1269 diff --git a/source/designs/detail/027/027664.json b/source/designs/detail/027/027664.json new file mode 100644 index 0000000000000000000000000000000000000000..a740b6ba2f56eb6c33f7a530216dc9580eccfb29 --- /dev/null +++ b/source/designs/detail/027/027664.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac9fac9a84ea87beab9ec543ead7aa1e184edb2b7c8f985c06425c1e07678946 +size 1313 diff --git a/source/designs/detail/027/027665.json b/source/designs/detail/027/027665.json new file mode 100644 index 0000000000000000000000000000000000000000..27703bf220b8674e5f648b749d2c660edd794ab4 --- /dev/null +++ b/source/designs/detail/027/027665.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:315f7a5887bb6b4881ae8b7df4e546fb080b133c54cc5d965bb7cb7e110f1376 +size 1299 diff --git a/source/designs/detail/027/027666.json b/source/designs/detail/027/027666.json new file mode 100644 index 0000000000000000000000000000000000000000..e5b6d7bfb98eb3fafe0b3dfad5b8860f9fb50484 --- /dev/null +++ b/source/designs/detail/027/027666.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac3bcd15992f440f6a61bcf96741982ac8903e8f81f17cedc33855a70e22bb9 +size 1301 diff --git a/source/designs/detail/027/027667.json b/source/designs/detail/027/027667.json new file mode 100644 index 0000000000000000000000000000000000000000..70fba5424c7ca6322d8543e0813fbd10e4e844fd --- /dev/null +++ b/source/designs/detail/027/027667.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9402bb23b89b70d3dc29d2bdabc8c2d164441c3e0a501bfe2536fdacca05e29c +size 1306 diff --git a/source/designs/detail/027/027668.json b/source/designs/detail/027/027668.json new file mode 100644 index 0000000000000000000000000000000000000000..20e913f701ce5dff50a792996ffe2b4635901f0d --- /dev/null +++ b/source/designs/detail/027/027668.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00a1c8c81f472ffc7417dd33429a9c45130b33ad4c0468ac677cf16f248fa14 +size 1338 diff --git a/source/designs/detail/027/027669.json b/source/designs/detail/027/027669.json new file mode 100644 index 0000000000000000000000000000000000000000..095b3251376ebc975a058a26553ba573406150fd --- /dev/null +++ b/source/designs/detail/027/027669.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241d516d8ef0e51ae52f5997edcda6900f2e1824e49e2120fd66df73c21382e6 +size 1194 diff --git a/source/designs/detail/027/027670.json b/source/designs/detail/027/027670.json new file mode 100644 index 0000000000000000000000000000000000000000..db426a81450525ea3a7a0d9505735cff710ed353 --- /dev/null +++ b/source/designs/detail/027/027670.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72338d47f82c645787211eba1287378037d8fc65f722eaa658ca02f6a0b8eee2 +size 1279 diff --git a/source/designs/detail/027/027671.json b/source/designs/detail/027/027671.json new file mode 100644 index 0000000000000000000000000000000000000000..12c6cf96ca452aa0f15715974a2944e6d2a2976b --- /dev/null +++ b/source/designs/detail/027/027671.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a67514bcaf83eae1ccfb5e434327bfbb8e0c6db043b83ce10c591968e7fc26 +size 1367 diff --git a/source/designs/detail/027/027672.json b/source/designs/detail/027/027672.json new file mode 100644 index 0000000000000000000000000000000000000000..04a94f98ae6a42ee37a224b673d57cca461e1552 --- /dev/null +++ b/source/designs/detail/027/027672.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053b7609f4d59140b46c8c298f36004b1e4d58d3cedcdf0fc312a1fc488f5c1d +size 1497 diff --git a/source/designs/detail/027/027673.json b/source/designs/detail/027/027673.json new file mode 100644 index 0000000000000000000000000000000000000000..e0f962b11f42ec91ab70a73ec384633a983e5489 --- /dev/null +++ b/source/designs/detail/027/027673.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253919cde0e0d7d6ea6479457594ebad6beee51a058fa90fd6b5633061c649b2 +size 1375 diff --git a/source/designs/detail/027/027674.json b/source/designs/detail/027/027674.json new file mode 100644 index 0000000000000000000000000000000000000000..f896cc80f1e91e40e24857b219ad26ea8ca9c9af --- /dev/null +++ b/source/designs/detail/027/027674.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab48ee26d4d6f8dd3bfc6d5bd6b2879c4788781febce67d641aad08b13a4d3f7 +size 1557 diff --git a/source/designs/detail/027/027675.json b/source/designs/detail/027/027675.json new file mode 100644 index 0000000000000000000000000000000000000000..ad951e8336bf0d90328269ba7df1660903916cb8 --- /dev/null +++ b/source/designs/detail/027/027675.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f8922cae2f33cf6b740e07376e51d9da62dfdf3838b2fa9b191257c7ddb0f4 +size 1553 diff --git a/source/designs/detail/027/027676.json b/source/designs/detail/027/027676.json new file mode 100644 index 0000000000000000000000000000000000000000..e4bfb83de11472147943d27c40c21699b6f4429e --- /dev/null +++ b/source/designs/detail/027/027676.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf1a5e2ddf64143fa166a1522aa7581a0f46c85175f4ae98e5fda1e848145bf +size 1104 diff --git a/source/designs/detail/027/027677.json b/source/designs/detail/027/027677.json new file mode 100644 index 0000000000000000000000000000000000000000..17db13d91237d6fa936a89f17a114c8845cca975 --- /dev/null +++ b/source/designs/detail/027/027677.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d50536a7b344003ed485bdf04e4f93ae0041f1ed22ce35c6cf83178861b167 +size 1641 diff --git a/source/designs/detail/027/027678.json b/source/designs/detail/027/027678.json new file mode 100644 index 0000000000000000000000000000000000000000..3707883f543e0a21ce09e793083de0f0f2917d9b --- /dev/null +++ b/source/designs/detail/027/027678.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde6b70bbd123da38799169ec67023d534762346a4b267f20a325d7344a83035 +size 1060 diff --git a/source/designs/detail/027/027679.json b/source/designs/detail/027/027679.json new file mode 100644 index 0000000000000000000000000000000000000000..53d8ba567d926750367cf55fd66a036d536d53db --- /dev/null +++ b/source/designs/detail/027/027679.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ead6d8485967255dd797fdb6c097b94f0419b995e799e8c9d3ab20a887d64a7 +size 1277 diff --git a/source/designs/detail/027/027680.json b/source/designs/detail/027/027680.json new file mode 100644 index 0000000000000000000000000000000000000000..88f5b2940dc4a43859bcdd2e073df4c0390b770d --- /dev/null +++ b/source/designs/detail/027/027680.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4491cd504074f1d743864915cfddd85c659c3ab7f01debc5bde16783e5883e +size 1515 diff --git a/source/designs/detail/027/027681.json b/source/designs/detail/027/027681.json new file mode 100644 index 0000000000000000000000000000000000000000..415eeb6763a6a9b46bc66191c3b4b56410799c1d --- /dev/null +++ b/source/designs/detail/027/027681.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd17964d92bd4baebaf681227b43e9064afd726f78bfd76918c7e44d5af79fd +size 1429 diff --git a/source/designs/detail/027/027682.json b/source/designs/detail/027/027682.json new file mode 100644 index 0000000000000000000000000000000000000000..01cfbee900090f374efc4c024ebb5217d2249b69 --- /dev/null +++ b/source/designs/detail/027/027682.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af6144c4795114ca8ce6270fa1cb134a726b99454d975d4cc2c362850ba9daf +size 1356 diff --git a/source/designs/detail/027/027683.json b/source/designs/detail/027/027683.json new file mode 100644 index 0000000000000000000000000000000000000000..3e5959d914ad7ce313a956f0bcf332cc9564df73 --- /dev/null +++ b/source/designs/detail/027/027683.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99458662687e4070e21556af90b9cb3f7b379dd8d2c5c17b88e77e7bdb36c18a +size 1242 diff --git a/source/designs/detail/027/027684.json b/source/designs/detail/027/027684.json new file mode 100644 index 0000000000000000000000000000000000000000..f5b24ba5ac300d8d6c80dd44d385677f280837cb --- /dev/null +++ b/source/designs/detail/027/027684.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7a6af3707ea9580b50c6e82783b847d2726c7f7d147984bb557f06eaf447933 +size 1246 diff --git a/source/designs/detail/027/027685.json b/source/designs/detail/027/027685.json new file mode 100644 index 0000000000000000000000000000000000000000..2fe2b9c5815997d9a313d33992d63c9ca1b1f3e6 --- /dev/null +++ b/source/designs/detail/027/027685.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4e3f1db41a78ee039e0c9e5e5d7719f43583859ec591144a927dcb81707d4f +size 1078 diff --git a/source/designs/detail/027/027686.json b/source/designs/detail/027/027686.json new file mode 100644 index 0000000000000000000000000000000000000000..9a30fabef337ed221de95e0c346902f7eba9cebc --- /dev/null +++ b/source/designs/detail/027/027686.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a6c57e33a326193da7cb8b7324dc357134d6292610653a7d6a52439abb6337 +size 1178 diff --git a/source/designs/detail/027/027687.json b/source/designs/detail/027/027687.json new file mode 100644 index 0000000000000000000000000000000000000000..d7ccbaf164e914c0949e367fa1f3e413f6666fba --- /dev/null +++ b/source/designs/detail/027/027687.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4fa48133fd638b98fc4c960859166cab81618917e1e34780011e15a5a095d0 +size 3748 diff --git a/source/designs/detail/027/027689.json b/source/designs/detail/027/027689.json new file mode 100644 index 0000000000000000000000000000000000000000..315f8a829775a7813140159cb9cd03d8a1a90950 --- /dev/null +++ b/source/designs/detail/027/027689.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426ca143846e0195abb68411cb1874d185c6646d00a78fc0d4e9b3dea47eaced +size 1110 diff --git a/source/designs/detail/027/027690.json b/source/designs/detail/027/027690.json new file mode 100644 index 0000000000000000000000000000000000000000..a2064d17d19f54b80dd1fc74c9d9086d284a3e13 --- /dev/null +++ b/source/designs/detail/027/027690.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd62745bcd78cb04660e6b3b33e59aca35a87ec8eae010c833dca5db101889d +size 1543 diff --git a/source/designs/detail/027/027693.json b/source/designs/detail/027/027693.json new file mode 100644 index 0000000000000000000000000000000000000000..06e58415ab764e185e90c80800b8ec90f6ea0725 --- /dev/null +++ b/source/designs/detail/027/027693.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a735d76f473b757821ecbe4e1c55b73a45a053d6a386a54b14fc2eb685dc3170 +size 1731 diff --git a/source/designs/detail/027/027694.json b/source/designs/detail/027/027694.json new file mode 100644 index 0000000000000000000000000000000000000000..ed0b1e71f13abc93722ef4be5d72e1bb31e5f1fb --- /dev/null +++ b/source/designs/detail/027/027694.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af9ee354c268103a29e8f31a255d509a55bb973e25a315bd83c892e93376957 +size 1825 diff --git a/source/designs/detail/027/027695.json b/source/designs/detail/027/027695.json new file mode 100644 index 0000000000000000000000000000000000000000..766caba76a7525c4725cb06d6d01121c202778c1 --- /dev/null +++ b/source/designs/detail/027/027695.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6b81e02e160468e23072429e2920a4190021cb1beaa45d2998651aed2e9b4e +size 1567 diff --git a/source/designs/detail/027/027696.json b/source/designs/detail/027/027696.json new file mode 100644 index 0000000000000000000000000000000000000000..0c3d517a1f0b969fd67573c526f927515c89eb3c --- /dev/null +++ b/source/designs/detail/027/027696.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c039de609290f14212d59f2ac303f6cb46f812214dda8a4cbd051777a5992e2c +size 1127 diff --git a/source/designs/detail/027/027697.json b/source/designs/detail/027/027697.json new file mode 100644 index 0000000000000000000000000000000000000000..363f2157bc04ee98d8446ad4d85ad7e531039400 --- /dev/null +++ b/source/designs/detail/027/027697.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718e678ecc218d3d15d85e270542a668b658ea9908c2b6685c06dc8fd4c8443e +size 1499 diff --git a/source/designs/detail/027/027698.json b/source/designs/detail/027/027698.json new file mode 100644 index 0000000000000000000000000000000000000000..34ac9217c7cf344a830b4acbbd6d12d401ef2a83 --- /dev/null +++ b/source/designs/detail/027/027698.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790e87cd4862200e3373aba0d4b8bf897fe68d5b79aa0f4ea255cedaab0af5bf +size 1401 diff --git a/source/designs/detail/027/027699.json b/source/designs/detail/027/027699.json new file mode 100644 index 0000000000000000000000000000000000000000..797f2964844ba30b0c386133a896a299d379f28b --- /dev/null +++ b/source/designs/detail/027/027699.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddb22cb188fcaf91a372055657d139227bd482ed189e8e2854e8cf1863383fb +size 1321 diff --git a/source/designs/detail/027/027700.json b/source/designs/detail/027/027700.json new file mode 100644 index 0000000000000000000000000000000000000000..de189285bd3b82594a864a430e9bf2553bf158be --- /dev/null +++ b/source/designs/detail/027/027700.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e22f54e00303c16df10e8a38bf7e7d61e60f1aa95c9528741c7714b8df5aa5bb +size 1118 diff --git a/source/designs/detail/027/027701.json b/source/designs/detail/027/027701.json new file mode 100644 index 0000000000000000000000000000000000000000..77072ae9d3053cf7ccb7168e76449f11bef3f54c --- /dev/null +++ b/source/designs/detail/027/027701.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e270ad8fc33d496d5955ee9c8f940bb4091814a885b2fb578c5e21a8f86d3186 +size 2131 diff --git a/source/designs/detail/027/027702.json b/source/designs/detail/027/027702.json new file mode 100644 index 0000000000000000000000000000000000000000..018189f9b818b4a6037b7eb897ebfb85e631e481 --- /dev/null +++ b/source/designs/detail/027/027702.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:663e5ec93be5a0a45f8d65deb849fb423ff5d5225d80d8a8dd1b10417528b24c +size 1501 diff --git a/source/designs/detail/027/027703.json b/source/designs/detail/027/027703.json new file mode 100644 index 0000000000000000000000000000000000000000..41e67aba8c91694320a53b5c36ddcac6f03ee852 --- /dev/null +++ b/source/designs/detail/027/027703.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4cf9c9e7d88f4f170c47fa08b3861c199da1454dfeb83895b7b55f91152d2b9 +size 1720 diff --git a/source/designs/detail/027/027704.json b/source/designs/detail/027/027704.json new file mode 100644 index 0000000000000000000000000000000000000000..d9c244e69e2567558f8fca7cc999b35d06394d66 --- /dev/null +++ b/source/designs/detail/027/027704.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b373fb871532fd1203da35e6046b4cb65459bd03129d744283e3e0c3aa39daa +size 1207 diff --git a/source/designs/detail/027/027705.json b/source/designs/detail/027/027705.json new file mode 100644 index 0000000000000000000000000000000000000000..490995db203d2321e33fa26dbc968fa3ade0aad3 --- /dev/null +++ b/source/designs/detail/027/027705.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe5047f24b85495beb21e589f4e58fa0f2475df328730e3d75d73d20eecb042 +size 1245 diff --git a/source/designs/detail/027/027706.json b/source/designs/detail/027/027706.json new file mode 100644 index 0000000000000000000000000000000000000000..89309dd957c221de2c77513b6c19d026fb8c0632 --- /dev/null +++ b/source/designs/detail/027/027706.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d9fe0b371c0afaafaaea44f26d6f7948016f1ea7149f8c155b2b86ef25f37c3 +size 995 diff --git a/source/designs/detail/027/027707.json b/source/designs/detail/027/027707.json new file mode 100644 index 0000000000000000000000000000000000000000..0852d3d36a4cb2017f1740488428073461fe104a --- /dev/null +++ b/source/designs/detail/027/027707.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a9c613926b621d62259cc23e82d8529b04207b184be6cb06bb1d1f2108b7481 +size 1140 diff --git a/source/designs/detail/027/027708.json b/source/designs/detail/027/027708.json new file mode 100644 index 0000000000000000000000000000000000000000..2ea1799098743ab93742f53a3471becf2723a991 --- /dev/null +++ b/source/designs/detail/027/027708.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589a16ec34391919ce41c7e72d698640438f1994a41a968bd2fbe8160d4524f5 +size 1273 diff --git a/source/designs/detail/027/027709.json b/source/designs/detail/027/027709.json new file mode 100644 index 0000000000000000000000000000000000000000..a0ea16a30b2fcf143987d111bc4ae1495bd29357 --- /dev/null +++ b/source/designs/detail/027/027709.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7331853ab74442c44647e050dbf468b69070716316738edcf7a51324a099ae8 +size 1047 diff --git a/source/designs/detail/027/027710.json b/source/designs/detail/027/027710.json new file mode 100644 index 0000000000000000000000000000000000000000..d1f9b484d7871697f34564dc10e8ae2f1e64f89e --- /dev/null +++ b/source/designs/detail/027/027710.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b538cc7cac47bcd2b7d91335fe62f8f94d0419fb371beead02df52ddceaee0c3 +size 1236 diff --git a/source/designs/detail/027/027711.json b/source/designs/detail/027/027711.json new file mode 100644 index 0000000000000000000000000000000000000000..53abdeacb0ba12fca10e04189f4bc01447de5002 --- /dev/null +++ b/source/designs/detail/027/027711.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f3fa37cc728ba6e2811b5ec5909a0af92e2145890af3c6adf1fd766f4388e7 +size 1308 diff --git a/source/designs/detail/027/027712.json b/source/designs/detail/027/027712.json new file mode 100644 index 0000000000000000000000000000000000000000..888d8e8d687025f0d26829a47460e05eeaa34b2a --- /dev/null +++ b/source/designs/detail/027/027712.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c986f3331dabf2034bb855461b4d7aff0d1e2b4ee02d01ae348dc286bbc9e8d +size 1552 diff --git a/source/designs/detail/027/027713.json b/source/designs/detail/027/027713.json new file mode 100644 index 0000000000000000000000000000000000000000..1b1aaca5b89687c91af1864a4735eddf25739f14 --- /dev/null +++ b/source/designs/detail/027/027713.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7cfb6579b7fea4aa537faf8911d8627f4c1b9e2d4ed885cb7e68f074e5b809 +size 3498 diff --git a/source/designs/detail/027/027714.json b/source/designs/detail/027/027714.json new file mode 100644 index 0000000000000000000000000000000000000000..86c828fe0783bec975d3125715760bed2815144a --- /dev/null +++ b/source/designs/detail/027/027714.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cb570ecb923f564bc02799e116f6605631117bde786e69b14b18ca12a5929a +size 1543 diff --git a/source/designs/detail/027/027715.json b/source/designs/detail/027/027715.json new file mode 100644 index 0000000000000000000000000000000000000000..9f9a639ec7afabea8d9c019eb95cf0698ca24132 --- /dev/null +++ b/source/designs/detail/027/027715.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0e83d4b51a48c84eca52db32985701eb351fb0cb614130d04fed76802328f3 +size 4020 diff --git a/source/designs/detail/027/027716.json b/source/designs/detail/027/027716.json new file mode 100644 index 0000000000000000000000000000000000000000..fd166e64a448e19ed715f8b0903caf58a4b9561d --- /dev/null +++ b/source/designs/detail/027/027716.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3d799b668ac4854e7a76552a0b5ef3dd891bf9ff0f7575488de6caff6da8fd +size 1441 diff --git a/source/designs/detail/027/027717.json b/source/designs/detail/027/027717.json new file mode 100644 index 0000000000000000000000000000000000000000..d7c58ab5b6afa07c5f786bfb97979598bf2a7040 --- /dev/null +++ b/source/designs/detail/027/027717.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58eb923a1aabbe5e859a6b05758ff734557456cff5e048bbd281e63fa903ee9d +size 1406 diff --git a/source/designs/detail/027/027718.json b/source/designs/detail/027/027718.json new file mode 100644 index 0000000000000000000000000000000000000000..e977be5784999df5182f2e60f672393e5d3f5343 --- /dev/null +++ b/source/designs/detail/027/027718.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396a3bc95190c603b5510f27f82717701867737f41b06b6338f8c9e4212b712c +size 1675 diff --git a/source/designs/detail/027/027720.json b/source/designs/detail/027/027720.json new file mode 100644 index 0000000000000000000000000000000000000000..59f86ee4b2176fb1dfa26b9b919922e17a93a9fb --- /dev/null +++ b/source/designs/detail/027/027720.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deb8a9b07333ea21b270f40d46d63f84e31a54fce2ec2a0bf842d7d048545790 +size 1424 diff --git a/source/designs/detail/027/027721.json b/source/designs/detail/027/027721.json new file mode 100644 index 0000000000000000000000000000000000000000..b480598e19963ddb1e884de2714e28cd6032568b --- /dev/null +++ b/source/designs/detail/027/027721.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0dbfdcb9d4264747f9e01f63218858562196813fbb7f7fdd5ced68ed401dd0 +size 1634 diff --git a/source/designs/detail/027/027722.json b/source/designs/detail/027/027722.json new file mode 100644 index 0000000000000000000000000000000000000000..d411b59bc98b4859b1452049e2d1b4ba81882788 --- /dev/null +++ b/source/designs/detail/027/027722.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11899d61be11e3c87b96f536226008ed791c4fcbdf18b6cb5bcaf7cf0f91757 +size 1088 diff --git a/source/designs/detail/027/027723.json b/source/designs/detail/027/027723.json new file mode 100644 index 0000000000000000000000000000000000000000..ca8d1defc5ca476bd0fdb9bc562bf91d22f2602c --- /dev/null +++ b/source/designs/detail/027/027723.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd26a3a88b03eaa5813c4f0813cae7732b6feaa8d74c8f69aba3d2a9d6a0591 +size 1356 diff --git a/source/designs/detail/027/027724.json b/source/designs/detail/027/027724.json new file mode 100644 index 0000000000000000000000000000000000000000..d8395dcfe7377183de278a3617ad7869898711a5 --- /dev/null +++ b/source/designs/detail/027/027724.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a1a4be0d4a461866e9ae42deefe6b9176e436a58227e499081539bc3d909602 +size 1677 diff --git a/source/designs/detail/027/027725.json b/source/designs/detail/027/027725.json new file mode 100644 index 0000000000000000000000000000000000000000..9ff39531ff2b7892bb0de97df05a5aed57b92bae --- /dev/null +++ b/source/designs/detail/027/027725.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02cc958ffadd2efb12a3049303d9eac57e03173f5cf0974bbdd7b86a7adcecf +size 1224 diff --git a/source/designs/detail/027/027726.json b/source/designs/detail/027/027726.json new file mode 100644 index 0000000000000000000000000000000000000000..ba97ef24b08cf672e8f9d8ed3822975e3d0ddf16 --- /dev/null +++ b/source/designs/detail/027/027726.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc98140d64d5d8122da38022bca6e9b06fd26093647d853b44228bb0b34be96 +size 1326 diff --git a/source/designs/detail/027/027727.json b/source/designs/detail/027/027727.json new file mode 100644 index 0000000000000000000000000000000000000000..a17a329910f9945ffe8d6f382a4b12cb71f2182c --- /dev/null +++ b/source/designs/detail/027/027727.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b01eedb81bc7cf607c709a3be3ddd4ab45a50f2a59a685cea5bc4a957d4b4936 +size 1754 diff --git a/source/designs/detail/027/027728.json b/source/designs/detail/027/027728.json new file mode 100644 index 0000000000000000000000000000000000000000..c715f1b90add845e6f5f270b896ce90e1323be84 --- /dev/null +++ b/source/designs/detail/027/027728.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16e9fdca6b978fcce2582660888d4492cf897694d5a9690c55ffe838412593a +size 1095 diff --git a/source/designs/detail/027/027729.json b/source/designs/detail/027/027729.json new file mode 100644 index 0000000000000000000000000000000000000000..c8936248d4d512c68b4cec5278558488e18af0b2 --- /dev/null +++ b/source/designs/detail/027/027729.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb55510a67ede1e13d005823f3f20808e1afaf3edc3b03753e8746a01013c31 +size 1601 diff --git a/source/designs/detail/027/027730.json b/source/designs/detail/027/027730.json new file mode 100644 index 0000000000000000000000000000000000000000..3c42430ef5ec52d2e18b3d88018132f0377fd4ba --- /dev/null +++ b/source/designs/detail/027/027730.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9051e1f048ebf180482dfa383e9aef93ad704c010ce841ce12b34f1d0895b86 +size 1366 diff --git a/source/designs/detail/027/027731.json b/source/designs/detail/027/027731.json new file mode 100644 index 0000000000000000000000000000000000000000..9c06582e87ab5d6b539a73ccff0d5cd3c7294837 --- /dev/null +++ b/source/designs/detail/027/027731.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea46f3c3ecb04f28a08b7f4ad3ca7f838f19c09063a01de59df8226486b69e26 +size 1156 diff --git a/source/designs/detail/027/027732.json b/source/designs/detail/027/027732.json new file mode 100644 index 0000000000000000000000000000000000000000..9dce00f5b9105f071dd5bbb251ec2479528cd316 --- /dev/null +++ b/source/designs/detail/027/027732.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96169492fffdfd1e241bde3462a0cff03ac35ff0bccc953871215a9b6a781ecb +size 1298 diff --git a/source/designs/detail/027/027733.json b/source/designs/detail/027/027733.json new file mode 100644 index 0000000000000000000000000000000000000000..e4474e85b4a7393b1594e3c4dd7769209a9c325e --- /dev/null +++ b/source/designs/detail/027/027733.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caa4f6b377134db64d17d4977fd0e721a8f2d90cbfaeccbfaedcb94fae008199 +size 1384 diff --git a/source/designs/detail/027/027734.json b/source/designs/detail/027/027734.json new file mode 100644 index 0000000000000000000000000000000000000000..444dcb5ae6c43094dce70db24b87c8fad0c4ff84 --- /dev/null +++ b/source/designs/detail/027/027734.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344d26f41318144c7bbb7874fc9b78999affe45362ecefd95d5761fff1554ada +size 1586 diff --git a/source/designs/detail/027/027735.json b/source/designs/detail/027/027735.json new file mode 100644 index 0000000000000000000000000000000000000000..8fbe37a79e2540c1e9bad0a22fccd482fe418884 --- /dev/null +++ b/source/designs/detail/027/027735.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e4afc9282925a351022db2db847be89faa047880d7b2479059470644b2ff6b +size 1464 diff --git a/source/designs/detail/027/027736.json b/source/designs/detail/027/027736.json new file mode 100644 index 0000000000000000000000000000000000000000..283922e59ce382f517a87067d169689f0570a7e4 --- /dev/null +++ b/source/designs/detail/027/027736.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec69a6e4ad74a22705117b89319e63ff60490dc167b45a20208fe6990261a71 +size 1454 diff --git a/source/designs/detail/027/027737.json b/source/designs/detail/027/027737.json new file mode 100644 index 0000000000000000000000000000000000000000..1a486aaaebf90f7956e5ade91eb0ae8c1169fb10 --- /dev/null +++ b/source/designs/detail/027/027737.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0053f9bd4732309f4b659e989686d6af5722604caaa6df0c65fb1e73b779f7e1 +size 1907 diff --git a/source/designs/detail/027/027738.json b/source/designs/detail/027/027738.json new file mode 100644 index 0000000000000000000000000000000000000000..75faf5c90f0b920bbfe2699c6aab99fdef4c979e --- /dev/null +++ b/source/designs/detail/027/027738.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a47fff71eb128e4a086b3dd244020f6b6f818cf91fd9221d069389feef592f4f +size 2044 diff --git a/source/designs/detail/027/027739.json b/source/designs/detail/027/027739.json new file mode 100644 index 0000000000000000000000000000000000000000..429cc6eee24af5de566f9984b1073700817d39d3 --- /dev/null +++ b/source/designs/detail/027/027739.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdb54dd0c5b19538f47b07cbc98b48f39ab7970d886ad804c025e93411e930f +size 1733 diff --git a/source/designs/detail/027/027740.json b/source/designs/detail/027/027740.json new file mode 100644 index 0000000000000000000000000000000000000000..0da03a379edb0ce21f937e415df0d63c466e84ec --- /dev/null +++ b/source/designs/detail/027/027740.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f25401cb32018090790d757d94f49049af41a9b9a8b52d7b80b1a8f58e54fa20 +size 1440 diff --git a/source/designs/detail/027/027741.json b/source/designs/detail/027/027741.json new file mode 100644 index 0000000000000000000000000000000000000000..cb1e0823d756917a32e12cb52cf51ed5677d6044 --- /dev/null +++ b/source/designs/detail/027/027741.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea324b0164a9776c4a72bded17dfa4045663e376a8fdf8c4539a6dd07f4849f +size 1707 diff --git a/source/designs/detail/027/027742.json b/source/designs/detail/027/027742.json new file mode 100644 index 0000000000000000000000000000000000000000..1dfb7ac05188583a85e26730b7ea284f06dd8941 --- /dev/null +++ b/source/designs/detail/027/027742.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a00ce19802457528ee708eabc652d4e71ddb7e7ae8df23bde7ad3dbb91940fa +size 1468 diff --git a/source/designs/detail/027/027743.json b/source/designs/detail/027/027743.json new file mode 100644 index 0000000000000000000000000000000000000000..30f3ce78458b0482fd20a5d46e09e430babd021c --- /dev/null +++ b/source/designs/detail/027/027743.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5f4dee8d0ab7371e75a90f7f8444ed0049260f0d26745371821ee858e722d4 +size 1593 diff --git a/source/designs/detail/027/027744.json b/source/designs/detail/027/027744.json new file mode 100644 index 0000000000000000000000000000000000000000..6cd604c463b759aad90b156f54b3cf8f68b7fb34 --- /dev/null +++ b/source/designs/detail/027/027744.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c90f7fc548323af3772cd996dd1d627b66fe3dc38bd8f0db41068c77b47a1a74 +size 1306 diff --git a/source/designs/detail/027/027745.json b/source/designs/detail/027/027745.json new file mode 100644 index 0000000000000000000000000000000000000000..8a3cbc952311dd6111cab10b7e5cfddb107bc56c --- /dev/null +++ b/source/designs/detail/027/027745.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:246a93bc8ddc67e7cc106f1b99e9dddb074e522e4fd0d23225476009c97a8e56 +size 1570 diff --git a/source/designs/detail/027/027746.json b/source/designs/detail/027/027746.json new file mode 100644 index 0000000000000000000000000000000000000000..9760b6e3f1584a23afb0a0b52f43f671e4abf11f --- /dev/null +++ b/source/designs/detail/027/027746.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8559c941a8c3c90fcf98a3434d761144aba658267be7b784a18a763cd4afffd +size 1557 diff --git a/source/designs/detail/027/027747.json b/source/designs/detail/027/027747.json new file mode 100644 index 0000000000000000000000000000000000000000..f49f394b27bc2f7c15b7f5f48a957e6097190350 --- /dev/null +++ b/source/designs/detail/027/027747.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7046fd6a8718be6e7d327a174c56ff5bcbc55de2f1dbb633def68c2ee1564137 +size 1412 diff --git a/source/designs/detail/027/027748.json b/source/designs/detail/027/027748.json new file mode 100644 index 0000000000000000000000000000000000000000..9fb8fa3a96a7a29efc3a4d9b2e3769aa92e80f5c --- /dev/null +++ b/source/designs/detail/027/027748.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa543dbc9a2df4c4c063fb180f767e7d10c791e0378ee533b6ca5264f4cb4b10 +size 1529 diff --git a/source/designs/detail/027/027749.json b/source/designs/detail/027/027749.json new file mode 100644 index 0000000000000000000000000000000000000000..f6743b77ebbab971ed8f11bf8b3e96d3c8c2b3f4 --- /dev/null +++ b/source/designs/detail/027/027749.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e459de80e1e1f6f05341d30cd83f602fbd424cce15721711f94e19c9c86409 +size 1403 diff --git a/source/designs/detail/027/027750.json b/source/designs/detail/027/027750.json new file mode 100644 index 0000000000000000000000000000000000000000..99fecd9d306ea38f2621a8833466303de232c646 --- /dev/null +++ b/source/designs/detail/027/027750.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3ae7dffd7fcf978bf96f71640f4afe44615904dce6ff7a3ca67727419b8b0a +size 1952 diff --git a/source/designs/detail/027/027751.json b/source/designs/detail/027/027751.json new file mode 100644 index 0000000000000000000000000000000000000000..452040496de345d05ec82d156749e7b2c07f6073 --- /dev/null +++ b/source/designs/detail/027/027751.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a22311c6bf5c0a4b2d2dd0d7013cf5c00d55dd6a6da4bc07e5048262edf3f8 +size 1508 diff --git a/source/designs/detail/027/027752.json b/source/designs/detail/027/027752.json new file mode 100644 index 0000000000000000000000000000000000000000..d4083ebc096a12f945fc3c44a2ed0e25c3114a9c --- /dev/null +++ b/source/designs/detail/027/027752.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8126d62e19e9166d1d26610a225de097e91e63e82417d48a6b82c832d4efcc +size 2058 diff --git a/source/designs/detail/027/027753.json b/source/designs/detail/027/027753.json new file mode 100644 index 0000000000000000000000000000000000000000..1d52c741717cb1049cf4123c532c61a0e6a50385 --- /dev/null +++ b/source/designs/detail/027/027753.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f96e1bc7946ffd218012876e755f28aa4e73daae2237e262bb5aef1f349a9c +size 1701 diff --git a/source/designs/detail/027/027754.json b/source/designs/detail/027/027754.json new file mode 100644 index 0000000000000000000000000000000000000000..689e45b9dadd430a0a96e7660040256599717b03 --- /dev/null +++ b/source/designs/detail/027/027754.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83067ec6439027e2401e0b80a8dbb998a561a3dc2a4017abcb5b305f5528bc88 +size 1362 diff --git a/source/designs/detail/027/027755.json b/source/designs/detail/027/027755.json new file mode 100644 index 0000000000000000000000000000000000000000..6956be56b528534553886e5aab06e113fb794f4c --- /dev/null +++ b/source/designs/detail/027/027755.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c21855e9632d14cf602e4f3960c5fb9d57026b61eaa728e0a939da67d0ef863 +size 1560 diff --git a/source/designs/detail/027/027756.json b/source/designs/detail/027/027756.json new file mode 100644 index 0000000000000000000000000000000000000000..21b2f90627ad95945f28b0af62debad4c5ac46cf --- /dev/null +++ b/source/designs/detail/027/027756.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ef54d290dd94f8f75da91ed240295df05ec5cde71bd46f543ff324ad913d02 +size 1384 diff --git a/source/designs/detail/027/027757.json b/source/designs/detail/027/027757.json new file mode 100644 index 0000000000000000000000000000000000000000..fe901e1957888399e488b8e4d57111d0169871f8 --- /dev/null +++ b/source/designs/detail/027/027757.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8210098d95398bb5652efade2da102fc9a50777f435e0941465310cbc3cd09f9 +size 1320 diff --git a/source/designs/detail/027/027758.json b/source/designs/detail/027/027758.json new file mode 100644 index 0000000000000000000000000000000000000000..a6ad83d3f6617d5937dfb4cc6760ccf96ed2a96c --- /dev/null +++ b/source/designs/detail/027/027758.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f63d955a8adfcca6fea3eb7bde459ee6906cd278acc766eb23b4d0c69ae337 +size 1293 diff --git a/source/designs/detail/027/027759.json b/source/designs/detail/027/027759.json new file mode 100644 index 0000000000000000000000000000000000000000..635981feb08cc827a7a16f502ba97deb059beaa6 --- /dev/null +++ b/source/designs/detail/027/027759.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d593c0292f6eb63cfccb033f33cfb69bf66669804a1fea8d687f63c8b75fb5a +size 1707 diff --git a/source/designs/detail/027/027760.json b/source/designs/detail/027/027760.json new file mode 100644 index 0000000000000000000000000000000000000000..0d2b1ef1774ea420cd77f327d16c1d3d471702c0 --- /dev/null +++ b/source/designs/detail/027/027760.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6d60f6af572b02b793dc42a29dbc4742cf3f1b8382a07a3c8b45c9a7dffcb4 +size 1672 diff --git a/source/designs/detail/027/027761.json b/source/designs/detail/027/027761.json new file mode 100644 index 0000000000000000000000000000000000000000..a46dce82e4b265aae4b5d017135885b23174731d --- /dev/null +++ b/source/designs/detail/027/027761.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6421f77b023be295fc15a1671745d3b75745ce392c7ffa0ed14206f7818cf6c2 +size 1445 diff --git a/source/designs/detail/027/027762.json b/source/designs/detail/027/027762.json new file mode 100644 index 0000000000000000000000000000000000000000..058a8e7fa5b5f5d8e5ab2ce9fba81fdcaaea99a6 --- /dev/null +++ b/source/designs/detail/027/027762.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea2d0790be182e43f71470bd55b5122b8d3aab35065063bb9339be0b24381312 +size 2014 diff --git a/source/designs/detail/027/027763.json b/source/designs/detail/027/027763.json new file mode 100644 index 0000000000000000000000000000000000000000..043a26a06baad7b4f5760f51cd2aae9995f374cf --- /dev/null +++ b/source/designs/detail/027/027763.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31023133dabb422a5aa1b2843d7464370841cecd33a3267935a6cafbbb8ff1d6 +size 1469 diff --git a/source/designs/detail/027/027764.json b/source/designs/detail/027/027764.json new file mode 100644 index 0000000000000000000000000000000000000000..020fe8f8eb7f5f14ce6b0fbf8b5194889934a11f --- /dev/null +++ b/source/designs/detail/027/027764.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2807b14148ecbfc99b030470669345f86e9372ac638d1be42acfebc46972c60f +size 1470 diff --git a/source/designs/detail/027/027765.json b/source/designs/detail/027/027765.json new file mode 100644 index 0000000000000000000000000000000000000000..3bec4d75e06baced872eed37c80ead0bd5601ce0 --- /dev/null +++ b/source/designs/detail/027/027765.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5974a6814272a24bf303dbdc431aec1cf2c67a55756be71bbdce8ee4e4eb019c +size 1683 diff --git a/source/designs/detail/027/027766.json b/source/designs/detail/027/027766.json new file mode 100644 index 0000000000000000000000000000000000000000..ca040c96cd88d128a599d0dfd73d14d57ea5c502 --- /dev/null +++ b/source/designs/detail/027/027766.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a67c8fb7a4d1f8be1d93064c0b4aeb564f7c6cc1311ce5e6387276eb751ee7 +size 1224 diff --git a/source/designs/detail/027/027767.json b/source/designs/detail/027/027767.json new file mode 100644 index 0000000000000000000000000000000000000000..b34c66524cade2caa6aa84c16b47e7e48bd90843 --- /dev/null +++ b/source/designs/detail/027/027767.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a15760540fa868744955e93bebf8c6aa9b666631310cf8d5c6c772357c54ba +size 1431 diff --git a/source/designs/detail/027/027768.json b/source/designs/detail/027/027768.json new file mode 100644 index 0000000000000000000000000000000000000000..aaad01f2e07f9679c593630c8c0bfd766848311f --- /dev/null +++ b/source/designs/detail/027/027768.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a87d91d42257c6697b27077fbee85b846a603fbbb67625eb591f3984c5fe58f +size 1526 diff --git a/source/designs/detail/027/027769.json b/source/designs/detail/027/027769.json new file mode 100644 index 0000000000000000000000000000000000000000..d1856bc10b29ad192f81b92cbb57837701b8feec --- /dev/null +++ b/source/designs/detail/027/027769.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ce87bee6c3f329c9f27454b2c658ca20a30c54a6ffb66cbfdf0a84724296d5e +size 1319 diff --git a/source/designs/detail/027/027770.json b/source/designs/detail/027/027770.json new file mode 100644 index 0000000000000000000000000000000000000000..d71eade75bdb4fcc6f167568423ac22ab5f3900a --- /dev/null +++ b/source/designs/detail/027/027770.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58c33e6ea05fcab3159d864aabe129a89afa4cba422bd9b5602f3bcc530f6b2 +size 1394 diff --git a/source/designs/detail/027/027771.json b/source/designs/detail/027/027771.json new file mode 100644 index 0000000000000000000000000000000000000000..c6613f5b61725207d7c5e302dbdef0d87f86eb1b --- /dev/null +++ b/source/designs/detail/027/027771.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430de8ed277ce6634c1de2e8c2f86f27757f30ba787695916fb7bed021745442 +size 2349 diff --git a/source/designs/detail/027/027772.json b/source/designs/detail/027/027772.json new file mode 100644 index 0000000000000000000000000000000000000000..c30ec1a1993b206bb88df7f3bc6820a95ff64930 --- /dev/null +++ b/source/designs/detail/027/027772.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc0b1f3e1a56d77426184bb03bb528037a6081e8bc3c99aacff097e87ef804b +size 1218 diff --git a/source/designs/detail/027/027773.json b/source/designs/detail/027/027773.json new file mode 100644 index 0000000000000000000000000000000000000000..78974498a28e5c6868346ac9acabdf859f7d9d0b --- /dev/null +++ b/source/designs/detail/027/027773.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b4ab9163aa7b9038301fb6e8a99a53866e302484bf9a37ce90c7b0e4fcad0d +size 1448 diff --git a/source/designs/detail/027/027774.json b/source/designs/detail/027/027774.json new file mode 100644 index 0000000000000000000000000000000000000000..182795dcfebaa487d00d074e2dd39236aaa0dc92 --- /dev/null +++ b/source/designs/detail/027/027774.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e91405d7270572faecbcf3a59fef14ab83fe2c9d39af67003b3b65dcc0a57d +size 1558 diff --git a/source/designs/detail/027/027775.json b/source/designs/detail/027/027775.json new file mode 100644 index 0000000000000000000000000000000000000000..231b49e01d2553635425b1787fcdfe3e718ed4cb --- /dev/null +++ b/source/designs/detail/027/027775.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2abe45595a4293325d4eec57eb9762a1b470a72b9c1dd9841214623227aabe +size 1502 diff --git a/source/designs/detail/027/027776.json b/source/designs/detail/027/027776.json new file mode 100644 index 0000000000000000000000000000000000000000..b1585add8379d1bdd71d11a106e186647c8b59ce --- /dev/null +++ b/source/designs/detail/027/027776.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d164c900fca0fcdbc3b994eff4d62bdab951c89b0e1c453f4346a46c4476eca +size 1406 diff --git a/source/designs/detail/027/027778.json b/source/designs/detail/027/027778.json new file mode 100644 index 0000000000000000000000000000000000000000..1771f6cc7b70d64eedccd1fb408a3d6b965d5175 --- /dev/null +++ b/source/designs/detail/027/027778.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a3d3c947c07d412d692122f9f14d81b6d11d9fa56aac000e1cf9dcf58100a89 +size 1282 diff --git a/source/designs/detail/027/027779.json b/source/designs/detail/027/027779.json new file mode 100644 index 0000000000000000000000000000000000000000..20491f0a206a9f2499d13f59516329dbbcbebc87 --- /dev/null +++ b/source/designs/detail/027/027779.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7cc5291a1f9f5ea854cc91c2dd242f3b51fa708db23e6ffbc447ec9d66f67f2 +size 1281 diff --git a/source/designs/detail/027/027780.json b/source/designs/detail/027/027780.json new file mode 100644 index 0000000000000000000000000000000000000000..c38c144795099297bac9db342bbf5af48198fddc --- /dev/null +++ b/source/designs/detail/027/027780.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bcdb94005a7b8f7951733c33c43b31ee0722960485405e560257bf41924113f +size 1802 diff --git a/source/designs/detail/027/027782.json b/source/designs/detail/027/027782.json new file mode 100644 index 0000000000000000000000000000000000000000..9cc0991a23240ff8c02177067123976f61d6f9e1 --- /dev/null +++ b/source/designs/detail/027/027782.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def3706cf50c3241bb99bb537544c568af7f41396773bdd257875d5edfbf5718 +size 1055 diff --git a/source/designs/detail/027/027783.json b/source/designs/detail/027/027783.json new file mode 100644 index 0000000000000000000000000000000000000000..26c571af9f653c87d9f7b18ce84510b89b712633 --- /dev/null +++ b/source/designs/detail/027/027783.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb117b80e6525af2df4226b072867545a4f68e17ef2888bbb918f54d2187712d +size 1478 diff --git a/source/designs/detail/027/027784.json b/source/designs/detail/027/027784.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4294926325c3576d98f6bd4d014d75565842c9 --- /dev/null +++ b/source/designs/detail/027/027784.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c064e913424d69413cdcd0de35b9aeb65d985125cc60f68d73fd523dee8ff3f +size 1875 diff --git a/source/designs/detail/027/027785.json b/source/designs/detail/027/027785.json new file mode 100644 index 0000000000000000000000000000000000000000..3bb2c584a73e65f2df5c4842a7bc90640e4b0f8d --- /dev/null +++ b/source/designs/detail/027/027785.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6445676fb230c3e57fef644e7f9f8cbcf2e7d283ee2647e7a686e2a062d3775c +size 1472 diff --git a/source/designs/detail/027/027786.json b/source/designs/detail/027/027786.json new file mode 100644 index 0000000000000000000000000000000000000000..ce7e59d0aeebdc46a75de971b18e0f2472566c93 --- /dev/null +++ b/source/designs/detail/027/027786.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c9dd0d3ecb7f0c115b34507cbf20e4f21c97365c500c3536a4079592a18c08 +size 1804 diff --git a/source/designs/detail/027/027787.json b/source/designs/detail/027/027787.json new file mode 100644 index 0000000000000000000000000000000000000000..2f39cdaeba8c4647f546ec7fa44203387f584f75 --- /dev/null +++ b/source/designs/detail/027/027787.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9667f738e4c713e9eaf590c1f474e7033c1d2675779235663d9e3ac93373211 +size 1513 diff --git a/source/designs/detail/027/027792.json b/source/designs/detail/027/027792.json new file mode 100644 index 0000000000000000000000000000000000000000..f04964ada20fa7746bd94060ce0eb43fc7b840d2 --- /dev/null +++ b/source/designs/detail/027/027792.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac87dc6843dad264d46a20f6adf6e9c47c99e43c7f35b1e05f984abe3761e12e +size 1208 diff --git a/source/designs/detail/027/027793.json b/source/designs/detail/027/027793.json new file mode 100644 index 0000000000000000000000000000000000000000..c317c42a3062fc55c7f7d57f5998b6ac6d6392c6 --- /dev/null +++ b/source/designs/detail/027/027793.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9a20d6f6de7b811648e3ab30677b39c372c4e3a4e1914974f36559e537da761 +size 1516 diff --git a/source/designs/detail/027/027794.json b/source/designs/detail/027/027794.json new file mode 100644 index 0000000000000000000000000000000000000000..dd44107a31a107c6c4f21b5fdc060dfc7d791847 --- /dev/null +++ b/source/designs/detail/027/027794.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0e0e7a659b3344ac860841a9179fc11c86a9f17c6eed96e54cdfb2d7ebc8928 +size 1221 diff --git a/source/designs/detail/027/027795.json b/source/designs/detail/027/027795.json new file mode 100644 index 0000000000000000000000000000000000000000..2a801afd4a40a7eb7c6b754a40a6714c97e406ee --- /dev/null +++ b/source/designs/detail/027/027795.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a95a15bfeb26f272d75d6ea949dc5165fcbf78742892d3fa936b6c0029e5b17 +size 1483 diff --git a/source/designs/detail/027/027796.json b/source/designs/detail/027/027796.json new file mode 100644 index 0000000000000000000000000000000000000000..e809550d32ea92577f8de4fbf2010d9a3cd8861d --- /dev/null +++ b/source/designs/detail/027/027796.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0b3061336a0cb691edf94fb2766eae664a16f62083c27aa84ccb7b7c8189a6 +size 1415 diff --git a/source/designs/detail/027/027797.json b/source/designs/detail/027/027797.json new file mode 100644 index 0000000000000000000000000000000000000000..4ebacab42b260d023f6bee21543950e9dabee048 --- /dev/null +++ b/source/designs/detail/027/027797.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f859e72246e6ea5f36b358983db492610e08580302b66607db275dfac76c139 +size 1235 diff --git a/source/designs/detail/027/027798.json b/source/designs/detail/027/027798.json new file mode 100644 index 0000000000000000000000000000000000000000..85ee97641334e5fc5d14d87d08c98d75779c5621 --- /dev/null +++ b/source/designs/detail/027/027798.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9269efa7aa041c3cb4491c5a980ed14967f0a3774270cc5cbc9207a75d607ab7 +size 1437 diff --git a/source/designs/detail/027829.json b/source/designs/detail/027/027829.json similarity index 100% rename from source/designs/detail/027829.json rename to source/designs/detail/027/027829.json diff --git a/source/designs/detail/027/027833.json b/source/designs/detail/027/027833.json new file mode 100644 index 0000000000000000000000000000000000000000..37d1e57f7c9fdf8ee6fabeaa8208488bc18ab130 --- /dev/null +++ b/source/designs/detail/027/027833.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11334f685d38174525a0bd863b76f592f1ab9829fe2ea29ba4b5759b11c7cf63 +size 1456 diff --git a/source/designs/detail/027/027834.json b/source/designs/detail/027/027834.json new file mode 100644 index 0000000000000000000000000000000000000000..ee62898fd3b00612237eb9f9b1623f130891294f --- /dev/null +++ b/source/designs/detail/027/027834.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8b6bdb6b0117a0588549f532aa4e05e2ea7ef26e74037462ed124c098646f1 +size 1168 diff --git a/source/designs/detail/027/027835.json b/source/designs/detail/027/027835.json new file mode 100644 index 0000000000000000000000000000000000000000..4aa9bcd041c47fcd95dcf05419e3afcd1b275e90 --- /dev/null +++ b/source/designs/detail/027/027835.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26ac2cf527d26b0ed373292d2a8492cd8e50f50e17757185c757d88c62c2497 +size 1462 diff --git a/source/designs/detail/027/027860.json b/source/designs/detail/027/027860.json new file mode 100644 index 0000000000000000000000000000000000000000..9816904d1e5d35f9a500099ad6134a917749a900 --- /dev/null +++ b/source/designs/detail/027/027860.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5938f8678b40ef8216d7cf015a37dd0f62f075371d5c72257609cf03ad9ae79f +size 1508 diff --git a/source/designs/detail/027/027861.json b/source/designs/detail/027/027861.json new file mode 100644 index 0000000000000000000000000000000000000000..4364629fb1498b2ddfc1fdff2230f1648b14f457 --- /dev/null +++ b/source/designs/detail/027/027861.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8787099efd42019897af231f79829fc1116066e47a364c8fc35ae8f629b36a2d +size 1415 diff --git a/source/designs/detail/027/027865.json b/source/designs/detail/027/027865.json new file mode 100644 index 0000000000000000000000000000000000000000..6c2049148d4844a7f9f3958bba04dfa406f3ac70 --- /dev/null +++ b/source/designs/detail/027/027865.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741557eb8d307a772bb0123cf300eb403bd6c170f89c5f3aed4e7bd6770fff9e +size 1251 diff --git a/source/designs/detail/027/027868.json b/source/designs/detail/027/027868.json new file mode 100644 index 0000000000000000000000000000000000000000..aed13a90ece7498cf39136a5d5e300e84dc31a2d --- /dev/null +++ b/source/designs/detail/027/027868.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbbf740fffbcf88705f58597e6cde270e4dc0287f16b91ae8c1e3b532ba42b3 +size 1175 diff --git a/source/designs/detail/027/027870.json b/source/designs/detail/027/027870.json new file mode 100644 index 0000000000000000000000000000000000000000..820eb5c92a799864f58219f8735f9fe4a2f86cb6 --- /dev/null +++ b/source/designs/detail/027/027870.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae5e0f78b1d917dcab3212e3380cf875890a688153f26eb63978cac39ad43e8 +size 1535 diff --git a/source/designs/detail/027/027872.json b/source/designs/detail/027/027872.json new file mode 100644 index 0000000000000000000000000000000000000000..d78136ff76f3e6e28a54faedee810057c883afe3 --- /dev/null +++ b/source/designs/detail/027/027872.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:265756103b50e570dde551090a964e039030c60abb00cd29ed3778f68b8111f6 +size 1529 diff --git a/source/designs/detail/027/027877.json b/source/designs/detail/027/027877.json new file mode 100644 index 0000000000000000000000000000000000000000..8220338c440b5139d07be1676712de5e41d6e797 --- /dev/null +++ b/source/designs/detail/027/027877.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:798276e93d9bece7f649a4de92b31ec9deaa6bf6474ab12da06ca58733415ea9 +size 3120 diff --git a/source/designs/detail/027/027881.json b/source/designs/detail/027/027881.json new file mode 100644 index 0000000000000000000000000000000000000000..4d1bc33bef000331a0a22aaea6b55de432d0c987 --- /dev/null +++ b/source/designs/detail/027/027881.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0076488fed845e984c9078723e2314e51bd483726fd916bc3bb4e2aef89cca75 +size 1210 diff --git a/source/designs/detail/027/027899.json b/source/designs/detail/027/027899.json new file mode 100644 index 0000000000000000000000000000000000000000..00e895d5b07cb8ce34d4c14170b1340f5b1e81d0 --- /dev/null +++ b/source/designs/detail/027/027899.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5453a5fe7de13b485cdefcd0350a98f25d704e97a593e55671e3e363b7f3798 +size 1708 diff --git a/source/designs/detail/027/027902.json b/source/designs/detail/027/027902.json new file mode 100644 index 0000000000000000000000000000000000000000..b49050659fc4d7283bb87be1bc0221d929ff966d --- /dev/null +++ b/source/designs/detail/027/027902.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37d90e4ff2ba39ee8ddffd024aab2af9cb547c4151c1492609e727ddebb2542 +size 1659 diff --git a/source/designs/detail/027/027903.json b/source/designs/detail/027/027903.json new file mode 100644 index 0000000000000000000000000000000000000000..978d21504ab685805126860ea50970ef54f9f527 --- /dev/null +++ b/source/designs/detail/027/027903.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e334c4fecaf5702d377e4881bff795d0d11cb336517e6fd09bc4cf4db9287af7 +size 1498 diff --git a/source/designs/detail/027/027904.json b/source/designs/detail/027/027904.json new file mode 100644 index 0000000000000000000000000000000000000000..62e0d69fc9f3a19ab0e446131230887585316c21 --- /dev/null +++ b/source/designs/detail/027/027904.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bdff132392d5982acc6f348c6a436bfefebdea75ed8ab2240165ede2ddec2ab +size 1595 diff --git a/source/designs/detail/032/032042.json b/source/designs/detail/032/032042.json new file mode 100644 index 0000000000000000000000000000000000000000..32b48a75f05924ec0d270ec110236f38585d442d --- /dev/null +++ b/source/designs/detail/032/032042.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b150fed40d3280b7a6787cb0afb4a8129198272c2ab54ba43dd186242a5445f4 +size 1509 diff --git a/source/designs/detail/032/032825.json b/source/designs/detail/032/032825.json new file mode 100644 index 0000000000000000000000000000000000000000..e1bc7a6427e45c45d6f3b1d1ee86fde2c0f61efe --- /dev/null +++ b/source/designs/detail/032/032825.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8747e8a66d15ff22daf38db5465b901b229502f6cc882b6ceb6c1f667cdca302 +size 2345 diff --git a/source/designs/detail/033/033718.json b/source/designs/detail/033/033718.json new file mode 100644 index 0000000000000000000000000000000000000000..88eaea79b492d084cd0af445a59dda9fd3646a89 --- /dev/null +++ b/source/designs/detail/033/033718.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb70ad9c7ae332de57dfae6726bfd8bacb26f912e350b47b72e82794e2b3179b +size 1834 diff --git a/source/designs/detail/037/037600.json b/source/designs/detail/037/037600.json new file mode 100644 index 0000000000000000000000000000000000000000..d8e9498a5408b6568bd99d0702fb538bcfcd07c5 --- /dev/null +++ b/source/designs/detail/037/037600.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c32eed061527555727eaf5c252858fbfd8bf5abdfe04de540c6c3aeac66b81a +size 1274 diff --git a/source/designs/detail/037/037703.json b/source/designs/detail/037/037703.json new file mode 100644 index 0000000000000000000000000000000000000000..46863f68be0770d2e1e0d5a8590e29012e82c659 --- /dev/null +++ b/source/designs/detail/037/037703.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d68776b04338f5026ae66406ed189e55bb486a468bb66c7c7827e2e6ee6389 +size 1467 diff --git a/source/designs/detail/037/037849.json b/source/designs/detail/037/037849.json new file mode 100644 index 0000000000000000000000000000000000000000..b6f29ee9808ab63f54a03cbb62e796f0a2f1e266 --- /dev/null +++ b/source/designs/detail/037/037849.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdfaf816b303fa92deb832b449c7e04b5d98ac879b599cbe25c41ed1aca4c494 +size 2936 diff --git a/source/designs/detail/039/039309.json b/source/designs/detail/039/039309.json new file mode 100644 index 0000000000000000000000000000000000000000..f35dcc9107174b482d0651e0ebda88f166f9a107 --- /dev/null +++ b/source/designs/detail/039/039309.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47949fabeb5bf670b0a3de5edcc4a40f1d8ca3b5c31489dfe208dc782d905df2 +size 1367 diff --git a/source/designs/detail/039/039468.json b/source/designs/detail/039/039468.json new file mode 100644 index 0000000000000000000000000000000000000000..c17ac804fdbcc660b8bb812633f2a51f06725007 --- /dev/null +++ b/source/designs/detail/039/039468.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6590c25f25c767799daaf935817ab9e1f59c74611616987cabb2861c70acea69 +size 1296 diff --git a/source/designs/detail/044/044223.json b/source/designs/detail/044/044223.json new file mode 100644 index 0000000000000000000000000000000000000000..4c3fc85522c6ceec040f73587d7d9966d2edea5b --- /dev/null +++ b/source/designs/detail/044/044223.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e52b5fa8da8d7d05ea5748596b0b4f56d81b45338530310ff01b0cddeda5774d +size 1443 diff --git a/source/designs/detail/047/047111.json b/source/designs/detail/047/047111.json new file mode 100644 index 0000000000000000000000000000000000000000..809558ff7178fa95f2139e77195eae2627a91612 --- /dev/null +++ b/source/designs/detail/047/047111.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:257200b670eed1c7fcc06cef9e5840eff7c34ac5eb7e2bb38dd40bd2542d7c27 +size 1342 diff --git a/source/designs/detail/047/047641.json b/source/designs/detail/047/047641.json new file mode 100644 index 0000000000000000000000000000000000000000..3fdea77143d3842cd12be17498b7320573d290f5 --- /dev/null +++ b/source/designs/detail/047/047641.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51137dd5c49c20c4daf4607c1c2dbd31882049108413a6979a71bbf71484107b +size 1436 diff --git a/source/designs/detail/053/053143.json b/source/designs/detail/053/053143.json new file mode 100644 index 0000000000000000000000000000000000000000..3f1dd2747ab1142ad2f8a0a38666b79480ca170e --- /dev/null +++ b/source/designs/detail/053/053143.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66756b459b21aa20b993226304add57fef8537a6e014132989f4a9bdd7467398 +size 672 diff --git a/source/designs/detail/058/058135.json b/source/designs/detail/058/058135.json new file mode 100644 index 0000000000000000000000000000000000000000..9600f97b23bfbeb116491ecde253ce6e7b35a617 --- /dev/null +++ b/source/designs/detail/058/058135.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c933fdf1ffaea4f16e0a83974630edaa994e9078342093ebeae04b75aec26d +size 1544 diff --git a/source/designs/detail/062/062109.json b/source/designs/detail/062/062109.json new file mode 100644 index 0000000000000000000000000000000000000000..675c3be4666650776f70c8e89bd4b66b54dff730 --- /dev/null +++ b/source/designs/detail/062/062109.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60cf756577610e6ae17a9bbcbb92bff990487a210f2a45104b64948cdd49ec31 +size 2898 diff --git a/source/designs/detail/068/068515.json b/source/designs/detail/068/068515.json new file mode 100644 index 0000000000000000000000000000000000000000..d2e6c38fdc7031984fa394b1d717fcd57afe854c --- /dev/null +++ b/source/designs/detail/068/068515.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ca427ef6044fa333e64e5a6591c7955aae52a5f5bba6540cc9a84b8b3227ee +size 1656 diff --git a/source/designs/detail/070/070023.json b/source/designs/detail/070/070023.json new file mode 100644 index 0000000000000000000000000000000000000000..98cb18dc173b40f8768d345f8f50e2847786a32d --- /dev/null +++ b/source/designs/detail/070/070023.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beaa09bada96db7710ab1f6147f3347b3397c34eab45df11f468e345fbf85ed2 +size 1413 diff --git a/source/designs/detail/084882.json b/source/designs/detail/084/084882.json similarity index 100% rename from source/designs/detail/084882.json rename to source/designs/detail/084/084882.json diff --git a/source/designs/detail/087/087150.json b/source/designs/detail/087/087150.json new file mode 100644 index 0000000000000000000000000000000000000000..1e392d930373dacc0e4ee11f7e21debcaf813351 --- /dev/null +++ b/source/designs/detail/087/087150.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83578b94d5312fc9b169ed6d10c0c78653a3d89e9e8e408d2c8995fb03d60a51 +size 1442 diff --git a/source/designs/detail/087/087764.json b/source/designs/detail/087/087764.json new file mode 100644 index 0000000000000000000000000000000000000000..41d283116f6b230887bb84d37d09cec9d8480b9a --- /dev/null +++ b/source/designs/detail/087/087764.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08dcc48ae4a7c207445ca05b7f4ebd93b8fd714793cac64ba93e1ec03614d812 +size 1488 diff --git a/source/designs/detail/090/090110.json b/source/designs/detail/090/090110.json new file mode 100644 index 0000000000000000000000000000000000000000..225d1a4bc1246ad3c9512db9db33b535a5611d9a --- /dev/null +++ b/source/designs/detail/090/090110.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e5ef33949c43cd3c9df865a102b4766fa963b61fc735a0c780a975f3ce54422 +size 1558 diff --git a/source/designs/detail/090/090112.json b/source/designs/detail/090/090112.json new file mode 100644 index 0000000000000000000000000000000000000000..1e6b52b18303b58d2fc7adb2c66ad74895c19251 --- /dev/null +++ b/source/designs/detail/090/090112.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4501ec0cbdf85e32baf6c87be2b2ea4c56e42a8333da4f5a272489c3f19bdfb2 +size 1439 diff --git a/source/designs/detail/090/090115.json b/source/designs/detail/090/090115.json new file mode 100644 index 0000000000000000000000000000000000000000..7401eba2b142101f51b15985bd40346808a94727 --- /dev/null +++ b/source/designs/detail/090/090115.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecacdd65fe1bd86799bb2c450474bd8b2811dfefe527add134beb3d96699219 +size 1879 diff --git a/source/designs/detail/091/091086.json b/source/designs/detail/091/091086.json new file mode 100644 index 0000000000000000000000000000000000000000..e329514150c7be87ce5c470dda10114e936ff2a3 --- /dev/null +++ b/source/designs/detail/091/091086.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eedcc0e47675235650cc1d5a6424b6127f40593e1f8799d8d620cb39bfe7a0b +size 1988 diff --git a/source/designs/detail/091/091388.json b/source/designs/detail/091/091388.json new file mode 100644 index 0000000000000000000000000000000000000000..f4daec7d213987d8592589acd6ff3450902203d4 --- /dev/null +++ b/source/designs/detail/091/091388.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e2e6a9629f401f35e6ffc8e601873b7f497ce76eee093e296b023e5d0d5b78 +size 1646 diff --git a/source/designs/detail/1015/1015922.json b/source/designs/detail/1015/1015922.json new file mode 100644 index 0000000000000000000000000000000000000000..8de90a64fe760fb34316938c01b558a7907c02ea --- /dev/null +++ b/source/designs/detail/1015/1015922.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b484c30968540ec27bae707d06cebeb59ab2e2af480e9eb507b5a56477bfc1b +size 1134 diff --git a/source/designs/detail/1017/1017010.json b/source/designs/detail/1017/1017010.json new file mode 100644 index 0000000000000000000000000000000000000000..6dfc6a59d060ba3282146929eb0dfca06b70dc53 --- /dev/null +++ b/source/designs/detail/1017/1017010.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:777ef270457b7c74b21932f42486715365d30935ae55cc99e5514ee58595dad7 +size 2359 diff --git a/source/designs/detail/1017/1017316.json b/source/designs/detail/1017/1017316.json new file mode 100644 index 0000000000000000000000000000000000000000..d56c0411c3b3a6daf654e2a83d685e1903bffe62 --- /dev/null +++ b/source/designs/detail/1017/1017316.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309e542213b13b763d09e4a70d9bf316200f0aa1cf57481789c44906d9fcb1ee +size 988 diff --git a/source/designs/detail/1017/1017367.json b/source/designs/detail/1017/1017367.json new file mode 100644 index 0000000000000000000000000000000000000000..a56f6fbe8347374cb17eeb37336d511587bf7685 --- /dev/null +++ b/source/designs/detail/1017/1017367.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90ab99883d4c8b4f4b0687779c8f89babdd6aeb3838164925e405d59c2f75500 +size 1187 diff --git a/source/designs/detail/1018/1018770.json b/source/designs/detail/1018/1018770.json new file mode 100644 index 0000000000000000000000000000000000000000..4227336080a07628b33959bd2bc1c31cff408477 --- /dev/null +++ b/source/designs/detail/1018/1018770.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0240a52fe1673825fdf2d0291d7f857fda2cda137a6708530ba5d307d1d4a01 +size 1364 diff --git a/source/designs/detail/102/102400.json b/source/designs/detail/102/102400.json new file mode 100644 index 0000000000000000000000000000000000000000..3ed153858945c9a14a519dc932d024af79e5b913 --- /dev/null +++ b/source/designs/detail/102/102400.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ab4c4392ceb3f03dcf1baf529876c38e15ee996122ff75e63d36826312ce2e +size 1324 diff --git a/source/designs/detail/1021/1021240.json b/source/designs/detail/1021/1021240.json new file mode 100644 index 0000000000000000000000000000000000000000..f13a15d65d60c1e0977f3a3470e32cdabd9effa0 --- /dev/null +++ b/source/designs/detail/1021/1021240.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a070f222a607784e76dad158bc74b0073670e3675f985523baebd8adc8d16a +size 1799 diff --git a/source/designs/detail/103/103574.json b/source/designs/detail/103/103574.json new file mode 100644 index 0000000000000000000000000000000000000000..22daade9a406698553105bca996bbdca1a2d47c2 --- /dev/null +++ b/source/designs/detail/103/103574.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90765d6f55bd7ff26b88c6147eaa325d8cfb3f51e7dd3de22166733d14ff79bb +size 1567 diff --git a/source/designs/detail/1030/1030959.json b/source/designs/detail/1030/1030959.json new file mode 100644 index 0000000000000000000000000000000000000000..beccf5d3debce32a9b1d1224107031ee28aeee94 --- /dev/null +++ b/source/designs/detail/1030/1030959.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e1fd67e85177523942930ced36506271899764fe82eef12a1844b5b3e41c24f +size 2176 diff --git a/source/designs/detail/1032/1032566.json b/source/designs/detail/1032/1032566.json new file mode 100644 index 0000000000000000000000000000000000000000..3e39dc537e7e676ba5224d75deb3a8f15babc2a4 --- /dev/null +++ b/source/designs/detail/1032/1032566.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d616f9addd3152206e49a0ad15352dc280cd18f4f92754e4fd246b6917e6ac7 +size 2030 diff --git a/source/designs/detail/1033/1033356.json b/source/designs/detail/1033/1033356.json new file mode 100644 index 0000000000000000000000000000000000000000..1bcb228edf9529f2390d128930834f3f062acc8f --- /dev/null +++ b/source/designs/detail/1033/1033356.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f4306216121466e46e5c89169f3ad662f48d29f51916bc3852b3cf716a9985 +size 1878 diff --git a/source/designs/detail/1033/1033360.json b/source/designs/detail/1033/1033360.json new file mode 100644 index 0000000000000000000000000000000000000000..21533be2a599037c332ae7fb2121f79465087b5d --- /dev/null +++ b/source/designs/detail/1033/1033360.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ee59f7d9bec8e61c267999c713420468bcf8f55cf7e494e4f6761daaf68bc1 +size 2547 diff --git a/source/designs/detail/1033/1033361.json b/source/designs/detail/1033/1033361.json new file mode 100644 index 0000000000000000000000000000000000000000..91d0aa91cca242c5ea71a0197f67b951d2f3cd47 --- /dev/null +++ b/source/designs/detail/1033/1033361.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e98ecb570fbfd175c34ea117dbddb3d74bfcdb9a22ec77a63803a34f634a01 +size 1105 diff --git a/source/designs/detail/1034/1034015.json b/source/designs/detail/1034/1034015.json new file mode 100644 index 0000000000000000000000000000000000000000..3dacd3538fd907b4bf50700c4ced5fc61a5b0735 --- /dev/null +++ b/source/designs/detail/1034/1034015.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a345ab5c2fc58d9717868d170d1f179b2b435e0aeb95e65afc2c27ba79b766c2 +size 1850 diff --git a/source/designs/detail/1034/1034016.json b/source/designs/detail/1034/1034016.json new file mode 100644 index 0000000000000000000000000000000000000000..8f64616b10569e8d2b62cab8392d3cc8ba29e95d --- /dev/null +++ b/source/designs/detail/1034/1034016.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4487774aa76fdd2f4b9372cb6d1f38573f66816b0691a956ee4f788eea9fb199 +size 1788 diff --git a/source/designs/detail/1034/1034490.json b/source/designs/detail/1034/1034490.json new file mode 100644 index 0000000000000000000000000000000000000000..359a444052bb14129782450d43f47351347456df --- /dev/null +++ b/source/designs/detail/1034/1034490.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1875895885c05078d3dda9f4ac334be4ed4ce37d1b01a4e4a5b8390642a3d59 +size 1772 diff --git a/source/designs/detail/1034/1034849.json b/source/designs/detail/1034/1034849.json new file mode 100644 index 0000000000000000000000000000000000000000..db5fd47556ea286f12ffb4ab03395ba24a388150 --- /dev/null +++ b/source/designs/detail/1034/1034849.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233935836e01fa456ad11044ec0c3faba8ed965456a7d93e58d10f3bc71a4963 +size 1701 diff --git a/source/designs/detail/1036/1036541.json b/source/designs/detail/1036/1036541.json new file mode 100644 index 0000000000000000000000000000000000000000..2d7bb82a867ae915f24d0b8c72e626b356d92253 --- /dev/null +++ b/source/designs/detail/1036/1036541.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c7f7e8d76683cff59ff3d76195f29886142d8e64f6be59300a3b4eedc7763c8 +size 1663 diff --git a/source/designs/detail/1036901.json b/source/designs/detail/1036/1036901.json similarity index 100% rename from source/designs/detail/1036901.json rename to source/designs/detail/1036/1036901.json diff --git a/source/designs/detail/1042/1042033.json b/source/designs/detail/1042/1042033.json new file mode 100644 index 0000000000000000000000000000000000000000..b5f4528af7bba6aa5d0a0a670aa8ace7b3994c0c --- /dev/null +++ b/source/designs/detail/1042/1042033.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5730e10aa9261fa2d78afb878a2c59e7010c08fc15526b22679f33548e3bf038 +size 2181 diff --git a/source/designs/detail/1046/1046466.json b/source/designs/detail/1046/1046466.json new file mode 100644 index 0000000000000000000000000000000000000000..4ad063e1571b7698d13422b3693d39ca5cf0e90b --- /dev/null +++ b/source/designs/detail/1046/1046466.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0865b6bafd096bad2785120f657cc60c991be33de6a82df56b57da79e4d77246 +size 1759 diff --git a/source/designs/detail/1046/1046467.json b/source/designs/detail/1046/1046467.json new file mode 100644 index 0000000000000000000000000000000000000000..342c7c1bbd0812963a768f0e3ab87b911b71befb --- /dev/null +++ b/source/designs/detail/1046/1046467.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9d4a023deb9dfd27f28a7f389246915a4dee038f287e5f30106325cfddef3f +size 1772 diff --git a/source/designs/detail/1046/1046468.json b/source/designs/detail/1046/1046468.json new file mode 100644 index 0000000000000000000000000000000000000000..59ff1aaa5aa4ddda48665e1be461bb4981745fad --- /dev/null +++ b/source/designs/detail/1046/1046468.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511715c89a2dd9d4d5ba54cf2cdfd02ade2103043e05e0905480d4c843d32589 +size 1542 diff --git a/source/designs/detail/1047/1047180.json b/source/designs/detail/1047/1047180.json new file mode 100644 index 0000000000000000000000000000000000000000..f61bc3149404d544e4fad4a3bfdba3a3e4c8799d --- /dev/null +++ b/source/designs/detail/1047/1047180.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c44e176e029f38ea16c1cbbe290cae4d8aa28a960fbd7655693ec3c9d0898a0 +size 2098 diff --git a/source/designs/detail/1050/1050997.json b/source/designs/detail/1050/1050997.json new file mode 100644 index 0000000000000000000000000000000000000000..d18ae42f2b83fc59cc9c3b4ce40a3534691aee91 --- /dev/null +++ b/source/designs/detail/1050/1050997.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a5f8c704a7299cae845e786d2ce5cf3c4ee62feb55e05deae8e700d50c0584 +size 1653 diff --git a/source/designs/detail/1050/1050998.json b/source/designs/detail/1050/1050998.json new file mode 100644 index 0000000000000000000000000000000000000000..71b37ee1c473929dd4af3737c1a94757f5b4430d --- /dev/null +++ b/source/designs/detail/1050/1050998.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130ff8966970cc928a20a29f4eb65ce93ee3fcbb61f0dfc96dcf6e1f4fa774fe +size 1673 diff --git a/source/designs/detail/1057/1057357.json b/source/designs/detail/1057/1057357.json new file mode 100644 index 0000000000000000000000000000000000000000..7d732f2a59c02eae03ec351b2df5d24b9840c45e --- /dev/null +++ b/source/designs/detail/1057/1057357.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ac9c91c344d1733782fec4aece6f6abe8b3d426fb5938ceaf8652b59b8b986 +size 1590 diff --git a/source/designs/detail/1058/1058300.json b/source/designs/detail/1058/1058300.json new file mode 100644 index 0000000000000000000000000000000000000000..0c71112100a62f02a8d876d28cbda830dc3e7e92 --- /dev/null +++ b/source/designs/detail/1058/1058300.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c396d4bce4992779e5e8db3077047fdf2cb63ceff90c5541c82bf88e650e527 +size 1686 diff --git a/source/designs/detail/1061/1061029.json b/source/designs/detail/1061/1061029.json new file mode 100644 index 0000000000000000000000000000000000000000..e57098ae781b5ac38630ebd76adb934a38004f68 --- /dev/null +++ b/source/designs/detail/1061/1061029.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e57ad60c5db9f03c76909ebbeeedd6195c42501b3b9a9e8e22efd2bb7c5b86 +size 1543 diff --git a/source/designs/detail/107/107008.json b/source/designs/detail/107/107008.json new file mode 100644 index 0000000000000000000000000000000000000000..a4fac66c63d172e1b16b7e7a4ef7ab6fbc423cf2 --- /dev/null +++ b/source/designs/detail/107/107008.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78411cc9977a0a7c567ccb15f9531b8186486614b09de518882f849a5441d315 +size 2123 diff --git a/source/designs/detail/1074/1074151.json b/source/designs/detail/1074/1074151.json new file mode 100644 index 0000000000000000000000000000000000000000..5d6a6460b1dcf0d232aa710db914f0b22295d944 --- /dev/null +++ b/source/designs/detail/1074/1074151.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdce38712866ccad78dc89b0343db20142f8456c43909abf269adeb1aca98025 +size 1867 diff --git a/source/designs/detail/1081/1081527.json b/source/designs/detail/1081/1081527.json new file mode 100644 index 0000000000000000000000000000000000000000..c635ae737640e25e1537244e19558b4d5b620e40 --- /dev/null +++ b/source/designs/detail/1081/1081527.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8fa306f59c51e3e7e6742407a08d05e479d4943fd501916d35459f92acc816e +size 1055 diff --git a/source/designs/detail/1084/1084467.json b/source/designs/detail/1084/1084467.json new file mode 100644 index 0000000000000000000000000000000000000000..2712548db84ff116f502cadae6b17925c5e5aeec --- /dev/null +++ b/source/designs/detail/1084/1084467.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ab4ed41f6d8e56a5da2e11c13c42c1f0f9519fe038c324a44fc71506e7b122 +size 1187 diff --git a/source/designs/detail/1090/1090152.json b/source/designs/detail/1090/1090152.json new file mode 100644 index 0000000000000000000000000000000000000000..00005cf57db4e6d3964765801ed35f830b6415fe --- /dev/null +++ b/source/designs/detail/1090/1090152.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afad6d0e166129776b349917ce5daf6a4f61db340b0dad0f855dbadb93ccf599 +size 1882 diff --git a/source/designs/detail/1090/1090153.json b/source/designs/detail/1090/1090153.json new file mode 100644 index 0000000000000000000000000000000000000000..0ca7378e731e60b2c0caaf1eda633d36e0d633ff --- /dev/null +++ b/source/designs/detail/1090/1090153.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cde2e61f761de820bae2225e0e64fbbcf65bdb3765563a82f7a44accda8450 +size 2014 diff --git a/source/designs/detail/1106/1106588.json b/source/designs/detail/1106/1106588.json new file mode 100644 index 0000000000000000000000000000000000000000..fa30cfa50000e54ea0e407456cf49a2df29644f4 --- /dev/null +++ b/source/designs/detail/1106/1106588.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ea9772036bd85d8f5f915067dfd57b781e73b6e48d732a3f1c8c6a2bef2fc2 +size 1378 diff --git a/source/designs/detail/114/114031.json b/source/designs/detail/114/114031.json new file mode 100644 index 0000000000000000000000000000000000000000..eef521f341d70010cbb69936667bb346ab365220 --- /dev/null +++ b/source/designs/detail/114/114031.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb2a67e4fe8dfe5ac3f066fb3615d26c910b002968abb4567fc75b39ab240c8c +size 1608 diff --git a/source/designs/detail/115/115772.json b/source/designs/detail/115/115772.json new file mode 100644 index 0000000000000000000000000000000000000000..27b2a6c2edcd4545e29fe03a3b3cc3323ef70c08 --- /dev/null +++ b/source/designs/detail/115/115772.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b04c6a35d65a3681cc74c70d374de62b10256befdb1f9a70621cd084fd5368 +size 1605 diff --git a/source/designs/detail/117/117038.json b/source/designs/detail/117/117038.json new file mode 100644 index 0000000000000000000000000000000000000000..7cb44bd2b4f0a0eea4af9038900f56e3ba19b901 --- /dev/null +++ b/source/designs/detail/117/117038.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a88493b4d4ab605c21f6065e8936a73c151652d346c0dd201506ed853eec130 +size 2218 diff --git a/source/designs/detail/122/122053.json b/source/designs/detail/122/122053.json new file mode 100644 index 0000000000000000000000000000000000000000..181aae7185328c4615e1bbd1d88c4b278936af49 --- /dev/null +++ b/source/designs/detail/122/122053.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d19a0d4a865fb6aee0a1ea6e9251a7aa6c2e89dedd3a33a1694e353101a60858 +size 1111 diff --git a/source/designs/detail/129/129159.json b/source/designs/detail/129/129159.json new file mode 100644 index 0000000000000000000000000000000000000000..b056586be357666f24f2cc4004ba9f8e32906520 --- /dev/null +++ b/source/designs/detail/129/129159.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01b460c7d3d94c69918ad53a798bd87f627ac0df77424ce8631e7e160f6c528a +size 1430 diff --git a/source/designs/detail/130/130617.json b/source/designs/detail/130/130617.json new file mode 100644 index 0000000000000000000000000000000000000000..57b7b380df1dc78eef3ea4aaf7dc608decd1c7ac --- /dev/null +++ b/source/designs/detail/130/130617.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6859d693fe03f73a0d2cbf03412dd46307bfb5772b7a5803ebc6c2ace3e9612f +size 1815 diff --git a/source/designs/detail/131/131960.json b/source/designs/detail/131/131960.json new file mode 100644 index 0000000000000000000000000000000000000000..6e530afe367f8fe761fb2b2447d3110bd57836c5 --- /dev/null +++ b/source/designs/detail/131/131960.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd8a7d2baef8482bf56f7d49cb3009cc8709788a98474cb43da11f4a98ef4aee +size 1214 diff --git a/source/designs/detail/132/132626.json b/source/designs/detail/132/132626.json new file mode 100644 index 0000000000000000000000000000000000000000..976fc00360c162c3bac31333f4d35643296810d4 --- /dev/null +++ b/source/designs/detail/132/132626.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdbf737db8794738eae996f7dfc26e9b6a72dc2797abb1f18a74bacff33392fd +size 1565 diff --git a/source/designs/detail/139/139268.json b/source/designs/detail/139/139268.json new file mode 100644 index 0000000000000000000000000000000000000000..b51834a59562d349521ead2551f214e3021448e5 --- /dev/null +++ b/source/designs/detail/139/139268.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6833ecaaa2d8c09d0cb26f3e9bd5be4a75a8d61dc36d8f7a639a3ec8c7305f +size 1460 diff --git a/source/designs/detail/139/139491.json b/source/designs/detail/139/139491.json new file mode 100644 index 0000000000000000000000000000000000000000..493e849353b4cf29c9b85c8291f8e47a73e7c3d0 --- /dev/null +++ b/source/designs/detail/139/139491.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ba18d6b7fd6b89c7c653e5030f33c9c400ee8346fbe48c63acda57cc193315 +size 1823 diff --git a/source/designs/detail/139/139493.json b/source/designs/detail/139/139493.json new file mode 100644 index 0000000000000000000000000000000000000000..92848359b9ea80bd5dc23d175a3ce2e1ff8c9c25 --- /dev/null +++ b/source/designs/detail/139/139493.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38cd767b2b38f4d05030e8b052b137e43a73d9107f5fd72dad0d00708e332c34 +size 1454 diff --git a/source/designs/detail/139/139497.json b/source/designs/detail/139/139497.json new file mode 100644 index 0000000000000000000000000000000000000000..d2cfea8b464859b13392af65cafb35a79f0af742 --- /dev/null +++ b/source/designs/detail/139/139497.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17e4bd98b8d42ce472b3e159fcf693a1ae56c6834295c2e375b24cef543f287 +size 1513 diff --git a/source/designs/detail/139/139498.json b/source/designs/detail/139/139498.json new file mode 100644 index 0000000000000000000000000000000000000000..05e583f25f39f9e59e574d32cc9f37c6a001f5bc --- /dev/null +++ b/source/designs/detail/139/139498.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbcecb4b216f1d0600a079165ba2172eeb3cace394e988b31fb75d3a83c49a0f +size 1636 diff --git a/source/designs/detail/139/139499.json b/source/designs/detail/139/139499.json new file mode 100644 index 0000000000000000000000000000000000000000..53e2c0e13682b1064c43ea0d7e09ab6c66c32261 --- /dev/null +++ b/source/designs/detail/139/139499.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d86f014c4e952dc3ae3e810f26426a883f044709b3cdae06a13c1b7d0176fb07 +size 1290 diff --git a/source/designs/detail/139/139500.json b/source/designs/detail/139/139500.json new file mode 100644 index 0000000000000000000000000000000000000000..604c50d4cab5a50b5abf9f1a8904406ca5b6d128 --- /dev/null +++ b/source/designs/detail/139/139500.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca23314d520078126b4cf928088b6a33c777dca97be4b247ad0b0966bf52cf5 +size 1056 diff --git a/source/designs/detail/139/139501.json b/source/designs/detail/139/139501.json new file mode 100644 index 0000000000000000000000000000000000000000..5c111567508514e0e84c9e8460bc149bdac72867 --- /dev/null +++ b/source/designs/detail/139/139501.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1b2153d64613a4d78e2ed36c5a57303c4a8a7cb03db821bf8db0294dc8cfc0 +size 1607 diff --git a/source/designs/detail/139/139502.json b/source/designs/detail/139/139502.json new file mode 100644 index 0000000000000000000000000000000000000000..b9bee943e64ab449f533a7107279d389cae5a0c2 --- /dev/null +++ b/source/designs/detail/139/139502.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a693e842b1dace74859b9ccdc598a6c0fe545c233c5fe5f297c2f724a7a0c498 +size 1368 diff --git a/source/designs/detail/141/141109.json b/source/designs/detail/141/141109.json new file mode 100644 index 0000000000000000000000000000000000000000..84e8d3722465fcade96977a56faa9280d23f1cff --- /dev/null +++ b/source/designs/detail/141/141109.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212b12104905e17ff03fa450d772ab30d2b5336e1bef5bc0730dc712ac056772 +size 1143 diff --git a/source/designs/detail/141/141171.json b/source/designs/detail/141/141171.json new file mode 100644 index 0000000000000000000000000000000000000000..7bb413ceb202b1b669849a72129a4b9c07127f2f --- /dev/null +++ b/source/designs/detail/141/141171.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ed13150991fe787147265602b81128fd32c981f8ef0b52f3196fbd3b66167ca +size 1685 diff --git a/source/designs/detail/148/148705.json b/source/designs/detail/148/148705.json new file mode 100644 index 0000000000000000000000000000000000000000..318ff58caa20dac975dbbd960fac2858fa7a35ca --- /dev/null +++ b/source/designs/detail/148/148705.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd9229665891fbbb42198b28be01c98410c433ca1f8bc6204f52c4118dc17a9 +size 1077 diff --git a/source/designs/detail/152/152168.json b/source/designs/detail/152/152168.json new file mode 100644 index 0000000000000000000000000000000000000000..db98562aa3a381d4ca0278084f03b4b16eb1003c --- /dev/null +++ b/source/designs/detail/152/152168.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35c234380daf31f6cbdd3b6a79be70a098eee50f278f9a8f3830293335c1d35 +size 1513 diff --git a/source/designs/detail/155/155128.json b/source/designs/detail/155/155128.json new file mode 100644 index 0000000000000000000000000000000000000000..cdb4db429fd5a0fbdb88303c86547844e1a37bdd --- /dev/null +++ b/source/designs/detail/155/155128.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeca24eb6a9d391a0ec491fbfa40b241e41628e6140ee61b4c8f0587cc234f2d +size 1834 diff --git a/source/designs/detail/161/161423.json b/source/designs/detail/161/161423.json new file mode 100644 index 0000000000000000000000000000000000000000..b575ca4533fa00feee8c611c2a0ac60f3fdc3a5c --- /dev/null +++ b/source/designs/detail/161/161423.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a2059288767d9dccedfdcdcf60ac9378904f0ba830d7aafe6324e9b3c782976 +size 1468 diff --git a/source/designs/detail/164/164401.json b/source/designs/detail/164/164401.json new file mode 100644 index 0000000000000000000000000000000000000000..ccf781ba3d57f630722e0142c1286fc3d2c825a6 --- /dev/null +++ b/source/designs/detail/164/164401.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c869f587e8c086266f7ae47d2fc9d6a645e848bb7ce61fd735c1853b50b34a0 +size 1019 diff --git a/source/designs/detail/167/167073.json b/source/designs/detail/167/167073.json new file mode 100644 index 0000000000000000000000000000000000000000..32f220d0d3cde4a5ee34513398373016183e47aa --- /dev/null +++ b/source/designs/detail/167/167073.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc1493a3e821021ebd61d6fcb856c6ecf17497d72ceaec98c12a5df1c94136b +size 1427 diff --git a/source/designs/detail/172/172285.json b/source/designs/detail/172/172285.json new file mode 100644 index 0000000000000000000000000000000000000000..83504f0aa779070ee2232925e80d40bb659cb38d --- /dev/null +++ b/source/designs/detail/172/172285.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60790813f77eeb141e1f50d7b4ab890c84716b7774988b77ba491bb5ab283e4e +size 1784 diff --git a/source/designs/detail/173/173945.json b/source/designs/detail/173/173945.json new file mode 100644 index 0000000000000000000000000000000000000000..53584ec9f0ffae9bdc62dfe3e41da48d146ad7ce --- /dev/null +++ b/source/designs/detail/173/173945.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcb60af3d03bd2fe92a46400a52cadcc97b4519610f857394302e8a454b1f78 +size 2429 diff --git a/source/designs/detail/179572.json b/source/designs/detail/179/179572.json similarity index 100% rename from source/designs/detail/179572.json rename to source/designs/detail/179/179572.json diff --git a/source/designs/detail/179/179573.json b/source/designs/detail/179/179573.json new file mode 100644 index 0000000000000000000000000000000000000000..d8a53a85b0ec3850ff4ecaa9689ec3fb327341ee --- /dev/null +++ b/source/designs/detail/179/179573.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cccba21668c3ac02cfb53ae364e8e9e036b5f025087792f51ea1d2d2b34a52f0 +size 1582 diff --git a/source/designs/detail/186/186284.json b/source/designs/detail/186/186284.json new file mode 100644 index 0000000000000000000000000000000000000000..09262046b690d86fd9160b4702c733a304c39a0e --- /dev/null +++ b/source/designs/detail/186/186284.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed2aba05294208b7854fa061cb6be2ae09117ecf13a1aafbdeb7ccdaecefbfc +size 1166 diff --git a/source/designs/detail/189/189119.json b/source/designs/detail/189/189119.json new file mode 100644 index 0000000000000000000000000000000000000000..27a651e3cf8bf59befe0ed0820a6b238cc16bf9d --- /dev/null +++ b/source/designs/detail/189/189119.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8283f065372d8d6e3d88cec5fa3b4523fe6ba7a1a2c388e78f1bc04e72e1c3 +size 1097 diff --git a/source/designs/detail/190/190282.json b/source/designs/detail/190/190282.json new file mode 100644 index 0000000000000000000000000000000000000000..ca044f700b1d81a746eac698f82aa8318bb7e615 --- /dev/null +++ b/source/designs/detail/190/190282.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10509917d5f20baa4cdd8a7cb913928751607db8c80abc07b8878e70b8532896 +size 1281 diff --git a/source/designs/detail/190/190308.json b/source/designs/detail/190/190308.json new file mode 100644 index 0000000000000000000000000000000000000000..c477ba64d587c4f5ab569739ad1288b7c5c72fbc --- /dev/null +++ b/source/designs/detail/190/190308.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69c9496cd1ca032462dcedf99292d8f01e15bf9dd64b90c6821821d853e41f93 +size 1120 diff --git a/source/designs/detail/191/191047.json b/source/designs/detail/191/191047.json new file mode 100644 index 0000000000000000000000000000000000000000..4193ae81d9ac692e8afaf9af5b2665691542b1c9 --- /dev/null +++ b/source/designs/detail/191/191047.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5affd1fd8841f3025ba9d8a2bd926c6c7e292401c92a2817137e30f48f57a0f +size 1588 diff --git a/source/designs/detail/191/191048.json b/source/designs/detail/191/191048.json new file mode 100644 index 0000000000000000000000000000000000000000..22505f673dad7d0a92ec9516a12472f10c02ebd0 --- /dev/null +++ b/source/designs/detail/191/191048.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a1afb96373d8f2bfe503bb95962bee8d7b2a59a75eb379f763f951cce56545c +size 1559 diff --git a/source/designs/detail/196/196638.json b/source/designs/detail/196/196638.json new file mode 100644 index 0000000000000000000000000000000000000000..1f9a53d3a6000a01ecce891f7d406d5d60c57250 --- /dev/null +++ b/source/designs/detail/196/196638.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09af07e5f5bf840c187e89ae5f569b59cee75ca4c8a6796170a0352f686f296 +size 1518 diff --git a/source/designs/detail/197/197092.json b/source/designs/detail/197/197092.json new file mode 100644 index 0000000000000000000000000000000000000000..dbd45f9e3cb9e74c44727bffd4ae58b3e95ac12e --- /dev/null +++ b/source/designs/detail/197/197092.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf58751d36a08729a9766375d83678eb8f5c3997926b0780b9f297c781a50f08 +size 1478 diff --git a/source/designs/detail/203/203607.json b/source/designs/detail/203/203607.json new file mode 100644 index 0000000000000000000000000000000000000000..a5f323fd06d9edd6dc7aeb62f8f009101ce6a9be --- /dev/null +++ b/source/designs/detail/203/203607.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d2a81e788ebe21286cb43e4e7eb49b67949dd2a832e9a7d28f3935a6ad0507 +size 1418 diff --git a/source/designs/detail/206/206474.json b/source/designs/detail/206/206474.json new file mode 100644 index 0000000000000000000000000000000000000000..fc16c98ad6ea67d9fa84d7a05935a503a01924e6 --- /dev/null +++ b/source/designs/detail/206/206474.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a27e8acb2f2d7cfdb973528034b62305748bfc5aedc1dec04565eca5712897 +size 1290 diff --git a/source/designs/detail/206/206477.json b/source/designs/detail/206/206477.json new file mode 100644 index 0000000000000000000000000000000000000000..24283fa79e0a4a4a970ea569022c0b73cb0e645d --- /dev/null +++ b/source/designs/detail/206/206477.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7bf2593a898aa7e0322aa47ccd55823160347c47c8f4040d528d634c350123 +size 1211 diff --git a/source/designs/detail/207/207016.json b/source/designs/detail/207/207016.json new file mode 100644 index 0000000000000000000000000000000000000000..04b6e65da7c079e430e1629e74c06abc11e529a1 --- /dev/null +++ b/source/designs/detail/207/207016.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75037441aa74540556a64e4dd01c25c087b6973f15fbdfc8c4a9452e155b2987 +size 2236 diff --git a/source/designs/detail/207/207017.json b/source/designs/detail/207/207017.json new file mode 100644 index 0000000000000000000000000000000000000000..b2265045f043b6991fa70640eb1c19d597b59773 --- /dev/null +++ b/source/designs/detail/207/207017.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80a6950c691d9bda4ed0e7436613123c4c9eacfcc2d8c60daf1a09a073b4e4f5 +size 2104 diff --git a/source/designs/detail/207/207020.json b/source/designs/detail/207/207020.json new file mode 100644 index 0000000000000000000000000000000000000000..b121824bb63a5f29a706a80528ad96d57a9d0064 --- /dev/null +++ b/source/designs/detail/207/207020.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ced4a8d14b656d93757dc37618accad49361eafb3a380d26dd29920d125651f +size 2268 diff --git a/source/designs/detail/207/207021.json b/source/designs/detail/207/207021.json new file mode 100644 index 0000000000000000000000000000000000000000..9443662aa407196c6d96217e3eec7e1ebeebc569 --- /dev/null +++ b/source/designs/detail/207/207021.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e9fc24701e0d4350e31ef76f7800f2599cfca5574048d36e598d584b759e00 +size 1389 diff --git a/source/designs/detail/207/207022.json b/source/designs/detail/207/207022.json new file mode 100644 index 0000000000000000000000000000000000000000..94a7100601e076169bc7bdd40ad2d2c3fc7e51d2 --- /dev/null +++ b/source/designs/detail/207/207022.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98c0a244c57cff337f6119068b523c4ce91035c3d84130ca9c9488bf656e6dc9 +size 1707 diff --git a/source/designs/detail/208/208424.json b/source/designs/detail/208/208424.json new file mode 100644 index 0000000000000000000000000000000000000000..b166db57bf3f60ad5b42f6b5c3ac537ba4276494 --- /dev/null +++ b/source/designs/detail/208/208424.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2291a01b9a3149188badd6e4712009b5baa4fbb2d920bc70d096969717299022 +size 1470 diff --git a/source/designs/detail/210/210137.json b/source/designs/detail/210/210137.json new file mode 100644 index 0000000000000000000000000000000000000000..fbeee109133a4ec2ce2e296972dedbbbfd2c82dd --- /dev/null +++ b/source/designs/detail/210/210137.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd089c0b8a282225af75a466bccb791dbc6bc4fc96d00d6e9935e7007c314e9 +size 1417 diff --git a/source/designs/detail/211/211037.json b/source/designs/detail/211/211037.json new file mode 100644 index 0000000000000000000000000000000000000000..532047adead238b12f8d6c6bf60c6f5cbfe9580b --- /dev/null +++ b/source/designs/detail/211/211037.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ad18af9f811e10b1e54b75c10232519e59b01b0f251747b6f6a179b55e4674 +size 1551 diff --git a/source/designs/detail/220/220509.json b/source/designs/detail/220/220509.json new file mode 100644 index 0000000000000000000000000000000000000000..83af4b4059457e3fc5b9a35cc03b3f0e838c9b07 --- /dev/null +++ b/source/designs/detail/220/220509.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be9b494ab843589c733e4fda8203b387f7206d082641a16bb6b2e1f961313e3 +size 1590 diff --git a/source/designs/detail/711/711922.json b/source/designs/detail/711/711922.json new file mode 100644 index 0000000000000000000000000000000000000000..3c7b5fec9a423cde6ce8a3d8d4127f901365379d --- /dev/null +++ b/source/designs/detail/711/711922.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d039ead41c5ea062bfc5d390665b822512513206862af3bb48fd4f83cab31b2 +size 1674 diff --git a/source/designs/detail/844/844396.json b/source/designs/detail/844/844396.json new file mode 100644 index 0000000000000000000000000000000000000000..f97335d0ee0b86d6be69e4be9ba08885ddc60260 --- /dev/null +++ b/source/designs/detail/844/844396.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b40243413a3d507b40587b081a58c4ad2fba7d9820f0c6c3a38b3a641016f1 +size 1831 diff --git a/source/designs/detail/844/844420.json b/source/designs/detail/844/844420.json new file mode 100644 index 0000000000000000000000000000000000000000..d8cd33e24e6bde13760e4964bedd0da0154b80d8 --- /dev/null +++ b/source/designs/detail/844/844420.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8c69525ae5378285e824282586172df297cd58a89894eacbf888d8f77cb7d4 +size 1350 diff --git a/source/designs/detail/852/852999.json b/source/designs/detail/852/852999.json new file mode 100644 index 0000000000000000000000000000000000000000..eab9780a99445c179d93859148e8983d652064f6 --- /dev/null +++ b/source/designs/detail/852/852999.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b5aa4e9bcb455a2a6dba7d87b4ac2fa34571ef3753eae15ce216085888ce2e +size 1417 diff --git a/source/designs/detail/896/896368.json b/source/designs/detail/896/896368.json new file mode 100644 index 0000000000000000000000000000000000000000..a22a6e7a0fa9fa2d91ee1bddb1f4b57fb8720551 --- /dev/null +++ b/source/designs/detail/896/896368.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dcbccaade342367a84b538f78ce533f613e3d85775db64ab795a0f6943b2e1c +size 2178 diff --git a/source/designs/detail/909/909162.json b/source/designs/detail/909/909162.json new file mode 100644 index 0000000000000000000000000000000000000000..4505fbdd33f947043259fdbc3b4fdbd809841e30 --- /dev/null +++ b/source/designs/detail/909/909162.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e6d4eea27a7a850c1f1870428f101af2ca19cb13dd6f821c1d0b022ac643a3 +size 1037 diff --git a/source/designs/detail/910/910865.json b/source/designs/detail/910/910865.json new file mode 100644 index 0000000000000000000000000000000000000000..27259a9c88f25b731001cfbfaac49ab076b1001a --- /dev/null +++ b/source/designs/detail/910/910865.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ccacad0017178700ea765df385f6b7afe813455ef8bdbb0f6e823336e7cfe5 +size 1471 diff --git a/source/designs/detail/930/930580.json b/source/designs/detail/930/930580.json new file mode 100644 index 0000000000000000000000000000000000000000..705760e057ba4d4fe8700f48942ca83a72d48db1 --- /dev/null +++ b/source/designs/detail/930/930580.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab053b6ef82b37e2af196e9a56bda39ea881df2cf3203518d0f4915d4fcf123 +size 1619 diff --git a/source/designs/detail/935/935389.json b/source/designs/detail/935/935389.json new file mode 100644 index 0000000000000000000000000000000000000000..cda45e16ef8abe40892583206538c94fcbbb9406 --- /dev/null +++ b/source/designs/detail/935/935389.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970f25d31cff5b6f5afef604e50298c73946198d37c0750897586493ea78b915 +size 1318 diff --git a/source/designs/detail/935/935392.json b/source/designs/detail/935/935392.json new file mode 100644 index 0000000000000000000000000000000000000000..440493c1e0f0950903bb6827837708c972243c94 --- /dev/null +++ b/source/designs/detail/935/935392.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb7c5f6a0e17314973d56abb013d9223d7be52bd24f8e60988838d4093c410f8 +size 1386 diff --git a/source/designs/detail/935/935395.json b/source/designs/detail/935/935395.json new file mode 100644 index 0000000000000000000000000000000000000000..f706a658ff0fe88686005f51b30bf4f9885ac6cb --- /dev/null +++ b/source/designs/detail/935/935395.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cb863b494624cc99c83bbb343aa0e2af9a316fed5776652b1ef124d67c0a91 +size 1311 diff --git a/source/designs/detail/935/935399.json b/source/designs/detail/935/935399.json new file mode 100644 index 0000000000000000000000000000000000000000..79a3ed87e51d7675d8ec11e03dc4c1fef026a196 --- /dev/null +++ b/source/designs/detail/935/935399.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a305ab0d3be1a9b21e30b98a08fa1c345b0d7cd82843a81d69cde627f801a841 +size 1324 diff --git a/source/designs/detail/938081.json b/source/designs/detail/938/938081.json similarity index 100% rename from source/designs/detail/938081.json rename to source/designs/detail/938/938081.json diff --git a/source/designs/detail/940/940761.json b/source/designs/detail/940/940761.json new file mode 100644 index 0000000000000000000000000000000000000000..3bbc7a0792a9c511de9d5cd4081e531c93e2ab1f --- /dev/null +++ b/source/designs/detail/940/940761.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a9aa9a60713724f6da0835d237fcc47f2fc0e309887d463945ec83aa9afc6c8 +size 1666 diff --git a/source/designs/detail/955/955792.json b/source/designs/detail/955/955792.json new file mode 100644 index 0000000000000000000000000000000000000000..4940a4b0c71afd49c01c2e5e2483d74eac4ed473 --- /dev/null +++ b/source/designs/detail/955/955792.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a02e346b52a8c9090bf80a14483c2293a03ac95c1ce04f0699918c73b9b0697 +size 1966 diff --git a/source/designs/files/rkt/004749.rkt b/source/designs/files/rkt/004749.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f6d58e4d1fa4178864aadadc968ae8c94ad5ed9f --- /dev/null +++ b/source/designs/files/rkt/004749.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da61a07c952c92734f1c69c9857b0246b9f07daabf8d62f882f90ea253ca0523 +size 100874 diff --git a/source/designs/files/rkt/004750.rkt b/source/designs/files/rkt/004750.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ae70d24e04f3bebaa662c5ba3985457c689d6e27 --- /dev/null +++ b/source/designs/files/rkt/004750.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cd3ee0e25576f09a46cc147e5fcd4be28fa53b32a85caf3387b7dff6bfc16f +size 106526 diff --git a/source/designs/files/rkt/004751.rkt b/source/designs/files/rkt/004751.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c2699801e3ed34f7f1fc09e06f76b0adf6fdffaf --- /dev/null +++ b/source/designs/files/rkt/004751.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baa77393aae8055fe6e5b1ec430cbad3dbd895a683f7f4808d1145b830137d8 +size 62786 diff --git a/source/designs/files/rkt/004752.rkt b/source/designs/files/rkt/004752.rkt new file mode 100644 index 0000000000000000000000000000000000000000..51b7a0b51c59fa7d24271854d011760120a62220 --- /dev/null +++ b/source/designs/files/rkt/004752.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72241679b0e088accaa5c80c5b7f71eb23243aecd9a0d04b9899c80ebde84069 +size 26881 diff --git a/source/designs/files/rkt/004753.rkt b/source/designs/files/rkt/004753.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fef9dff2f9ea61363d483bb10d8bef61d8ff9254 --- /dev/null +++ b/source/designs/files/rkt/004753.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e4eb8c22dfd4e45d0dfc25b937f6434a07a5995ba83a238107da814c44321b +size 44663 diff --git a/source/designs/files/rkt/004754.rkt b/source/designs/files/rkt/004754.rkt new file mode 100644 index 0000000000000000000000000000000000000000..913434ec511e0cca207fdb04906b0b80b8d5430e --- /dev/null +++ b/source/designs/files/rkt/004754.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7603f777603ac57d86531e006ef3cb9fbdc66201b3e3c89006df074e18461e4 +size 23368 diff --git a/source/designs/files/rkt/004755.rkt b/source/designs/files/rkt/004755.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c61e0f975916bb6d494b402a58fd6bd1dd68da22 --- /dev/null +++ b/source/designs/files/rkt/004755.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe1bddb3f680ddde32f223603d0263e5c5e039fc5612531e86bcbf3d26d1f8f +size 62346 diff --git a/source/designs/files/rkt/004756.rkt b/source/designs/files/rkt/004756.rkt new file mode 100644 index 0000000000000000000000000000000000000000..48315e2d2d75903c8a38907dd1c803a1fcb85c22 --- /dev/null +++ b/source/designs/files/rkt/004756.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29d12700b94ca32138a938a7bdc5e5960a55a4554a985a2f54eb106da810660 +size 39589 diff --git a/source/designs/files/rkt/004757.rkt b/source/designs/files/rkt/004757.rkt new file mode 100644 index 0000000000000000000000000000000000000000..084599c83ba4c69bf11bf9fd0721dda8b8aaf11d --- /dev/null +++ b/source/designs/files/rkt/004757.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2483ee22a7e28732fa9fdc000b31ae769306b0ce55d4ca8e2fec0f60f7af3e2b +size 48850 diff --git a/source/designs/files/rkt/004758.rkt b/source/designs/files/rkt/004758.rkt new file mode 100644 index 0000000000000000000000000000000000000000..98c4e23516fd31f50139a148d20f49613b9ff59c --- /dev/null +++ b/source/designs/files/rkt/004758.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d58832da0ea09d88e72d5b2dd30aecf4cf105fd5cc51939041bdcd44adfb679 +size 58615 diff --git a/source/designs/files/rkt/004759.rkt b/source/designs/files/rkt/004759.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e054fd65b15aee4d6ceee174ccb8b852d2b9f126 --- /dev/null +++ b/source/designs/files/rkt/004759.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ec610bc28af42ce81e847337a16adb9578cf470bd074d597290a3abe9ef10ea +size 123389 diff --git a/source/designs/files/rkt/004760.rkt b/source/designs/files/rkt/004760.rkt new file mode 100644 index 0000000000000000000000000000000000000000..73da3b23d82dc31cff22146800e5e233b9624c4f --- /dev/null +++ b/source/designs/files/rkt/004760.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ddd47357546251ce098c11a2435d87e51702858ca56e78dc52a6fcb6085979 +size 41792 diff --git a/source/designs/files/rkt/004761.rkt b/source/designs/files/rkt/004761.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6839b26b9bd020432d73b4a9d0e14599a2a1c466 --- /dev/null +++ b/source/designs/files/rkt/004761.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22acbe66693e081739e8ef2c85aa41a3a8bf165de02d2b14013725934ea7d2bd +size 53765 diff --git a/source/designs/files/rkt/004762.rkt b/source/designs/files/rkt/004762.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4194088bfb3b6f9d4a147d923051572a416bd002 --- /dev/null +++ b/source/designs/files/rkt/004762.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b00761fde86c93cbfa6e0849ba6e89b8e7a126dc16f797bb2b0e2be57472a4f +size 24496 diff --git a/source/designs/files/rkt/004763.rkt b/source/designs/files/rkt/004763.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e762d152effae01bf6d517a27cd912c9e44359b5 --- /dev/null +++ b/source/designs/files/rkt/004763.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de507969c6737e3b515fc827351a37063c5270985c2a67c81e076c98c66de3d1 +size 37839 diff --git a/source/designs/files/rkt/004764.rkt b/source/designs/files/rkt/004764.rkt new file mode 100644 index 0000000000000000000000000000000000000000..09601b486d512f2a4800f8aab9b8cdc23318bcf9 --- /dev/null +++ b/source/designs/files/rkt/004764.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7093d996bfa2ca360d40f11c0290b2783ecebfb1f7c926e2341c15b353f2d470 +size 48396 diff --git a/source/designs/files/rkt/004765.rkt b/source/designs/files/rkt/004765.rkt new file mode 100644 index 0000000000000000000000000000000000000000..23f554e0bff5a2cac5cec4903c6c67ec0d6053d5 --- /dev/null +++ b/source/designs/files/rkt/004765.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336b7126e7621cd6dc3cae70df3c414fcf495aa71d9476a6d0d456923daf9139 +size 137123 diff --git a/source/designs/files/rkt/004766.rkt b/source/designs/files/rkt/004766.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9f6e88e64347c2e57636b3c128bbb9a7d1b3dbce --- /dev/null +++ b/source/designs/files/rkt/004766.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75414d00b44b459c53ff202f213004ce0cddb91ada88dbe100f57dde7af0f68b +size 105403 diff --git a/source/designs/files/rkt/004767.rkt b/source/designs/files/rkt/004767.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8b1ef58625980d6db3d661105e580f29edd2ce8d --- /dev/null +++ b/source/designs/files/rkt/004767.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2ce3f7b44f367fca3c5a7461475b423fb8edb2c57ce1c76b201c00031ffbcb +size 83133 diff --git a/source/designs/files/rkt/004768.rkt b/source/designs/files/rkt/004768.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d4eaacf3aea9546e5734b7326997b41dc2be9d24 --- /dev/null +++ b/source/designs/files/rkt/004768.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dbee547fd79aac5fab5c39aa4f99cf91e51f78a687fb87eef55d65bc86bd8b4 +size 187923 diff --git a/source/designs/files/rkt/004769.rkt b/source/designs/files/rkt/004769.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c93a5499aafe3469af762ae6c6b28d716e94109e --- /dev/null +++ b/source/designs/files/rkt/004769.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85fee0e081518a89b40b354b552e6db8681f3d239c9da609cff8e61e024f8c20 +size 21554 diff --git a/source/designs/files/rkt/004770.rkt b/source/designs/files/rkt/004770.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea4eba8c159772be74d7e6f2825d78f479040295 --- /dev/null +++ b/source/designs/files/rkt/004770.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff156695c130d6c9548127eb1f763bb89a73d9c8a6faf3bea5940d2e85316ec8 +size 47627 diff --git a/source/designs/files/rkt/004771.rkt b/source/designs/files/rkt/004771.rkt new file mode 100644 index 0000000000000000000000000000000000000000..78dea49fff8d1f35a61d300102d38417d48e3573 --- /dev/null +++ b/source/designs/files/rkt/004771.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0642b4159d205955145d1c8b86001e3392a36179b7dd533d55c710ee0ddfba5a +size 39134 diff --git a/source/designs/files/rkt/004772.rkt b/source/designs/files/rkt/004772.rkt new file mode 100644 index 0000000000000000000000000000000000000000..75a53935c35bccdebb7d9e8410459e2dd2547e44 --- /dev/null +++ b/source/designs/files/rkt/004772.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c6b2029d434234998dc73e0b4661963ee14ae5d4eb3480594e62095d07b42f +size 53945 diff --git a/source/designs/files/rkt/004773.rkt b/source/designs/files/rkt/004773.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8948526f4f823b3fdcacf0cd545c55a2b9a16a95 --- /dev/null +++ b/source/designs/files/rkt/004773.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04cf038c694c2e79b6b13fcecfba865570d28a71401a6ecd34f36cd21f7ba7bb +size 38016 diff --git a/source/designs/files/rkt/004774.rkt b/source/designs/files/rkt/004774.rkt new file mode 100644 index 0000000000000000000000000000000000000000..843f0a3dedc3aaea37d0de00ab7d82addf971d2c --- /dev/null +++ b/source/designs/files/rkt/004774.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b34eb49602ecf61933180bc20183cab236e8f4b6e298263d1099b97a8f3cc39 +size 59082 diff --git a/source/designs/files/rkt/004775.rkt b/source/designs/files/rkt/004775.rkt new file mode 100644 index 0000000000000000000000000000000000000000..354831043cda5096e4d5081bcbca5650aa7ac585 --- /dev/null +++ b/source/designs/files/rkt/004775.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738b9fba2583192c3493593717b00c46b35385d863f6a5d2cc898ea994d746f6 +size 46171 diff --git a/source/designs/files/rkt/004776.rkt b/source/designs/files/rkt/004776.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7a3ee78ca884a53ef55563bc280b7106a173c7cd --- /dev/null +++ b/source/designs/files/rkt/004776.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a424b92439a827e0f8de89c47db4ee5cc21da089eb2a41888735b818373d9a70 +size 63139 diff --git a/source/designs/files/rkt/004777.rkt b/source/designs/files/rkt/004777.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5069a58a63ed7e6a9cef072a70df931b04791cf2 --- /dev/null +++ b/source/designs/files/rkt/004777.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2ba73ee8bea8cad88f8db38f69ad45c97a6cfe6308aa4d412d9ba59ac723e8 +size 65021 diff --git a/source/designs/files/rkt/004778.rkt b/source/designs/files/rkt/004778.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b20bc35ba7adf5689b7b9eed9d451ba895bc7590 --- /dev/null +++ b/source/designs/files/rkt/004778.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:505052e025ff977ca9808a7c4a13e56f08b6f6fd3879b5afa2d2b7d66a98c97a +size 46092 diff --git a/source/designs/files/rkt/004779.rkt b/source/designs/files/rkt/004779.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7ac872e8c771673bd7f1ed41313071320823eb06 --- /dev/null +++ b/source/designs/files/rkt/004779.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c59aae0f4dd2c81d7f26ce5da74204a3751d9693616e6c5d479c812abdf6065 +size 72260 diff --git a/source/designs/files/rkt/004780.rkt b/source/designs/files/rkt/004780.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a6202a0591d7c28d457a9b2cb2074fc05067c676 --- /dev/null +++ b/source/designs/files/rkt/004780.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29591d98f40b48b57c7f5ca34b7222aa16a38fe3ee06a76427126a82c821dcbd +size 70690 diff --git a/source/designs/files/rkt/004795.rkt b/source/designs/files/rkt/004795.rkt new file mode 100644 index 0000000000000000000000000000000000000000..177734cc62d64411ce93d58420d4c066399b71f2 --- /dev/null +++ b/source/designs/files/rkt/004795.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b7c40f4f5cea0d3de3e7eb969d5c340cfbb7e3d2e42011d59aaa8291c44751 +size 76557 diff --git a/source/designs/files/rkt/004821.rkt b/source/designs/files/rkt/004821.rkt new file mode 100644 index 0000000000000000000000000000000000000000..21a1ca089954fd93e08df50e9f487e69cba3eb39 --- /dev/null +++ b/source/designs/files/rkt/004821.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16203f7403051a9d03a4c76e279eb1ba09352bec97071e991f9a48ae04cd4d3a +size 121631 diff --git a/source/designs/files/rkt/004822.rkt b/source/designs/files/rkt/004822.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3c0b3a93bbd2f9df57fba1c7e2fb4e2176cb1d23 --- /dev/null +++ b/source/designs/files/rkt/004822.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c6bcf93d31022327fca34b06893f15df2ea194459b02a8bb9cf4db4b7dc42d +size 87839 diff --git a/source/designs/files/rkt/004823.rkt b/source/designs/files/rkt/004823.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e803fcca0830304dfb632690078c5395bf2b8649 --- /dev/null +++ b/source/designs/files/rkt/004823.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed3d8dacffd81919356461717b8e1b525fd97df7c407a65954781b81f3abb13 +size 70673 diff --git a/source/designs/files/rkt/004824.rkt b/source/designs/files/rkt/004824.rkt new file mode 100644 index 0000000000000000000000000000000000000000..929092bca900625565f64f5f2843af0a08de9577 --- /dev/null +++ b/source/designs/files/rkt/004824.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb94aad4b4bf5e0fc64e63cde606dd9a259085a88bec573ab405740e6c700fe9 +size 65028 diff --git a/source/designs/files/rkt/004825.rkt b/source/designs/files/rkt/004825.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1a926577d9ef9949caab0c2e52265a4a7344034d --- /dev/null +++ b/source/designs/files/rkt/004825.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e35e65ef2f420911e1d7f54e110fb4ffc5a82071ae00b2b87343203f1fc6b7bb +size 126613 diff --git a/source/designs/files/rkt/004826.rkt b/source/designs/files/rkt/004826.rkt new file mode 100644 index 0000000000000000000000000000000000000000..297d36c02a8e2731daf0f734470128f21130adba --- /dev/null +++ b/source/designs/files/rkt/004826.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f4c55c4e1ad7b8148b6bba00bbbf9911f959e11d47d1eb1a20df3427d77d48 +size 68954 diff --git a/source/designs/files/rkt/004827.rkt b/source/designs/files/rkt/004827.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ad752c38eccc0edfbe26c80edc161da9f9ab21a5 --- /dev/null +++ b/source/designs/files/rkt/004827.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:979a0b8e544e561de8855247ece56002e79e4acfe0657743347c1e5ed0ae5293 +size 58569 diff --git a/source/designs/files/rkt/004828.rkt b/source/designs/files/rkt/004828.rkt new file mode 100644 index 0000000000000000000000000000000000000000..30682658e5672b9b5366e11e815bf4f8ae706e67 --- /dev/null +++ b/source/designs/files/rkt/004828.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f796ebec843dfa0ea152d607d58681550fc2af62f3381ddf8963de22ec05d28 +size 25303 diff --git a/source/designs/files/rkt/004829.rkt b/source/designs/files/rkt/004829.rkt new file mode 100644 index 0000000000000000000000000000000000000000..df4b700de198a6766e5428ee213456d2b8c42d58 --- /dev/null +++ b/source/designs/files/rkt/004829.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b27f0b93fe336c17a94cc3c5094fe5a3278eabbd00ee007ff81dcf2c21b02d5f +size 40865 diff --git a/source/designs/files/rkt/004830.rkt b/source/designs/files/rkt/004830.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fe60c66c8fd0ce53f35addf2767baa6acef78be9 --- /dev/null +++ b/source/designs/files/rkt/004830.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2d2c9f2e7270559ed0f12a6bb3b7da8c9bbbeedc58cb7832d33f07ddd126d9b +size 42125 diff --git a/source/designs/files/rkt/004831.rkt b/source/designs/files/rkt/004831.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8664be4c0106649e036c1ec2c73e4852a4afff4c --- /dev/null +++ b/source/designs/files/rkt/004831.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b0a359beba1fef66161503029e3db013fc21e05bcc6ef33842ab404c2da995a +size 77905 diff --git a/source/designs/files/rkt/004832.rkt b/source/designs/files/rkt/004832.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ee98747eca3676535e63bfb13677e717279dab30 --- /dev/null +++ b/source/designs/files/rkt/004832.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a555b310e446ec769d84330b7c5388f2a1b2d6b660be352fb41dfc89654d746 +size 63659 diff --git a/source/designs/files/rkt/004833.rkt b/source/designs/files/rkt/004833.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e3989dcd5214b648ea7be4e15abfb1dbf5f313c8 --- /dev/null +++ b/source/designs/files/rkt/004833.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a64921c0e49d9991ee74f09af36e68871e4c945bf303f10e6544ac2f39df3b2 +size 68060 diff --git a/source/designs/files/rkt/004834.rkt b/source/designs/files/rkt/004834.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3fb90083781f42e58da9eaf391dfe055781fd352 --- /dev/null +++ b/source/designs/files/rkt/004834.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13ab8414e07db045243fdce0c099807f4f1ae2e3e15f08c0295cb434fd68bc5 +size 24117 diff --git a/source/designs/files/rkt/004835.rkt b/source/designs/files/rkt/004835.rkt new file mode 100644 index 0000000000000000000000000000000000000000..37978ff83b403f75bed07c7c2e0aa1c0f75a2f27 --- /dev/null +++ b/source/designs/files/rkt/004835.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc23a03b1102cb79621ae26441b56ce5f0faa27afde51611e27b63539bdabb0 +size 46506 diff --git a/source/designs/files/rkt/004836.rkt b/source/designs/files/rkt/004836.rkt new file mode 100644 index 0000000000000000000000000000000000000000..91f4dd39fc0224382c01e694c4f921970ec2f2a1 --- /dev/null +++ b/source/designs/files/rkt/004836.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f9bdd8ca5a47120543a36f48398b56c9883c3e25452880abd570c9e7d3859f +size 32471 diff --git a/source/designs/files/rkt/004837.rkt b/source/designs/files/rkt/004837.rkt new file mode 100644 index 0000000000000000000000000000000000000000..23efcc98469cc2da056def71b12204120991cb9a --- /dev/null +++ b/source/designs/files/rkt/004837.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a62ca10b498744483fd34da8955e79aef7f2a4e0bd485366dac0b502e74203 +size 27242 diff --git a/source/designs/files/rkt/004838.rkt b/source/designs/files/rkt/004838.rkt new file mode 100644 index 0000000000000000000000000000000000000000..86a5006e0b0db6c5802e5b3fbbc80ecc76015308 --- /dev/null +++ b/source/designs/files/rkt/004838.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b935d60ef52f14b79a207deef27ca04ca26cf91b138d1be9f6bf4c221311134 +size 103348 diff --git a/source/designs/files/rkt/004839.rkt b/source/designs/files/rkt/004839.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d8b9639cb64adc069ac041e53a73b7901342f775 --- /dev/null +++ b/source/designs/files/rkt/004839.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a17d1ab514b1947163757b9a6a5daaff9859f0f98fa369a2a3142dc980915397 +size 70289 diff --git a/source/designs/files/rkt/004840.rkt b/source/designs/files/rkt/004840.rkt new file mode 100644 index 0000000000000000000000000000000000000000..522883de5645eafd0234cf1515faac69155ffec1 --- /dev/null +++ b/source/designs/files/rkt/004840.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd28d16be9ff7b39bb6f7d2523572af93ade97aaeb9f4757bf564828a6f16f87 +size 109572 diff --git a/source/designs/files/rkt/004841.rkt b/source/designs/files/rkt/004841.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7fcbd6a9136be71a7e373f6cf1a116fa0468236a --- /dev/null +++ b/source/designs/files/rkt/004841.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12a532cab4c365ee1f04cce5b22a33def7384a4bde8b4d01cda0cdfcf61b2d0 +size 101147 diff --git a/source/designs/files/rkt/004842.rkt b/source/designs/files/rkt/004842.rkt new file mode 100644 index 0000000000000000000000000000000000000000..27ab0fd22e0c40522603fde40314a48874adc717 --- /dev/null +++ b/source/designs/files/rkt/004842.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a3c7713db0c6af0212f7725589907656dbc634ae6be8f950998c307cc9d9d1 +size 44039 diff --git a/source/designs/files/rkt/004843.rkt b/source/designs/files/rkt/004843.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9ecc892e1186b0fd9f3cc3e8441afcb1634c00db --- /dev/null +++ b/source/designs/files/rkt/004843.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d63544d2c7781087b146fe08df77ea6b551bc2c001ffbf0067a2c5093e3a06b +size 51516 diff --git a/source/designs/files/rkt/004844.rkt b/source/designs/files/rkt/004844.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e6229e4a0d13d22bc3f7549ab649c7acc16ffdfd --- /dev/null +++ b/source/designs/files/rkt/004844.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c379c11c04221ad6d4163a5cbf9301678d18002162b1a566d9c233b4cad3fbd5 +size 56117 diff --git a/source/designs/files/rkt/004845.rkt b/source/designs/files/rkt/004845.rkt new file mode 100644 index 0000000000000000000000000000000000000000..88e37df41b29ade7c5bd9c20dbc2ef46fca7bc15 --- /dev/null +++ b/source/designs/files/rkt/004845.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74baa3b29d372330e26329575adf5cd38dac86a701b44e409db72963dfb0ac71 +size 60396 diff --git a/source/designs/files/rkt/004846.rkt b/source/designs/files/rkt/004846.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7f69cbbd09146d0aa5f666844be2dc93da628f58 --- /dev/null +++ b/source/designs/files/rkt/004846.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:857d00d0ac7b831cce8664bebbe0ec72b915024e372f9596fa103e5df8f683cb +size 55850 diff --git a/source/designs/files/rkt/004847.rkt b/source/designs/files/rkt/004847.rkt new file mode 100644 index 0000000000000000000000000000000000000000..21eb4b06a1d31e5d2b0666ccc886aac162d05727 --- /dev/null +++ b/source/designs/files/rkt/004847.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fde99bafe486c05f621837d114ab1c8318c0bfec5da912a00c7b492cdb3b34c +size 139366 diff --git a/source/designs/files/rkt/004848.rkt b/source/designs/files/rkt/004848.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d6c344b6e4b30ce3fa825e520e9b3a0a0eb97d16 --- /dev/null +++ b/source/designs/files/rkt/004848.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7ebe5d785977a01d31cf0f3b1d5b908adc955d9728f0e065fc12304a79f4ec +size 84003 diff --git a/source/designs/files/rkt/004849.rkt b/source/designs/files/rkt/004849.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d993806829cdf22a42434cac94fb989f6e3611a4 --- /dev/null +++ b/source/designs/files/rkt/004849.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e0238f33af5b3012cba9d993e45206323b80c264a210356b32b4d9bef34b198 +size 108771 diff --git a/source/designs/files/rkt/004850.rkt b/source/designs/files/rkt/004850.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1cd8bfff1d7ba6a12f1a33c09ce224d0b469aae3 --- /dev/null +++ b/source/designs/files/rkt/004850.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03ef9298df5ff4c2f790beafd3e710a0138549418cf0af00a36487311d98628 +size 38437 diff --git a/source/designs/files/rkt/004851.rkt b/source/designs/files/rkt/004851.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d4e1f4f5d0654f7d6c1fb6e5ffb72d324bcbf903 --- /dev/null +++ b/source/designs/files/rkt/004851.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ddd93df1d6cb2988d664cbc2c5927b6c61792d95aa25325faf18c328d57017 +size 103937 diff --git a/source/designs/files/rkt/004852.rkt b/source/designs/files/rkt/004852.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5d524ba2a7fe639270e7870867357992deb327c0 --- /dev/null +++ b/source/designs/files/rkt/004852.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d1df88c5158487db6f928f76ae680a3d56f0e015d7ad117c36ab5789f36f0c +size 78666 diff --git a/source/designs/files/rkt/004853.rkt b/source/designs/files/rkt/004853.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b9f0e146cde0d0e31cd2f5ec6bca1f36f534d0b2 --- /dev/null +++ b/source/designs/files/rkt/004853.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516c1be4f497b3edbae31ff509a5d761e2ad6be9d2263988e4c80a0acba4ff54 +size 55762 diff --git a/source/designs/files/rkt/004854.rkt b/source/designs/files/rkt/004854.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7269eb8dd9386da8eab37e5a6779268173983ef2 --- /dev/null +++ b/source/designs/files/rkt/004854.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e44d82cf463ded34d0bcf5a323f906e47b75e124e401d2f7c1934833b8043b0 +size 36854 diff --git a/source/designs/files/rkt/004855.rkt b/source/designs/files/rkt/004855.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b44ac1f2e4784935a52b4f979e0d7f2777d84ecd --- /dev/null +++ b/source/designs/files/rkt/004855.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e1d06f7a1fd4d2ee8c0a502462c96deec38b5a54b5de42f980cf157ba6885a3 +size 47703 diff --git a/source/designs/files/rkt/004856.rkt b/source/designs/files/rkt/004856.rkt new file mode 100644 index 0000000000000000000000000000000000000000..15c157b88ce4feecea26df9d99d8d79474e9ed15 --- /dev/null +++ b/source/designs/files/rkt/004856.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06e1cc45fb6f715fa841141b07f9a1475f1d4a53a102bc8885b6529508492a7 +size 51012 diff --git a/source/designs/files/rkt/004857.rkt b/source/designs/files/rkt/004857.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5cf69b7723bd110c2d3f77610676eed6d25aac7b --- /dev/null +++ b/source/designs/files/rkt/004857.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513642a883766bd008d3e26d6d1170d95947513e17ff03e9677998737b334f93 +size 44241 diff --git a/source/designs/files/rkt/004858.rkt b/source/designs/files/rkt/004858.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e29346783ce4420d6e1af3f4275888ed03fd661a --- /dev/null +++ b/source/designs/files/rkt/004858.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817d2ef6fad79ac32732d34508119668a26e3b4e49f8ffb00ddf5097db114957 +size 58619 diff --git a/source/designs/files/rkt/004859.rkt b/source/designs/files/rkt/004859.rkt new file mode 100644 index 0000000000000000000000000000000000000000..16e8c9637bb86b4eab2482a04c8f708fc32033c7 --- /dev/null +++ b/source/designs/files/rkt/004859.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9ccfa5a5b595bffe025517ade2cc161b661ebeae28eeafd8f15bca1bbc466c +size 126484 diff --git a/source/designs/files/rkt/004860.rkt b/source/designs/files/rkt/004860.rkt new file mode 100644 index 0000000000000000000000000000000000000000..24fe64df1f3dbc3665ff28a170823901f73d8fd9 --- /dev/null +++ b/source/designs/files/rkt/004860.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52d6704660d3e129342b9b8b88d0d409eb9093df1a2a29e717b2f4ba99d7ada +size 124331 diff --git a/source/designs/files/rkt/004861.rkt b/source/designs/files/rkt/004861.rkt new file mode 100644 index 0000000000000000000000000000000000000000..232ce0340b8c73de8b322a940a066b2971168116 --- /dev/null +++ b/source/designs/files/rkt/004861.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e3877d2c2eb70986988a8c9d2722a068309bc8131787e077991658ffc0e77e +size 128871 diff --git a/source/designs/files/rkt/004862.rkt b/source/designs/files/rkt/004862.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1a9c8754fe3f5f641eb18f252c7d952d9b461905 --- /dev/null +++ b/source/designs/files/rkt/004862.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d3b39140d4e47d1f7ed8b19c27be956db23119c5300fff2741f1c6f9e538d7 +size 111003 diff --git a/source/designs/files/rkt/004863.rkt b/source/designs/files/rkt/004863.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7b8785a744b77d7d4b36fb59eda9ac6c9c78b4fc --- /dev/null +++ b/source/designs/files/rkt/004863.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158a4654cf760d790f4034f14280a8043bce20a0ef694d88b26876654c983945 +size 113001 diff --git a/source/designs/files/rkt/004864.rkt b/source/designs/files/rkt/004864.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0687ef21d0b19f0f34aebfe932dde5be3d6d333e --- /dev/null +++ b/source/designs/files/rkt/004864.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f129c42dd5f1e0dca1b1d94e7853cb470b4daaab92f38644239c5b63f0ec697 +size 113685 diff --git a/source/designs/files/rkt/004865.rkt b/source/designs/files/rkt/004865.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fd84f91eb677c3e6f223baba2ab31f73dc185f57 --- /dev/null +++ b/source/designs/files/rkt/004865.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1252ca1efa1051bca462d35566a73fbb73745c2e4d6a61bbc3de65780c2758d0 +size 93991 diff --git a/source/designs/files/rkt/004866.rkt b/source/designs/files/rkt/004866.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d67111622a8891b919e8a8e0767afbe656627100 --- /dev/null +++ b/source/designs/files/rkt/004866.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054480e05f7f90995261788e60f6f0aad667a67d7ac44723d4f4578332bf03bb +size 36258 diff --git a/source/designs/files/rkt/004867.rkt b/source/designs/files/rkt/004867.rkt new file mode 100644 index 0000000000000000000000000000000000000000..55ad872f7857996a95b2951faa8f1d9faba59384 --- /dev/null +++ b/source/designs/files/rkt/004867.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c0017b158af9ea8307f21d814ede39a18bf6797926e964053afceaa89b58b8 +size 223809 diff --git a/source/designs/files/rkt/004868.rkt b/source/designs/files/rkt/004868.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ceb73e6c8aef34a9755f95084b0f3b600b6df0fe --- /dev/null +++ b/source/designs/files/rkt/004868.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2d06329a83faf0501d5f3ac35bef819b6d27e3197543bd5a7fa09d04974be8 +size 125948 diff --git a/source/designs/files/rkt/004869.rkt b/source/designs/files/rkt/004869.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d2eb71f03e73098747f51e73cee542a9e7b63d34 --- /dev/null +++ b/source/designs/files/rkt/004869.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd9d3bcfdf5755e58ac1b6d9d11683c6bb159530b97fbdc7d4a94c58cbb597a +size 109901 diff --git a/source/designs/files/rkt/004870.rkt b/source/designs/files/rkt/004870.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a73f0891734aee5e3a398db330e23e05bde79a12 --- /dev/null +++ b/source/designs/files/rkt/004870.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d7f9b0f7118e11512f4765cdb3284c4ff36d0aac7658a51c43f5b3a960d17e1 +size 72092 diff --git a/source/designs/files/rkt/004871.rkt b/source/designs/files/rkt/004871.rkt new file mode 100644 index 0000000000000000000000000000000000000000..50dfb32708d9ead7cfe69771b0a413d75825c1eb --- /dev/null +++ b/source/designs/files/rkt/004871.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec16dd3cc3038f7be5a66f5b09697472d1494517e56a8ad111c7c71557fa2308 +size 181978 diff --git a/source/designs/files/rkt/004872.rkt b/source/designs/files/rkt/004872.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ae589371b2f606947c2582f38b2aef722e2ea54b --- /dev/null +++ b/source/designs/files/rkt/004872.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00f7ac58abb3e73d1d94787637d05603b04c19091006865c1fa9219340fcb60 +size 181098 diff --git a/source/designs/files/rkt/004873.rkt b/source/designs/files/rkt/004873.rkt new file mode 100644 index 0000000000000000000000000000000000000000..529be3f95f625a08301f23a0bcbff42ca2ad678b --- /dev/null +++ b/source/designs/files/rkt/004873.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df943a5d4849988eb289b61daf1fedc20ba16ef4ec588fbda9a96d96a16fe04 +size 99961 diff --git a/source/designs/files/rkt/004874.rkt b/source/designs/files/rkt/004874.rkt new file mode 100644 index 0000000000000000000000000000000000000000..67f02ff907e5250bc861183b8450f039382240f6 --- /dev/null +++ b/source/designs/files/rkt/004874.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc65c2cf94bb5d4e19bf7a546850aee02ab7297cc925bd60b7c00d208ab0f303 +size 82225 diff --git a/source/designs/files/rkt/004875.rkt b/source/designs/files/rkt/004875.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d0d332bf87fafc9480e6cdf97e59a2c03028d862 --- /dev/null +++ b/source/designs/files/rkt/004875.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9056defa8acf516ffd240e34e1fb072129e1e87fb861646e20ada34265a95a4 +size 102327 diff --git a/source/designs/files/rkt/004876.rkt b/source/designs/files/rkt/004876.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a9298428778f98703f29009f2409e1ffabc2825d --- /dev/null +++ b/source/designs/files/rkt/004876.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0ce9ed88fbc7017b23a8c075ebf320dfb836c66f14dccfc94629f3ac0914de +size 232052 diff --git a/source/designs/files/rkt/004877.rkt b/source/designs/files/rkt/004877.rkt new file mode 100644 index 0000000000000000000000000000000000000000..dc494913798b94003b876c677400008876759ca4 --- /dev/null +++ b/source/designs/files/rkt/004877.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:719068f28362db373251deaba30e3aa2e69a8ba57637d399178e642da0c30874 +size 113729 diff --git a/source/designs/files/rkt/004878.rkt b/source/designs/files/rkt/004878.rkt new file mode 100644 index 0000000000000000000000000000000000000000..36d91cf58e59d9e6af0bbbc868bef913d4c7039d --- /dev/null +++ b/source/designs/files/rkt/004878.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a41b8c5ab5128042f99eb2d6ecbbd5bbff944e4fbc66177ea1aa7a505e8664d +size 104965 diff --git a/source/designs/files/rkt/004879.rkt b/source/designs/files/rkt/004879.rkt new file mode 100644 index 0000000000000000000000000000000000000000..40c8c4110d567817d4c9795fef1a8ed7f7954fec --- /dev/null +++ b/source/designs/files/rkt/004879.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4743d85eac2a18471fa5f5946afc9c878b664c5ebbd195ad097bea848702cf9 +size 104920 diff --git a/source/designs/files/rkt/004880.rkt b/source/designs/files/rkt/004880.rkt new file mode 100644 index 0000000000000000000000000000000000000000..da6b4ac6410d373ceb62ad7b2cdbfd507685b8d0 --- /dev/null +++ b/source/designs/files/rkt/004880.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc1ee9031b2807871baf4413022318b75c175bffbf77fe13088a6fbd5a3baa6 +size 77174 diff --git a/source/designs/files/rkt/004881.rkt b/source/designs/files/rkt/004881.rkt new file mode 100644 index 0000000000000000000000000000000000000000..04137b6cd01710b4630ec2461757c213fc0d13ce --- /dev/null +++ b/source/designs/files/rkt/004881.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9057a745da972d1ac68dbd83aa6301826a277d90cd192a62d2c85b8fd8aa3d9a +size 41949 diff --git a/source/designs/files/rkt/004882.rkt b/source/designs/files/rkt/004882.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0a4846d55f2f900f7b87fb68a4e6f96a5f68354a --- /dev/null +++ b/source/designs/files/rkt/004882.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce581487f6b9b02ef68b208aceaf11b156e8c1e144941ce42aae4624b6bd81b4 +size 76932 diff --git a/source/designs/files/rkt/004883.rkt b/source/designs/files/rkt/004883.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0f6343a4c998defe8770d85be60d931b21c41b0b --- /dev/null +++ b/source/designs/files/rkt/004883.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368aa0cb211346f9174e540550bdd222258a2bf5b9bc02cbee9bb6f3ec600ea9 +size 113209 diff --git a/source/designs/files/rkt/004884.rkt b/source/designs/files/rkt/004884.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8e63e6ffde2c8f65891ef1c59b8504dc35257730 --- /dev/null +++ b/source/designs/files/rkt/004884.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7b81001d800cc9d484f50e2402625662b9503eb02cfcca3de7a2ce6754d0cc +size 88343 diff --git a/source/designs/files/rkt/005003.rkt b/source/designs/files/rkt/005003.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ce38927517146ab901ae837507679bfdac49e28b --- /dev/null +++ b/source/designs/files/rkt/005003.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6759bdd2d7c5edfbc77f9b1153eb8b03c27d8162b72f97d1cc03cbb9e6c58d56 +size 32826 diff --git a/source/designs/files/rkt/005004.rkt b/source/designs/files/rkt/005004.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6ec38480ca25d4bb6f67d8b563fdaf30358b2011 --- /dev/null +++ b/source/designs/files/rkt/005004.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f85b429d274b11263beaa2bca2f31462c3e91ddc1dc665eec479a862d5ecca +size 42973 diff --git a/source/designs/files/rkt/005005.rkt b/source/designs/files/rkt/005005.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d0956bd3b42334ab8a9f1b6bf569d154bbb25d7f --- /dev/null +++ b/source/designs/files/rkt/005005.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7975f1124f80aea978374aebebd28009c075aebd968821aaefe375a906437c20 +size 38463 diff --git a/source/designs/files/rkt/005006.rkt b/source/designs/files/rkt/005006.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c16abb6473854f285b3cfa9b3c15c6877c0bebd6 --- /dev/null +++ b/source/designs/files/rkt/005006.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78740cfabae0b46780b8df9122845b16e8b393025059768fbc093f6534e41de +size 54674 diff --git a/source/designs/files/rkt/005007.rkt b/source/designs/files/rkt/005007.rkt new file mode 100644 index 0000000000000000000000000000000000000000..869ce51a00107ff6934a5ded6c7be74fe669b650 --- /dev/null +++ b/source/designs/files/rkt/005007.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41224b27490c0609301e3737221e4dc8dc55d0150e325abe696c14a909599420 +size 27144 diff --git a/source/designs/files/rkt/005008.rkt b/source/designs/files/rkt/005008.rkt new file mode 100644 index 0000000000000000000000000000000000000000..615cc64badfa155bfb808034a035b133673fa106 --- /dev/null +++ b/source/designs/files/rkt/005008.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a3e7c3d63fb751b1a9c4808b43e8140c47993b148172835e2158b61b2efd5f +size 46215 diff --git a/source/designs/files/rkt/005009.rkt b/source/designs/files/rkt/005009.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9cd9092cefc2f33c80e4093f9b7193174a669c9a --- /dev/null +++ b/source/designs/files/rkt/005009.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6f438a091849d0c4cd0166c9085c0532e26b1bb7bbddc8194afcdd7bfb3074e +size 60949 diff --git a/source/designs/files/rkt/005010.rkt b/source/designs/files/rkt/005010.rkt new file mode 100644 index 0000000000000000000000000000000000000000..49e3324705526b918eccaca410b59166add6b2fd --- /dev/null +++ b/source/designs/files/rkt/005010.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c659d8afbb45220659838d82aaf7050f6019a6c105bda84a1d9fb56d6fb5e5e6 +size 36585 diff --git a/source/designs/files/rkt/005011.rkt b/source/designs/files/rkt/005011.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f0f35209e532c7bf6b546f44d9118e77827009e1 --- /dev/null +++ b/source/designs/files/rkt/005011.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc86e22ddbe7a467eecf055febcc5c9046d5bfe83172a60d3af3c0d34933dc5 +size 36462 diff --git a/source/designs/files/rkt/005012.rkt b/source/designs/files/rkt/005012.rkt new file mode 100644 index 0000000000000000000000000000000000000000..be80a46ed54195c601ff4633ea661cdf8a4254dd --- /dev/null +++ b/source/designs/files/rkt/005012.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46d04e748809d53fe5c9f78bfe05d029d4a0d19fc3f24039a6918844fd782ef +size 31077 diff --git a/source/designs/files/rkt/005013.rkt b/source/designs/files/rkt/005013.rkt new file mode 100644 index 0000000000000000000000000000000000000000..13d0fa6e12ca20fd7304c521cc4a44f8549d8d88 --- /dev/null +++ b/source/designs/files/rkt/005013.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73728962afa3888d53ff5e6070199c41a59ec5fb28d353f39a7a35e9de16553d +size 31894 diff --git a/source/designs/files/rkt/005014.rkt b/source/designs/files/rkt/005014.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63d74c5b30793746ef2b85e69d3105c197483871 --- /dev/null +++ b/source/designs/files/rkt/005014.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26ea2755b6b89ddec82ad73c1eda7716d4837665d013e0f44ad35495f78f7f9 +size 51095 diff --git a/source/designs/files/rkt/005015.rkt b/source/designs/files/rkt/005015.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e93866634d75620e5168743ceec445f52f67dd59 --- /dev/null +++ b/source/designs/files/rkt/005015.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65fdbf86690ef1edefb318d0f08dc9bcb59edeb7befd5eec358fb9ce22bb531a +size 36042 diff --git a/source/designs/files/rkt/005016.rkt b/source/designs/files/rkt/005016.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6a32a9779a3ebcb051acc5ddc60d6c0ce2f7474a --- /dev/null +++ b/source/designs/files/rkt/005016.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e0b23e9ff6b1cb94e12f82b740cfd004a19ab717e08a03c614505c8aff8bc8f +size 61215 diff --git a/source/designs/files/rkt/005017.rkt b/source/designs/files/rkt/005017.rkt new file mode 100644 index 0000000000000000000000000000000000000000..715e7cd249801223eeb5eb0fe9d375725268a555 --- /dev/null +++ b/source/designs/files/rkt/005017.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e23f4b31e2c555349d027fdf3b2c01ebbd8f2e7ac241524659b86f081e40c89b +size 52922 diff --git a/source/designs/files/rkt/005018.rkt b/source/designs/files/rkt/005018.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4702738fd0f5716173b798c6366c5e478dacef92 --- /dev/null +++ b/source/designs/files/rkt/005018.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8286f5aa2ba197ed1405799e033a6f0003df47b9b33093df16877a1019bbe2d3 +size 55751 diff --git a/source/designs/files/rkt/005019.rkt b/source/designs/files/rkt/005019.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2ccfe80037839840b29f221cfbacd86a3bdaf207 --- /dev/null +++ b/source/designs/files/rkt/005019.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2af62488f829a7333f9f3e0b3a50283b7c0f8ffe074146cbd741168d79aaa3d +size 52910 diff --git a/source/designs/files/rkt/005020.rkt b/source/designs/files/rkt/005020.rkt new file mode 100644 index 0000000000000000000000000000000000000000..543c27f91710a1667930f07efbc9f301394c738a --- /dev/null +++ b/source/designs/files/rkt/005020.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c621c03a1f4d69ca226417866ed444edf03763f6cbb983bca4e04bc60ca11b2 +size 33650 diff --git a/source/designs/files/rkt/005021.rkt b/source/designs/files/rkt/005021.rkt new file mode 100644 index 0000000000000000000000000000000000000000..db40ef9d412e625b041e2ae59f122b9248080e05 --- /dev/null +++ b/source/designs/files/rkt/005021.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33d63e7585f5ad362fc9bf3cba5b30169d2bc8feabcd63fbe08940b1fee9e9c4 +size 55597 diff --git a/source/designs/files/rkt/005022.rkt b/source/designs/files/rkt/005022.rkt new file mode 100644 index 0000000000000000000000000000000000000000..340db409c935bf0603053fdc741f34bdba3c4f28 --- /dev/null +++ b/source/designs/files/rkt/005022.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a9e07662a1af374032ea799f32135dfa4372484112cf0c8594d8fb22ea41666 +size 33581 diff --git a/source/designs/files/rkt/005023.rkt b/source/designs/files/rkt/005023.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2a39626baec55eec1c922a8e4810e5510e8f1d06 --- /dev/null +++ b/source/designs/files/rkt/005023.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67b957bd7bb4b0593a7ff468f96326f0350d4afda468d44ae45f51044717480 +size 48879 diff --git a/source/designs/files/rkt/005024.rkt b/source/designs/files/rkt/005024.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eb5a1ebe0df704fe3011013be267a064225c598b --- /dev/null +++ b/source/designs/files/rkt/005024.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fb6d65c9bb154d963ad882e2c7b35f37667f7c7e7ab11bb2d8f8b8dc09231d +size 64543 diff --git a/source/designs/files/rkt/005025.rkt b/source/designs/files/rkt/005025.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1e7a0e39bc548cde421946390833506d34a4c885 --- /dev/null +++ b/source/designs/files/rkt/005025.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a0f2540e3f49881b667f19b1223a64be99e859a554011dd4835788602cf0b5 +size 33425 diff --git a/source/designs/files/rkt/005026.rkt b/source/designs/files/rkt/005026.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4b76e8f7b579ae5ae2d6981fd47ff49b43e3de90 --- /dev/null +++ b/source/designs/files/rkt/005026.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:706814c5f50ea8d412149ee1439b9d474729e36d477685a92c985a14ddd18a63 +size 34450 diff --git a/source/designs/files/rkt/005027.rkt b/source/designs/files/rkt/005027.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b94ab4c5139635436f291a4bfcd118cefaf8b739 --- /dev/null +++ b/source/designs/files/rkt/005027.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4dfbfc22d5733c7d96d125c2b359dcadae2d167fee44bb112c105fa3ac451f +size 39376 diff --git a/source/designs/files/rkt/005028.rkt b/source/designs/files/rkt/005028.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6992e76cb694a12fb52932db91b3137c53778a6c --- /dev/null +++ b/source/designs/files/rkt/005028.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7edb3aebe30885cffab5da302f3e7689ca40866d9953cb62d5a9488b1bcfb0e2 +size 94204 diff --git a/source/designs/files/rkt/005029.rkt b/source/designs/files/rkt/005029.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fdcc8f1d6b7fdce9f22af96e44c9c229d3a4d011 --- /dev/null +++ b/source/designs/files/rkt/005029.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a24cb2ac5567de944cab6d56c428c522f4a4341f88fdf841583492e6d46391 +size 37113 diff --git a/source/designs/files/rkt/005030.rkt b/source/designs/files/rkt/005030.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f250354cce90a190f2a9373691f438ab3bef9138 --- /dev/null +++ b/source/designs/files/rkt/005030.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34800c32c8453824259fff415e2c4eb77f096dfc713a89e173de8723f88e6f6e +size 30380 diff --git a/source/designs/files/rkt/005031.rkt b/source/designs/files/rkt/005031.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d611d9c61a8ce045a367b14089c3dabe8cb68abf --- /dev/null +++ b/source/designs/files/rkt/005031.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e120040079c09cebf7ea335b62a425914e4c2f8edc33877f946063f0039b9e0a +size 35470 diff --git a/source/designs/files/rkt/005032.rkt b/source/designs/files/rkt/005032.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9cb9832459f6c2482dfe7ee3e14b1c40be6ee341 --- /dev/null +++ b/source/designs/files/rkt/005032.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1277467ce688cca8b708f22bdcde1b7c2549075cea294800d91a1f002788fa4a +size 24716 diff --git a/source/designs/files/rkt/005033.rkt b/source/designs/files/rkt/005033.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a971e3af426f8e6be950df84c96d12a81fe364a1 --- /dev/null +++ b/source/designs/files/rkt/005033.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058aa40001e6d0fba2b0229bb2d28c4c53c238b05898a459e27ea702d7996002 +size 37814 diff --git a/source/designs/files/rkt/005034.rkt b/source/designs/files/rkt/005034.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d94f828679b572cea41de7255ddc305cfbd381d0 --- /dev/null +++ b/source/designs/files/rkt/005034.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8544349217e92fcd1cceb120fd14103b16498eca3ef1feb1e9cf893651f17a60 +size 24742 diff --git a/source/designs/files/rkt/005035.rkt b/source/designs/files/rkt/005035.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5fb5a788ab8e51bdac53670149cab27796e9a3b1 --- /dev/null +++ b/source/designs/files/rkt/005035.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a930c732a9e44c4fe07a12073644a2798537026498966ebf145b31a53d9457 +size 30990 diff --git a/source/designs/files/rkt/005036.rkt b/source/designs/files/rkt/005036.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6532c56c421706db23e673196640de793e98b6f1 --- /dev/null +++ b/source/designs/files/rkt/005036.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4c5f4789077ecfb297c55b0d38936d4ffb7cbaa5cfb0a73872b0f3c957e5f9d +size 37017 diff --git a/source/designs/files/rkt/005037.rkt b/source/designs/files/rkt/005037.rkt new file mode 100644 index 0000000000000000000000000000000000000000..185e8bb3cbbd13394028d3a32a0a72b48237c487 --- /dev/null +++ b/source/designs/files/rkt/005037.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:992a1f5887a829889fdc09bab732ff60b7749203b84529e7025b101e3b139949 +size 32054 diff --git a/source/designs/files/rkt/005038.rkt b/source/designs/files/rkt/005038.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ce1b702d69d63ecbed9ed01ef2fb0c96488a08c6 --- /dev/null +++ b/source/designs/files/rkt/005038.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b40822c764695f5210e2af27f9e4309cb1b8a935e9ca392b910f99e9bb50f980 +size 65689 diff --git a/source/designs/files/rkt/005039.rkt b/source/designs/files/rkt/005039.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b8b5f4bb24f9230db1b352fb98345edbfa0706f2 --- /dev/null +++ b/source/designs/files/rkt/005039.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85d2d8367e60c7dd170c786b178a1968864b66aea8002b189ea776ce8a59633a +size 36676 diff --git a/source/designs/files/rkt/005040.rkt b/source/designs/files/rkt/005040.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e93b0d99cc3a134a8e3c5438210d2a917f433ca7 --- /dev/null +++ b/source/designs/files/rkt/005040.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ff3e7d0be86cc6b675f10a57f714833c0712e1170fccec42a201c87e7e7415c +size 113408 diff --git a/source/designs/files/rkt/005041.rkt b/source/designs/files/rkt/005041.rkt new file mode 100644 index 0000000000000000000000000000000000000000..34063306381d607e3c588f76354e6388e3e1e428 --- /dev/null +++ b/source/designs/files/rkt/005041.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4af51dbcee84800569dba759dea0ea23b6ef3468594b02ef086cb95fa7746589 +size 24824 diff --git a/source/designs/files/rkt/005042.rkt b/source/designs/files/rkt/005042.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0d67f37c2d409660ca5634b51b3f531657776f45 --- /dev/null +++ b/source/designs/files/rkt/005042.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e3c805a3a7877d44e73de93e851aac87a218be2117173c18579be4bb8a636d +size 45911 diff --git a/source/designs/files/rkt/005043.rkt b/source/designs/files/rkt/005043.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3ced2623e6c9cae5497eb16da82b6c27dd22bb62 --- /dev/null +++ b/source/designs/files/rkt/005043.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf243e6d82f0bc88854719619a24c1ae0b037e0053947aee44db761094b6dfa +size 49180 diff --git a/source/designs/files/rkt/005044.rkt b/source/designs/files/rkt/005044.rkt new file mode 100644 index 0000000000000000000000000000000000000000..08cb6a36f1d55a7749bde6d4f25d875f42a5f9b1 --- /dev/null +++ b/source/designs/files/rkt/005044.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9a14242aa2641a4c0d84a83a49a18559d68a9fd4de305f658bc3c7a3c88a22 +size 42918 diff --git a/source/designs/files/rkt/005045.rkt b/source/designs/files/rkt/005045.rkt new file mode 100644 index 0000000000000000000000000000000000000000..73fd11d20ef25e00edcf1ff7e9c76aa9d0de6e0e --- /dev/null +++ b/source/designs/files/rkt/005045.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7790e344fd87d5a8b45f8db4619679ab7246df08ac5a08b2f02d70514a1f56a +size 48385 diff --git a/source/designs/files/rkt/005046.rkt b/source/designs/files/rkt/005046.rkt new file mode 100644 index 0000000000000000000000000000000000000000..799c279d85d3c6f9a0418d1c49d5d61da4e2488c --- /dev/null +++ b/source/designs/files/rkt/005046.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cd154ceeb841462a5da81def6fec534f428567234f4738a5fec927f38a80af +size 53328 diff --git a/source/designs/files/rkt/005047.rkt b/source/designs/files/rkt/005047.rkt new file mode 100644 index 0000000000000000000000000000000000000000..24c96c6d031e7f6800fad39e8dd858c3609a2867 --- /dev/null +++ b/source/designs/files/rkt/005047.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fb897344b3da0967be7a8f6601752414e8c0591f2078a1a3b968ed30d5ae170 +size 99907 diff --git a/source/designs/files/rkt/005048.rkt b/source/designs/files/rkt/005048.rkt new file mode 100644 index 0000000000000000000000000000000000000000..82cb147022d2a939a7eb7dff10c7e936ce7dc6de --- /dev/null +++ b/source/designs/files/rkt/005048.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a091a34d6df720430d2786ecc208cae0bc2ae51e9da67ba9e5efa4da77a67e +size 24851 diff --git a/source/designs/files/rkt/005049.rkt b/source/designs/files/rkt/005049.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2d1a809bb60bae4d1944a3b9e5b897fb48ab1ad1 --- /dev/null +++ b/source/designs/files/rkt/005049.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc40942b3a602c6f9631a4c5f42f005fb51fc0874f4985d0a5d40395e4f7edc +size 27503 diff --git a/source/designs/files/rkt/005050.rkt b/source/designs/files/rkt/005050.rkt new file mode 100644 index 0000000000000000000000000000000000000000..183ebe5604a5fab8b4ee28f724e7f9f9e89bdc03 --- /dev/null +++ b/source/designs/files/rkt/005050.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d376e4717ba78c7a080df2de000de029ec13552d8676c31361e33dd7a120765d +size 83115 diff --git a/source/designs/files/rkt/005051.rkt b/source/designs/files/rkt/005051.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3ffd031bf36b072829a783e5e64c24ec9036d31f --- /dev/null +++ b/source/designs/files/rkt/005051.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2b4d206d0e9bfc0e5502c0de896e1fa7614af5f736c283da207d459064843c +size 25064 diff --git a/source/designs/files/rkt/005052.rkt b/source/designs/files/rkt/005052.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9d0b6e6c152193124c47649f3656d099c83b7ed8 --- /dev/null +++ b/source/designs/files/rkt/005052.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1d7b2172674e3cc7e7d034041824565f3ae0af79469e2a3084c71a78c2f159 +size 31736 diff --git a/source/designs/files/rkt/005053.rkt b/source/designs/files/rkt/005053.rkt new file mode 100644 index 0000000000000000000000000000000000000000..21923314c12b7ae7360721d209626be10aedeea0 --- /dev/null +++ b/source/designs/files/rkt/005053.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4c9b729a1e65a3647e62e295fd1d52e3308b502591cba2af968623a8eaaf0d +size 30756 diff --git a/source/designs/files/rkt/005055.rkt b/source/designs/files/rkt/005055.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a7c7d1da2076093845084a98bf599e263b142e73 --- /dev/null +++ b/source/designs/files/rkt/005055.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5af4ffb6ea1cf96d0b198d373455598c6dae2cda9979bcae6612dbb761a25e +size 24308 diff --git a/source/designs/files/rkt/005056.rkt b/source/designs/files/rkt/005056.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2c6277941ec09d9b1b7dd301bbbd46d4289ee713 --- /dev/null +++ b/source/designs/files/rkt/005056.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b182dc18f6aa53b523e9e107c352b351691c8a12d3a1eec314fba985e5a5b99 +size 29231 diff --git a/source/designs/files/rkt/005057.rkt b/source/designs/files/rkt/005057.rkt new file mode 100644 index 0000000000000000000000000000000000000000..beb965712e11203d38bbd37b94b32415e2ee5f76 --- /dev/null +++ b/source/designs/files/rkt/005057.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eec38f74b69a1da5b18ba464382baf23f09e7cfdc282f2c75ed5ebe48cd2c47 +size 74394 diff --git a/source/designs/files/rkt/005058.rkt b/source/designs/files/rkt/005058.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9d5c5befad2d0bbcbdcb542d490946b3b5189644 --- /dev/null +++ b/source/designs/files/rkt/005058.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216a448afcc66be0f8ba5c1c362e5d6a7281fae5d7568b30664568a9594f25b6 +size 101002 diff --git a/source/designs/files/rkt/005059.rkt b/source/designs/files/rkt/005059.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c798922130b75660b9453cd07f1a4bd443469828 --- /dev/null +++ b/source/designs/files/rkt/005059.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f8161fdbd89445cd546ffd7207bccf22117aba7c6d906fc225f50061b69160 +size 62595 diff --git a/source/designs/files/rkt/005060.rkt b/source/designs/files/rkt/005060.rkt new file mode 100644 index 0000000000000000000000000000000000000000..09af5fe23d4fa7ea8a4bd2909bac8590bbf803d3 --- /dev/null +++ b/source/designs/files/rkt/005060.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46656009e44351f4f0486cba85fade7a1a705c6f702b9638f33c46f67a8f5dac +size 100086 diff --git a/source/designs/files/rkt/005061.rkt b/source/designs/files/rkt/005061.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c64902e9e5829c6232988b6c54a27b5aa473aa53 --- /dev/null +++ b/source/designs/files/rkt/005061.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6afe0a30ed9b08110ff9541f439c000dcb1f9eb84a850b339602f23918a141 +size 19214 diff --git a/source/designs/files/rkt/005062.rkt b/source/designs/files/rkt/005062.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0b94315b37cae7444db9a74c2e6fc648f647f7ab --- /dev/null +++ b/source/designs/files/rkt/005062.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84cdab423ff5c55b52010422ee22230ea2139a1372109f468412aa9a5a1d770 +size 16592 diff --git a/source/designs/files/rkt/005063.rkt b/source/designs/files/rkt/005063.rkt new file mode 100644 index 0000000000000000000000000000000000000000..68d8dd1af17f7f99a21caedcf6169f416f9347cf --- /dev/null +++ b/source/designs/files/rkt/005063.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5575f873dc07507077a8933dbac9cca0646058d3e25df37f79f3404c21a6dbc0 +size 81779 diff --git a/source/designs/files/rkt/005064.rkt b/source/designs/files/rkt/005064.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ef1dea54d57cc6533472dae71e0a61944520ac7d --- /dev/null +++ b/source/designs/files/rkt/005064.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3129dc94078891de9b7293fcba7571e9b215b22267a17c30b1c4d08c5eb2dcae +size 45271 diff --git a/source/designs/files/rkt/005065.rkt b/source/designs/files/rkt/005065.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4af724146cb142032f7ce2c4327df8b7fad852bc --- /dev/null +++ b/source/designs/files/rkt/005065.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f3422b9514c397f8bb6b81f10b63430b52d486cf01dda5e13d2f92b80f2a4e +size 156711 diff --git a/source/designs/files/rkt/005066.rkt b/source/designs/files/rkt/005066.rkt new file mode 100644 index 0000000000000000000000000000000000000000..017c1317d1b69cb8225586b22491d7e0d5fdf3cb --- /dev/null +++ b/source/designs/files/rkt/005066.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:848c45c6f97baeea4a270fe9594dab99ed8bd92c5d72dab9bcd5beed56f8fbe2 +size 60342 diff --git a/source/designs/files/rkt/005067.rkt b/source/designs/files/rkt/005067.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6481824be62d3a68f476a808a9eb01dfbba0502f --- /dev/null +++ b/source/designs/files/rkt/005067.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07e614b818dfec3dd791cbce05242ac0e88905d1db757a040f02e56a2e5a570 +size 26726 diff --git a/source/designs/files/rkt/005068.rkt b/source/designs/files/rkt/005068.rkt new file mode 100644 index 0000000000000000000000000000000000000000..77ecb68c880a665f60ccadaaed67516483f01134 --- /dev/null +++ b/source/designs/files/rkt/005068.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b772de2549abbaefe10da87c037958fd065db6a9980ddf52db6f267547378a +size 53942 diff --git a/source/designs/files/rkt/005109.rkt b/source/designs/files/rkt/005109.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f1061d1debf802b2dc3fdf4425fe12ac25cbf997 --- /dev/null +++ b/source/designs/files/rkt/005109.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4dedd3daf22edd0652a34d4fca00d5e7d84eb195f95bff3076d082afeb316c +size 47489 diff --git a/source/designs/files/rkt/005110.rkt b/source/designs/files/rkt/005110.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2d5f7b75b437f9a37e76d47ee5572db9396a8d10 --- /dev/null +++ b/source/designs/files/rkt/005110.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db236a4407f0fd9e734090829d2b8a7e5d7f4cb3009eb766ab05ec2af572b561 +size 43218 diff --git a/source/designs/files/rkt/005111.rkt b/source/designs/files/rkt/005111.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3bf3412ffe9b64455d728e353b0ae44ea35edbfc --- /dev/null +++ b/source/designs/files/rkt/005111.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f738dc23078c201433b25fd45879220ca98f27740388711692317267766173dd +size 69108 diff --git a/source/designs/files/rkt/005112.rkt b/source/designs/files/rkt/005112.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e65c5e63e8427d67bbdbd466adbc52606163b09c --- /dev/null +++ b/source/designs/files/rkt/005112.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62cee1c687335d8d9469c1fdb9164f2e37e048f8ec4227ee0f7094d24f9fe47 +size 86037 diff --git a/source/designs/files/rkt/005113.rkt b/source/designs/files/rkt/005113.rkt new file mode 100644 index 0000000000000000000000000000000000000000..83e1999d52d11b50fd3ddb9a42379fa7ad05d35a --- /dev/null +++ b/source/designs/files/rkt/005113.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:497968e0268b4dec2f03361b96726352342344466f69548987b36105ea981aab +size 55584 diff --git a/source/designs/files/rkt/005114.rkt b/source/designs/files/rkt/005114.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c6e907e5c78661ba69908f60060c063fd11e278d --- /dev/null +++ b/source/designs/files/rkt/005114.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d3fcfb7ae4729c09dec73c82bc122e57adccc3226d19cebf34a43140b3b48b +size 57093 diff --git a/source/designs/files/rkt/005115.rkt b/source/designs/files/rkt/005115.rkt new file mode 100644 index 0000000000000000000000000000000000000000..379c56e3f9969ccd3ceb9670866ae4c92ae2670f --- /dev/null +++ b/source/designs/files/rkt/005115.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7557edeb9992cb58c254ea34416c108e8d315521e08b9654a91fae7fb0f1ee4b +size 47902 diff --git a/source/designs/files/rkt/005116.rkt b/source/designs/files/rkt/005116.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5653eeb5a7a7efedcecd75f5a4d07077932651e3 --- /dev/null +++ b/source/designs/files/rkt/005116.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c2340d0a3e101ffa6199cca9cbbb2b5aef437c42a468018a723f30c418827c +size 41436 diff --git a/source/designs/files/rkt/005117.rkt b/source/designs/files/rkt/005117.rkt new file mode 100644 index 0000000000000000000000000000000000000000..22efb75c62e56bd6b65ffc789f7b57e7a619e154 --- /dev/null +++ b/source/designs/files/rkt/005117.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d581c0859066192360284cdf9e79b73652ade3f6ea4b124edcc4ef5189cd0c9d +size 55068 diff --git a/source/designs/files/rkt/005118.rkt b/source/designs/files/rkt/005118.rkt new file mode 100644 index 0000000000000000000000000000000000000000..68394c1cbba8cc503d7f78d5cd06627bec42b19d --- /dev/null +++ b/source/designs/files/rkt/005118.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07c047fdd1376246306d6b00de75994de6c0a821c6a9f9213a5ae338537fb6f2 +size 79272 diff --git a/source/designs/files/rkt/005119.rkt b/source/designs/files/rkt/005119.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bc1f0b14c96c08c156450fae57bae0ba38a0e72f --- /dev/null +++ b/source/designs/files/rkt/005119.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cabf39ba21bbf3bdb1c325b4f9eddef09d21ec16cd05afcd0f3bda7f2565a4b4 +size 59317 diff --git a/source/designs/files/rkt/005120.rkt b/source/designs/files/rkt/005120.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e20b892e5977a5c766278c189c5ef041fe8991aa --- /dev/null +++ b/source/designs/files/rkt/005120.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907d69cf03f190eea9ef6be9dcc393ec090a6d41996cf4073cb5e3a4062fb8b3 +size 46753 diff --git a/source/designs/files/rkt/005121.rkt b/source/designs/files/rkt/005121.rkt new file mode 100644 index 0000000000000000000000000000000000000000..31c26edb5b44acdd0f8cbec499f40b9124a2685b --- /dev/null +++ b/source/designs/files/rkt/005121.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b849251887a58b80c2ad314f0597b00a6cf28c8478adf80b867486208f03ccb +size 30061 diff --git a/source/designs/files/rkt/005122.rkt b/source/designs/files/rkt/005122.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7555161794a1a1ef163271901fad69954cafcaff --- /dev/null +++ b/source/designs/files/rkt/005122.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94647e4489500259a1a38c410fa00b1b08e54b8cec0cb74336089104520ed29c +size 54217 diff --git a/source/designs/files/rkt/005123.rkt b/source/designs/files/rkt/005123.rkt new file mode 100644 index 0000000000000000000000000000000000000000..13457fd005a81181efaa4e7e82ba046f7a6edd4e --- /dev/null +++ b/source/designs/files/rkt/005123.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eeafd5603733fc3dd51e9003d0bae031b38c553670ead2ce7a7ab575118fdea +size 50238 diff --git a/source/designs/files/rkt/005124.rkt b/source/designs/files/rkt/005124.rkt new file mode 100644 index 0000000000000000000000000000000000000000..569ef71dc817e57cf97729447421fea372f49acb --- /dev/null +++ b/source/designs/files/rkt/005124.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daac4441ef64fa97eb155c3a6ba4732bb19fd6cc0079274de98f668d2e365538 +size 44466 diff --git a/source/designs/files/rkt/005125.rkt b/source/designs/files/rkt/005125.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5e94026f99d8b5839621a46551ccefa1995efc33 --- /dev/null +++ b/source/designs/files/rkt/005125.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daee1527a0fcea5e4a6f2bb3130c44679f0f2c7efcf61292e3f638e804c6b8e2 +size 35791 diff --git a/source/designs/files/rkt/005126.rkt b/source/designs/files/rkt/005126.rkt new file mode 100644 index 0000000000000000000000000000000000000000..23d8a66514edf71595a202fcfd3217ce921ca7ed --- /dev/null +++ b/source/designs/files/rkt/005126.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb1218cafb669547435dbe426d3cdca14874d32cb2bf295158fbe83da5762b4 +size 33937 diff --git a/source/designs/files/rkt/005127.rkt b/source/designs/files/rkt/005127.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0ee6aeb16ec72a6dece57d18ff8f1e2c3b47b727 --- /dev/null +++ b/source/designs/files/rkt/005127.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87ac8fb4a04d38b1a96a1f64b981edc92b2c48e2744e42bdac3fa0f4c80f3ad +size 29744 diff --git a/source/designs/files/rkt/005128.rkt b/source/designs/files/rkt/005128.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a948e94c645df245094244d0d45808e7705e3706 --- /dev/null +++ b/source/designs/files/rkt/005128.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85dd568e12b4ecba051074b3f5c3a9babf28b4aac8e796ecdccfe9979550049a +size 42719 diff --git a/source/designs/files/rkt/005129.rkt b/source/designs/files/rkt/005129.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6946264fe1cf5385255ebe216c80aeb8e3ef8789 --- /dev/null +++ b/source/designs/files/rkt/005129.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1f9d3390d99ae8c68aa57705d049d896601daea307798dc7cc5331d3d88473 +size 35545 diff --git a/source/designs/files/rkt/005130.rkt b/source/designs/files/rkt/005130.rkt new file mode 100644 index 0000000000000000000000000000000000000000..66e38c0ddd3fd73bfaeb79eed9a8325646b52596 --- /dev/null +++ b/source/designs/files/rkt/005130.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1879d5ed27904fc34f460f6dd24d3ca383b980fefd2e4d2fe0c51830ed2c0819 +size 50730 diff --git a/source/designs/files/rkt/005131.rkt b/source/designs/files/rkt/005131.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0e11c376e4ddbef7311decaa85ce76280f330bbb --- /dev/null +++ b/source/designs/files/rkt/005131.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7799f3e5ffbf462d0fbff3ffd20545aaa8f89e1a0eed967120186b4819e9cfc8 +size 33618 diff --git a/source/designs/files/rkt/005132.rkt b/source/designs/files/rkt/005132.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1b6f7c3d7a5733224e2e21a4f9c7b78fd1b2f1f6 --- /dev/null +++ b/source/designs/files/rkt/005132.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d28af537c830680a5c3ccd6a2b124ed35963a39e47ba77fb2fa157e88a5fb816 +size 29897 diff --git a/source/designs/files/rkt/005133.rkt b/source/designs/files/rkt/005133.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9d14762d025fd29c6b0123b7b939bad9c21f89dd --- /dev/null +++ b/source/designs/files/rkt/005133.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:867dbd61ec9e355033e73fdfe0a466ea169b5526c7bfef0e87f975b76fdbb333 +size 40994 diff --git a/source/designs/files/rkt/005134.rkt b/source/designs/files/rkt/005134.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9dab17f905884e824a8828937a13dbf0b7fe9099 --- /dev/null +++ b/source/designs/files/rkt/005134.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fae41b2d54d12e9eff7efd706574a9d6f46c26429076ab408ce88e4bdd90b31 +size 48249 diff --git a/source/designs/files/rkt/005135.rkt b/source/designs/files/rkt/005135.rkt new file mode 100644 index 0000000000000000000000000000000000000000..403a6e32d1ca0119c08bea55715c61d8d47877d7 --- /dev/null +++ b/source/designs/files/rkt/005135.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5515f2039fdbc6ed9b3a5f11bc6f05906e01c8433db0a7263894b8662e72503 +size 100429 diff --git a/source/designs/files/rkt/005136.rkt b/source/designs/files/rkt/005136.rkt new file mode 100644 index 0000000000000000000000000000000000000000..df376ed8b29b4e752a2955e47c8bd8672e518175 --- /dev/null +++ b/source/designs/files/rkt/005136.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e7d3a76ccf405c829e0f263f044374c6bdb9127fafc516c1211c6d631646d5 +size 64016 diff --git a/source/designs/files/rkt/005137.rkt b/source/designs/files/rkt/005137.rkt new file mode 100644 index 0000000000000000000000000000000000000000..30297115bfde970b874cf9463f3fc8bc21de2ac5 --- /dev/null +++ b/source/designs/files/rkt/005137.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2fb91100bc862f55e987f04f1212b98dd97b8b7d58aff0b68d83b5958fe1077 +size 42509 diff --git a/source/designs/files/rkt/005138.rkt b/source/designs/files/rkt/005138.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cfefb4088dc9cd17497821ecffe74079e3fd37ae --- /dev/null +++ b/source/designs/files/rkt/005138.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67440a49cdb368aaf670e895b98710e019dfda029e764842d46de88216fe16ea +size 48526 diff --git a/source/designs/files/rkt/005139.rkt b/source/designs/files/rkt/005139.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bcf4b06a770c207bea3280a5fd9bc311dde70960 --- /dev/null +++ b/source/designs/files/rkt/005139.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4901f4df0ca9a257d33ba55a515409f2395e3023c7f8b24bf7be56eb10090f74 +size 41243 diff --git a/source/designs/files/rkt/005140.rkt b/source/designs/files/rkt/005140.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a34c6a86a18b386f2bbc838b9d98090b681b21c6 --- /dev/null +++ b/source/designs/files/rkt/005140.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b75bfbe9ca1429ab5a5e6a030cbd1628b95169e02688fbafa6bfe800b0979fc +size 47763 diff --git a/source/designs/files/rkt/005141.rkt b/source/designs/files/rkt/005141.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4fc6e7cf9b6c2a81165e3843c57bc308d79e4c59 --- /dev/null +++ b/source/designs/files/rkt/005141.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c5e660152fef85daca6a05665f79fdb9e322f88a3b79e6f060af287a16f850 +size 49839 diff --git a/source/designs/files/rkt/005142.rkt b/source/designs/files/rkt/005142.rkt new file mode 100644 index 0000000000000000000000000000000000000000..65d40923d8a0f6e26fff41e69cdcb0b609259116 --- /dev/null +++ b/source/designs/files/rkt/005142.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:400a5871cbb54812c8c9a1650bfdf99dfb8361a0404754c89598022e320cd2e7 +size 80413 diff --git a/source/designs/files/rkt/005143.rkt b/source/designs/files/rkt/005143.rkt new file mode 100644 index 0000000000000000000000000000000000000000..23a51ea9981b94c0eb50cd6447b2a7fa62a1748e --- /dev/null +++ b/source/designs/files/rkt/005143.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2eacd33e2aa3f4f65d2677867bb410283e1a847ba4a6108ff30cd49fcb3ad09 +size 64666 diff --git a/source/designs/files/rkt/005144.rkt b/source/designs/files/rkt/005144.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3f796a3d42a431e9b52d2b2b55f5eb06c97446f5 --- /dev/null +++ b/source/designs/files/rkt/005144.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9c805f85e5acbec4973c7fca316a9a34d55fbc50d175b67f55a3a4ac32d3f0 +size 76042 diff --git a/source/designs/files/rkt/005145.rkt b/source/designs/files/rkt/005145.rkt new file mode 100644 index 0000000000000000000000000000000000000000..05488d5ac4d7fa9177a432afc35001f19763d078 --- /dev/null +++ b/source/designs/files/rkt/005145.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573a7de2ed7a861c5606af3a55cc428da89473b91e21e5b58e3010ae9f4c1a0e +size 63625 diff --git a/source/designs/files/rkt/005146.rkt b/source/designs/files/rkt/005146.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6b0cab80a151cca50257da044a1ced85a3b7fed9 --- /dev/null +++ b/source/designs/files/rkt/005146.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b6bf9f02f37333935e392ec4cb0bec880d225608e59b833e9909f4134d3e19 +size 29333 diff --git a/source/designs/files/rkt/005147.rkt b/source/designs/files/rkt/005147.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ab6ee8ed4a66bcbd7631411e1b3dfef308cc1d1b --- /dev/null +++ b/source/designs/files/rkt/005147.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e313e343ad4f2733f105988fd1e0076a170e98285788d773eb09a3b5c2af4ac0 +size 42008 diff --git a/source/designs/files/rkt/005148.rkt b/source/designs/files/rkt/005148.rkt new file mode 100644 index 0000000000000000000000000000000000000000..20061b34d99fc8dd800670df2ef2cec0d6c63d89 --- /dev/null +++ b/source/designs/files/rkt/005148.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43009921d3df04e5291009843fbe9a49dd65098f7ba8053aad04093ca4196079 +size 49726 diff --git a/source/designs/files/rkt/005149.rkt b/source/designs/files/rkt/005149.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5147f922c69ccf47d3414e26aba997b0163b36d8 --- /dev/null +++ b/source/designs/files/rkt/005149.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c9895fe0ae49dc7e3df26cd896d49514b46be1a27cdfac78b488666e00c7c06 +size 38582 diff --git a/source/designs/files/rkt/005150.rkt b/source/designs/files/rkt/005150.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cf910f75e9526f7d7d8eb147f4967aee123dc547 --- /dev/null +++ b/source/designs/files/rkt/005150.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06120922945b38165526442241f5a8ba6a9a8062d8ff8f10b219a2256a7fe684 +size 64111 diff --git a/source/designs/files/rkt/005151.rkt b/source/designs/files/rkt/005151.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2f979490e3855e0192f35cb0aa3a3798d2618c93 --- /dev/null +++ b/source/designs/files/rkt/005151.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e571052e4fbd0ed64b2780aa53c48ffbbf8218e4e141cddf93e23b3ad56f6be +size 45905 diff --git a/source/designs/files/rkt/005152.rkt b/source/designs/files/rkt/005152.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9a6d55560fb34a6e2a52d9a67d1e48c491c2b1de --- /dev/null +++ b/source/designs/files/rkt/005152.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46011eb64ea27cdd8c30b06deccfdebf7f9df0a4a1d6fa7396e0711d40e80795 +size 29641 diff --git a/source/designs/files/rkt/005153.rkt b/source/designs/files/rkt/005153.rkt new file mode 100644 index 0000000000000000000000000000000000000000..992861ba43cc7fb1ef9a90492414d5fc90ef30ae --- /dev/null +++ b/source/designs/files/rkt/005153.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d738adaeb18e427ce814db8442dd18f70a69dfba14e13ef850852ace279ae58 +size 52460 diff --git a/source/designs/files/rkt/005154.rkt b/source/designs/files/rkt/005154.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7c4f2d6e70d8d71e38cbc28f27357f8356d7cd25 --- /dev/null +++ b/source/designs/files/rkt/005154.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c58a557bac9ae10211ee9b086fe72e12b61d512bdbeec445ae9b88922f2fea5 +size 53051 diff --git a/source/designs/files/rkt/005155.rkt b/source/designs/files/rkt/005155.rkt new file mode 100644 index 0000000000000000000000000000000000000000..00b60e710e1d87486abb32b504b6d2a20613eb99 --- /dev/null +++ b/source/designs/files/rkt/005155.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e30fe9e0cfb61517104ad9846ecf2bd9dd17df6d7006d25f7aff0ec33016b38 +size 75497 diff --git a/source/designs/files/rkt/005156.rkt b/source/designs/files/rkt/005156.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cbec86e68e319facceccf48def25f5ce01d4141b --- /dev/null +++ b/source/designs/files/rkt/005156.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c48b95a51d797fe328b40b0e9491f1de831c414ae8c475456d66b182aa2739e +size 45808 diff --git a/source/designs/files/rkt/005157.rkt b/source/designs/files/rkt/005157.rkt new file mode 100644 index 0000000000000000000000000000000000000000..369a9431f58250a862848186c4849636320e577a --- /dev/null +++ b/source/designs/files/rkt/005157.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81c0714c2b0449404d9af922668e60de387460709aab3a2218f278180e2ad25 +size 72361 diff --git a/source/designs/files/rkt/005158.rkt b/source/designs/files/rkt/005158.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0362d1da96e4c7f92a175e77b5b92074ef3a6afc --- /dev/null +++ b/source/designs/files/rkt/005158.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab30650d691c8faa50bf706b8ce71bb2849b91414b3065900273e8fc12ccfd9 +size 6828 diff --git a/source/designs/files/rkt/005159.rkt b/source/designs/files/rkt/005159.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c1c937a874f9c20cffe506089aa4befeeb2d3dd0 --- /dev/null +++ b/source/designs/files/rkt/005159.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3ffed4605d6c0456d10fe9be1f4b5f2898c7c20da8dfec3f41fd04735e9ad3 +size 6838 diff --git a/source/designs/files/rkt/005160.rkt b/source/designs/files/rkt/005160.rkt new file mode 100644 index 0000000000000000000000000000000000000000..09ed6e1a8bdf61734bbc56ddff1138b5c7c1bff1 --- /dev/null +++ b/source/designs/files/rkt/005160.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e24c80c6864b588babe55cbc7a28bdf4f7e7ca21d4997a906cc05d0eb5501de +size 42434 diff --git a/source/designs/files/rkt/005161.rkt b/source/designs/files/rkt/005161.rkt new file mode 100644 index 0000000000000000000000000000000000000000..21bff571ac4f99f9ccb3aada0c34b343c99c1480 --- /dev/null +++ b/source/designs/files/rkt/005161.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c95b9c64b3296d5f8445e86d6cb667673176be46b11c26acfdad4e1be4ca794 +size 30223 diff --git a/source/designs/files/rkt/005162.rkt b/source/designs/files/rkt/005162.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0d55930a80f245499d4833ce1c15a29a54887d8d --- /dev/null +++ b/source/designs/files/rkt/005162.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab7fe1d08ba1c137defd134b22fd7763d815057f34acf959692029bbd1b3f65 +size 64095 diff --git a/source/designs/files/rkt/005163.rkt b/source/designs/files/rkt/005163.rkt new file mode 100644 index 0000000000000000000000000000000000000000..defca749419695700ae0e3d82db0e1cf1bdd4657 --- /dev/null +++ b/source/designs/files/rkt/005163.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d4f25cac5765747ff10173f5fbf8fff760309447ff089286774341beb542df +size 66999 diff --git a/source/designs/files/rkt/005164.rkt b/source/designs/files/rkt/005164.rkt new file mode 100644 index 0000000000000000000000000000000000000000..07ebd54dff5d000df117054a3570aaaec3c667f3 --- /dev/null +++ b/source/designs/files/rkt/005164.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2a55bc115f02d4d9a1fd2aacb31294fce23db6aedcfede791ab88902909b06 +size 97345 diff --git a/source/designs/files/rkt/005165.rkt b/source/designs/files/rkt/005165.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b743428944988fbfbc94b605219f5eb559ec3c7f --- /dev/null +++ b/source/designs/files/rkt/005165.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfc4939eb5053601e12e0dc95933457c20b7b90eec2f805f6372db20705da43 +size 58566 diff --git a/source/designs/files/rkt/005166.rkt b/source/designs/files/rkt/005166.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6fce5f246a9ed87c2cbe5017a46c05f7ad5784d7 --- /dev/null +++ b/source/designs/files/rkt/005166.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a36c8b1eafb6d82873626320fd9c84495b758b9ddb79f7a100d3f3515081b78 +size 54012 diff --git a/source/designs/files/rkt/005167.rkt b/source/designs/files/rkt/005167.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0fa6639fbf287c6f39581c48e5f24e3ffa475c4d --- /dev/null +++ b/source/designs/files/rkt/005167.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:190546c5e0a53897d7a80df0763fe54e066c83fb1227d53d8a1c668466f99e8e +size 26552 diff --git a/source/designs/files/rkt/005168.rkt b/source/designs/files/rkt/005168.rkt new file mode 100644 index 0000000000000000000000000000000000000000..10e84d8a0b7b4fa9da96b8de96dc792540b0e223 --- /dev/null +++ b/source/designs/files/rkt/005168.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab91510f4d773c3b427423b1bd3f26af5854b8f1c0cbe84a1a6b87a46606f51 +size 60340 diff --git a/source/designs/files/rkt/005169.rkt b/source/designs/files/rkt/005169.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bf9f3995586ac048a91d900177a972b40413b805 --- /dev/null +++ b/source/designs/files/rkt/005169.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1416586a327370bd010d81347b542fee2053694da0b745e1f67df9eb1c5c693f +size 74505 diff --git a/source/designs/files/rkt/005170.rkt b/source/designs/files/rkt/005170.rkt new file mode 100644 index 0000000000000000000000000000000000000000..931245fb092a81ecc9135a2bbf4c13ce5b7ea532 --- /dev/null +++ b/source/designs/files/rkt/005170.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a1a963e3353159f0451d81402a1811efb523c32d938955332795edd4cb87c1 +size 100757 diff --git a/source/designs/files/rkt/005171.rkt b/source/designs/files/rkt/005171.rkt new file mode 100644 index 0000000000000000000000000000000000000000..17d775e6af428795fccae69e9f0168537dd6d445 --- /dev/null +++ b/source/designs/files/rkt/005171.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db382c34ca7e69a24e06d2acd59d36c16175ca7910b1a17a6cf0e0334100710e +size 20240 diff --git a/source/designs/files/rkt/005172.rkt b/source/designs/files/rkt/005172.rkt new file mode 100644 index 0000000000000000000000000000000000000000..710079469c1b1df6ec741b89475bad7ebcb4142e --- /dev/null +++ b/source/designs/files/rkt/005172.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096eeed4f6d8fb24f0612d7457249a9fb68841f5676cf48f18ef2377c0589de0 +size 66611 diff --git a/source/designs/files/rkt/005173.rkt b/source/designs/files/rkt/005173.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c794183b1d038af7319a586d2ec1408cc6c306b2 --- /dev/null +++ b/source/designs/files/rkt/005173.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7da9c7ca5440bab650a37af6f05c34d0f99ebf67b22573e13a74a537fd84cc6 +size 39006 diff --git a/source/designs/files/rkt/005174.rkt b/source/designs/files/rkt/005174.rkt new file mode 100644 index 0000000000000000000000000000000000000000..48af6075150acf885c66d9fad8e1c8b0dd33bb85 --- /dev/null +++ b/source/designs/files/rkt/005174.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7407b1c8a264297dd3a1c9bf5a136f3c3a5f8265f11a022f95ee1bf1477b6469 +size 121689 diff --git a/source/designs/files/rkt/005175.rkt b/source/designs/files/rkt/005175.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8d691b80e683f457a7ca3fdb476a066741fb3c31 --- /dev/null +++ b/source/designs/files/rkt/005175.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e028ebcc5b38125036de281abd26e2ae00230c67e008b96e504cdfb4da07b5e2 +size 32217 diff --git a/source/designs/files/rkt/005176.rkt b/source/designs/files/rkt/005176.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f06d2566fe66cc20ef15498c5668aa1fb9e4fb1d --- /dev/null +++ b/source/designs/files/rkt/005176.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621812063ffc80a033606e5ea24551a70f8ed6bdd76a7da57472a112f3804a7f +size 23475 diff --git a/source/designs/files/rkt/005177.rkt b/source/designs/files/rkt/005177.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2623ace75dbd87a017314660ffc8de9b2bbf611f --- /dev/null +++ b/source/designs/files/rkt/005177.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8368109ad815bd2147d4a45b2c361dfc9d7be385d42e528dbc1a3256fcc3bcef +size 44367 diff --git a/source/designs/files/rkt/005178.rkt b/source/designs/files/rkt/005178.rkt new file mode 100644 index 0000000000000000000000000000000000000000..90b18f2be5f71c71a615b163268d7a12cfacb846 --- /dev/null +++ b/source/designs/files/rkt/005178.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43e85a57bc34635c2d13fe439976e71dc0a40f993ee198279185454fbc0b703 +size 78781 diff --git a/source/designs/files/rkt/005179.rkt b/source/designs/files/rkt/005179.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c301ee26bba222ca9f45caa0c2c86b2ced46682f --- /dev/null +++ b/source/designs/files/rkt/005179.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddfebca353d57c9bf3e0770b8d2a4bcb7047d1f1ddeb2f227c80b17ed8db552 +size 72943 diff --git a/source/designs/files/rkt/005180.rkt b/source/designs/files/rkt/005180.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea22f8a95795582e22ff6914779d2a8f29063755 --- /dev/null +++ b/source/designs/files/rkt/005180.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e5b57f56dcc7066ca285d5614cd350e88590834b4da9f26b6f99fe05dd0190 +size 39614 diff --git a/source/designs/files/rkt/005181.rkt b/source/designs/files/rkt/005181.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f928c89239e11edf7cefd89501c5615a31847610 --- /dev/null +++ b/source/designs/files/rkt/005181.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5bfecbe6a4703bf541cb819c1ee353c732e706a47cb4961c83a741972d11e86 +size 89398 diff --git a/source/designs/files/rkt/005182.rkt b/source/designs/files/rkt/005182.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6d881f6403cec561ceaba1db062a421632b6227a --- /dev/null +++ b/source/designs/files/rkt/005182.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bff2264142d48f292fa0fedd2b5f1bfbcaa151a1b9fd10bc227ea1433148c1d +size 78064 diff --git a/source/designs/files/rkt/005183.rkt b/source/designs/files/rkt/005183.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1ce40c90c0d0ebc8863b47861db528acb139334e --- /dev/null +++ b/source/designs/files/rkt/005183.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac6449a4ed4841d8ef716d53b46bc1e1e32a8bc4d69fe58e47de7f07bab6b96 +size 88389 diff --git a/source/designs/files/rkt/005184.rkt b/source/designs/files/rkt/005184.rkt new file mode 100644 index 0000000000000000000000000000000000000000..61565858d0500f43d7ce4de2b0283b6e586a62d5 --- /dev/null +++ b/source/designs/files/rkt/005184.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64dd70ee7faaa24d7d9ec128f427916200bf86fda28b7619de58417c8b781a3e +size 35607 diff --git a/source/designs/files/rkt/005185.rkt b/source/designs/files/rkt/005185.rkt new file mode 100644 index 0000000000000000000000000000000000000000..28659cfd9de5884dcb45833daeec1a163bf2d568 --- /dev/null +++ b/source/designs/files/rkt/005185.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79592350b68121ec1261712dde178fbea5a33dd8ae554ccf63b4d996dba8bf9c +size 45314 diff --git a/source/designs/files/rkt/005186.rkt b/source/designs/files/rkt/005186.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e85679723db449cd9b076b251a1ccd73080d53a4 --- /dev/null +++ b/source/designs/files/rkt/005186.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cce898d988f8a93c8ae4f7f88f9eb1eb054acabe247e74c4e371b893e24a66cb +size 49310 diff --git a/source/designs/files/rkt/005187.rkt b/source/designs/files/rkt/005187.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eda541ce308ef83bc7cbd01496679680ff9a1028 --- /dev/null +++ b/source/designs/files/rkt/005187.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d146ad344ae5edcc27237b14e52fdf06cfe7bfacb3fd430158dba5d3adb87b +size 56312 diff --git a/source/designs/files/rkt/005188.rkt b/source/designs/files/rkt/005188.rkt new file mode 100644 index 0000000000000000000000000000000000000000..121aa4769dd2d414d20bfc5782d0df3a661e619a --- /dev/null +++ b/source/designs/files/rkt/005188.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4c91fb4681284a073ce81ee57d96a6622750fc3d22594c1aba952bd17d0d1f2 +size 57606 diff --git a/source/designs/files/rkt/005189.rkt b/source/designs/files/rkt/005189.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6436102f020d3a7166528d301ef8683d2770c595 --- /dev/null +++ b/source/designs/files/rkt/005189.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387ae0e37a8c86559a683de55ca0a2d72fd8f0d6e5a20b930204d5e8bdfa3fa3 +size 71635 diff --git a/source/designs/files/rkt/005190.rkt b/source/designs/files/rkt/005190.rkt new file mode 100644 index 0000000000000000000000000000000000000000..060faad5e2c13bfbb7965b2e2e761f0f2546dda6 --- /dev/null +++ b/source/designs/files/rkt/005190.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975b26bd5e98fff76021414048c840372d650d9f85ccef0b3b9cbb067f7f1aca +size 43088 diff --git a/source/designs/files/rkt/005191.rkt b/source/designs/files/rkt/005191.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6a56aa764ba4fbd3ce792acd20853923ef6d082f --- /dev/null +++ b/source/designs/files/rkt/005191.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21c64e20c2c7082ede53190b945ab9746cd1f4f14332e086dff2d270e5fdd68 +size 56564 diff --git a/source/designs/files/rkt/005192.rkt b/source/designs/files/rkt/005192.rkt new file mode 100644 index 0000000000000000000000000000000000000000..dd70c37114386589bfa17b75bed931fa9a9e274b --- /dev/null +++ b/source/designs/files/rkt/005192.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bca37fa42415e8b130f85289a1d40a16400ef517e1508d3bfef6b97fcb5e904 +size 67347 diff --git a/source/designs/files/rkt/005193.rkt b/source/designs/files/rkt/005193.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ec83baa8b544c2c595275794433965da9c4ee695 --- /dev/null +++ b/source/designs/files/rkt/005193.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d509e8991704802846c6fc14a7bd9df9f0424003eba74bb8a2849d46437060 +size 93602 diff --git a/source/designs/files/rkt/005194.rkt b/source/designs/files/rkt/005194.rkt new file mode 100644 index 0000000000000000000000000000000000000000..48bdb173a00e42ae525d0049fbf26ad8cd984ce0 --- /dev/null +++ b/source/designs/files/rkt/005194.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f173c040c5f0ca450f379cff7cdc1f666d6302aafd46d7829d5f6126689c197 +size 85199 diff --git a/source/designs/files/rkt/005195.rkt b/source/designs/files/rkt/005195.rkt new file mode 100644 index 0000000000000000000000000000000000000000..333ace9e243ffa0ff059747b30eb5a7c9d6d091f --- /dev/null +++ b/source/designs/files/rkt/005195.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fd4a1069cbbbca03f1e0ff978d6920b6cd442e9c1c79589a9be200533d36974 +size 45931 diff --git a/source/designs/files/rkt/005196.rkt b/source/designs/files/rkt/005196.rkt new file mode 100644 index 0000000000000000000000000000000000000000..473147b3fa041853d03674e59b33e7463761bceb --- /dev/null +++ b/source/designs/files/rkt/005196.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea750d0ee3153e07f7458d87a6c61eb65e1f6010441fce1b4fe4693f6a73b477 +size 126740 diff --git a/source/designs/files/rkt/005197.rkt b/source/designs/files/rkt/005197.rkt new file mode 100644 index 0000000000000000000000000000000000000000..95a98c24d75eccf3affc04fb1a593447d36e6875 --- /dev/null +++ b/source/designs/files/rkt/005197.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c04b947419103dbf84315702641d80bd6c562a2866697ea0fbbf41be59a2229 +size 41742 diff --git a/source/designs/files/rkt/005198.rkt b/source/designs/files/rkt/005198.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8d81495ded2c8ca0a86c57014c8286af78536e7b --- /dev/null +++ b/source/designs/files/rkt/005198.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0597f4ada5cee4a3c703f015a8e74b09d5d1de7f31c549452fa67166d1312e73 +size 53935 diff --git a/source/designs/files/rkt/005199.rkt b/source/designs/files/rkt/005199.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ab5d47d98ff5f3adf527cd99146142b5fee648df --- /dev/null +++ b/source/designs/files/rkt/005199.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b98abda72ef4ad872721e06a980d3c8e293e2caf22da9f57fe45f026c024b01 +size 45692 diff --git a/source/designs/files/rkt/005200.rkt b/source/designs/files/rkt/005200.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a5a301416df9affb643b588abd491288d9435d8e --- /dev/null +++ b/source/designs/files/rkt/005200.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9a2c1d075573d20c47ebe2eebeebe246fd24277c08484fd6ad7d60583adb1d +size 35780 diff --git a/source/designs/files/rkt/005201.rkt b/source/designs/files/rkt/005201.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1958ed7e5ba4430cfe8f448ca664af170e5ee5ab --- /dev/null +++ b/source/designs/files/rkt/005201.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4c5294ecd69ad4bf33e16046b2a2dae85b476c8e2315def6e54eb853bc960c +size 59053 diff --git a/source/designs/files/rkt/005202.rkt b/source/designs/files/rkt/005202.rkt new file mode 100644 index 0000000000000000000000000000000000000000..36b836dd6ae47883894e05b35a2ebdabbb4e4d00 --- /dev/null +++ b/source/designs/files/rkt/005202.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a37dcc304394446561fe302380c40c1c7a994cfea229592f230ccf9f78f6c1c7 +size 43152 diff --git a/source/designs/files/rkt/005203.rkt b/source/designs/files/rkt/005203.rkt new file mode 100644 index 0000000000000000000000000000000000000000..35632ff99b6db024fec915d99f1303e4a717e8e0 --- /dev/null +++ b/source/designs/files/rkt/005203.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4fcdffeffc95f27dfdfd7c71e7892567265cd27d23030cd6ba33b7646014e8a +size 58588 diff --git a/source/designs/files/rkt/005204.rkt b/source/designs/files/rkt/005204.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2a77137f50e2d42d3ba61bedb0a95fe9c4ca1596 --- /dev/null +++ b/source/designs/files/rkt/005204.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d98a8ffc7b26a0f10a72cc0b409bf430e51027bb0a56c6516c194f24e81d2b1 +size 50919 diff --git a/source/designs/files/rkt/005205.rkt b/source/designs/files/rkt/005205.rkt new file mode 100644 index 0000000000000000000000000000000000000000..23a84844b20953ee1eb5460bd4233691fe02d2a3 --- /dev/null +++ b/source/designs/files/rkt/005205.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e23534790fe850ab266a8e3afa3d2c1cc690277b768ec0206470b6a5a6cb033f +size 79468 diff --git a/source/designs/files/rkt/005206.rkt b/source/designs/files/rkt/005206.rkt new file mode 100644 index 0000000000000000000000000000000000000000..86ce10b530e319983e5d2e6fa8b1dd9cf50d17f3 --- /dev/null +++ b/source/designs/files/rkt/005206.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7983ef53f99ae5f10da9fe985b5c22489239905387bf156fab89dab4fcfddc3 +size 84701 diff --git a/source/designs/files/rkt/005207.rkt b/source/designs/files/rkt/005207.rkt new file mode 100644 index 0000000000000000000000000000000000000000..06c0e51108828369f898787c32175cdaf1330f20 --- /dev/null +++ b/source/designs/files/rkt/005207.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41d2c409dcb9467ee1f24970a0d500b578b6eba91fde17d4ac4cca97d1a6fd11 +size 15557 diff --git a/source/designs/files/rkt/005208.rkt b/source/designs/files/rkt/005208.rkt new file mode 100644 index 0000000000000000000000000000000000000000..965a942f13022aa0616bee417ebbbd8dafa5baf0 --- /dev/null +++ b/source/designs/files/rkt/005208.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a4702730983f8c1add66580260e0ee7a83b265e3ea4e6237e222d566f911ee +size 17386 diff --git a/source/designs/files/rkt/005209.rkt b/source/designs/files/rkt/005209.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea39218035ac3ce282f9481cbf4a73fbebf0c826 --- /dev/null +++ b/source/designs/files/rkt/005209.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de294a24e7c1d7bc00f768b4859f01046f37ee1c808a70cab2e56b08ad6cb0a +size 15696 diff --git a/source/designs/files/rkt/005210.rkt b/source/designs/files/rkt/005210.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8f9398dedc6fe142f6f64111b7fb1cdad10e670d --- /dev/null +++ b/source/designs/files/rkt/005210.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6d61f6a530d0f1cf41e81bdb163d42ad95af53d697b392f3c197a004cb6b88 +size 59633 diff --git a/source/designs/files/rkt/005211.rkt b/source/designs/files/rkt/005211.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7cef422cd580561e98427ba1f1f40927cdd14a42 --- /dev/null +++ b/source/designs/files/rkt/005211.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1dfa566f99f4d216c45b906650f7b42b381446a5298d40f93f02cc657ac411 +size 81207 diff --git a/source/designs/files/rkt/005212.rkt b/source/designs/files/rkt/005212.rkt new file mode 100644 index 0000000000000000000000000000000000000000..096029baa4142854af3d73268da658088463ed37 --- /dev/null +++ b/source/designs/files/rkt/005212.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03912e4db86ca4ef4b29eee2a799225f133d0456d48df0cb9c65e5cced386ec7 +size 127632 diff --git a/source/designs/files/rkt/005213.rkt b/source/designs/files/rkt/005213.rkt new file mode 100644 index 0000000000000000000000000000000000000000..80f5d39635c0f8c7badfd5672ac471df6dfdfd5d --- /dev/null +++ b/source/designs/files/rkt/005213.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92557c9e61e2ea893ceaaf4abdd0c3c1c2b8f97382160429a101754df5e39ccb +size 85450 diff --git a/source/designs/files/rkt/005214.rkt b/source/designs/files/rkt/005214.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5dfbe880835ab9cfbd645d4bcc9750bf7e2362bc --- /dev/null +++ b/source/designs/files/rkt/005214.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:715039660a763c1b075afcf257588cc92341d947aff98577e462302a4fd8a04a +size 51039 diff --git a/source/designs/files/rkt/005215.rkt b/source/designs/files/rkt/005215.rkt new file mode 100644 index 0000000000000000000000000000000000000000..27d584b5b7b7e6ff1d4805f38f0f5486df735dc8 --- /dev/null +++ b/source/designs/files/rkt/005215.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a10757f222bd880048af76cabffad754f77347eebeaf3fff4a11999a9ceba5 +size 33914 diff --git a/source/designs/files/rkt/005216.rkt b/source/designs/files/rkt/005216.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e5e47c3df883317000ac466d21b435cd1b59e49c --- /dev/null +++ b/source/designs/files/rkt/005216.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4510b3470acb03007a1aa0860e0df0e5ba31dc06ec592729247a78c2bd418353 +size 93696 diff --git a/source/designs/files/rkt/005217.rkt b/source/designs/files/rkt/005217.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3aea55f0b0aceaa151fdc997c8785927fd12cd77 --- /dev/null +++ b/source/designs/files/rkt/005217.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb3d23d9fc15efd717294695fdd07c0086c2d9478e511a673d6315b98f41b2c +size 60981 diff --git a/source/designs/files/rkt/005218.rkt b/source/designs/files/rkt/005218.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d4b2970aaa301db0b2334df2acdcb33cf1a414b3 --- /dev/null +++ b/source/designs/files/rkt/005218.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf5fdb382ff33de7354cc34c41a6c5ac66bea02f7f29d35e4ddf896b1fc1dd6 +size 49728 diff --git a/source/designs/files/rkt/005219.rkt b/source/designs/files/rkt/005219.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0f3e1ba0fdaf85c505c630b84375251c3aaab23d --- /dev/null +++ b/source/designs/files/rkt/005219.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e3eff98a8671fa8cb0ed4b7b1b7fc2be26495ecfb9dd0a9edbcd5d47f0b61fa +size 116643 diff --git a/source/designs/files/rkt/005220.rkt b/source/designs/files/rkt/005220.rkt new file mode 100644 index 0000000000000000000000000000000000000000..75a3b367f3bb2c17263d61906802035a3b2c2f0a --- /dev/null +++ b/source/designs/files/rkt/005220.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9204c4be902a0864b9ecd2d589936d507a09958e583e98c5fec4f829fd589f1 +size 82902 diff --git a/source/designs/files/rkt/005221.rkt b/source/designs/files/rkt/005221.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bf6dc7c40fb1a8f4f2338d1184f76f3666d9dd7f --- /dev/null +++ b/source/designs/files/rkt/005221.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c0fcc58d7927a4a5d50d3b263a463c780de755dd223ac23eaa638d1a5f8953 +size 111715 diff --git a/source/designs/files/rkt/005222.rkt b/source/designs/files/rkt/005222.rkt new file mode 100644 index 0000000000000000000000000000000000000000..768916b9df56851fedb7c8bf9e4c235a328d0e88 --- /dev/null +++ b/source/designs/files/rkt/005222.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76933cd601b6d4075d2ca78981da2eefb1a8646e87b2712b1681d616a5cfb2a0 +size 41645 diff --git a/source/designs/files/rkt/005223.rkt b/source/designs/files/rkt/005223.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a48ddc27845161076114ce03a4ef860c8405c8d9 --- /dev/null +++ b/source/designs/files/rkt/005223.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7639d64d1d55b95baa2b9e640cc75abb5e152524465a223647fceed8ef0358c6 +size 34733 diff --git a/source/designs/files/rkt/005224.rkt b/source/designs/files/rkt/005224.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b7201f009fd0677d25f948e1b03dab0df0a79707 --- /dev/null +++ b/source/designs/files/rkt/005224.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a45639164f04030eb66023113f93c21c463761aa6354c4e32acb3a9ba139646 +size 13558 diff --git a/source/designs/files/rkt/005225.rkt b/source/designs/files/rkt/005225.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3cbaa65180a184374ad6bfb19715651ae40580e9 --- /dev/null +++ b/source/designs/files/rkt/005225.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589a443564968b0b791c91901393670696aad033093a6e47a73c774f5642fa96 +size 32627 diff --git a/source/designs/files/rkt/005226.rkt b/source/designs/files/rkt/005226.rkt new file mode 100644 index 0000000000000000000000000000000000000000..32ef554014edb403295a399393123afa499420dd --- /dev/null +++ b/source/designs/files/rkt/005226.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92835ad8bcd797777ad23e1a0a0bbfb4461f2d1c7492d0fd84a19dc3f8dd5049 +size 53989 diff --git a/source/designs/files/rkt/005227.rkt b/source/designs/files/rkt/005227.rkt new file mode 100644 index 0000000000000000000000000000000000000000..df2c51ea1e078d596182773c3e065fa3e5d8f304 --- /dev/null +++ b/source/designs/files/rkt/005227.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd99e51d26eacf453135cae2056ea631dbc49abd88ca4e5565a63b52a3afc2d1 +size 50768 diff --git a/source/designs/files/rkt/005228.rkt b/source/designs/files/rkt/005228.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2f6f598c1c9fc6761d3911cfb23b809968c6bcae --- /dev/null +++ b/source/designs/files/rkt/005228.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7428a5976be6fcc9d84964ae2e00d2d745d52a86e0c27fc82d0e790685d703d +size 29843 diff --git a/source/designs/files/rkt/005229.rkt b/source/designs/files/rkt/005229.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63facf909c96aca1c16e741245bcab9ae5865db7 --- /dev/null +++ b/source/designs/files/rkt/005229.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81b8c7cfae0415960cc317959d161c5bf928988d806057a27219ed2454cf05b +size 111783 diff --git a/source/designs/files/rkt/005230.rkt b/source/designs/files/rkt/005230.rkt new file mode 100644 index 0000000000000000000000000000000000000000..89ff8d92a5cac6cb6f8aae99d9b8168def6f7356 --- /dev/null +++ b/source/designs/files/rkt/005230.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e122d8cfc0c614678642274742911bdf14bbaf95a49ef4260a6d1360779604 +size 33482 diff --git a/source/designs/files/rkt/005231.rkt b/source/designs/files/rkt/005231.rkt new file mode 100644 index 0000000000000000000000000000000000000000..149bf6123a17044f31e28903d5381b3a179e1cf3 --- /dev/null +++ b/source/designs/files/rkt/005231.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ff4707f0e06e3f4d9d898dc68cd133606d9996cae1b0dc4db882f9676d4cce +size 44503 diff --git a/source/designs/files/rkt/005232.rkt b/source/designs/files/rkt/005232.rkt new file mode 100644 index 0000000000000000000000000000000000000000..99c598fe833701ad316a47f9b46e204a031b3c8b --- /dev/null +++ b/source/designs/files/rkt/005232.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb3430030f3ddcbf57cc40003bd7d8c18a81cc4fc7011d6b90be85091e5114f +size 30286 diff --git a/source/designs/files/rkt/005233.rkt b/source/designs/files/rkt/005233.rkt new file mode 100644 index 0000000000000000000000000000000000000000..757450c79901dbbe57aef24a79c944cc3037ca62 --- /dev/null +++ b/source/designs/files/rkt/005233.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d71512df28004dc6cf5e64d58a2935096eaeae76d076b2fb794ed832d9649bbb +size 15934 diff --git a/source/designs/files/rkt/005234.rkt b/source/designs/files/rkt/005234.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d23992ee47b5f82029fe0c1d7e41de6079391ccb --- /dev/null +++ b/source/designs/files/rkt/005234.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e100d6065cd70dd06877e1a5068c1fa490c4c50650ef5444f92f83ddefa44bb8 +size 15616 diff --git a/source/designs/files/rkt/005235.rkt b/source/designs/files/rkt/005235.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8862295187438f0baddc5ee533d412ef283afaa2 --- /dev/null +++ b/source/designs/files/rkt/005235.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6db5a003565ac3e67ac09117cfde30fafc71d31879d149f18a980197ce0186a +size 35311 diff --git a/source/designs/files/rkt/005236.rkt b/source/designs/files/rkt/005236.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5c8976594ed01a8086a3a5cc29328f5dda487943 --- /dev/null +++ b/source/designs/files/rkt/005236.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec9430d24098f70eb4868acb2b4d76e005fbdadffa5b4b2477ea2391d3fc487 +size 140100 diff --git a/source/designs/files/rkt/005237.rkt b/source/designs/files/rkt/005237.rkt new file mode 100644 index 0000000000000000000000000000000000000000..698f4ea14cdab5cacdc01d613eddc913c5fe6f1e --- /dev/null +++ b/source/designs/files/rkt/005237.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563855c7698a2f34501875abbcc9ccaa09d104631d9416cf49d91eb198d35977 +size 133875 diff --git a/source/designs/files/rkt/005238.rkt b/source/designs/files/rkt/005238.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ab564df5324f06bfabf8838faab7ffad575973dd --- /dev/null +++ b/source/designs/files/rkt/005238.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27d876fbbb0e0e76629f6d6e147fba24a7f97af2de9d1f58c9707096bd5ab3c9 +size 40987 diff --git a/source/designs/files/rkt/005239.rkt b/source/designs/files/rkt/005239.rkt new file mode 100644 index 0000000000000000000000000000000000000000..12b9a0b8b92c820b053c8914596b91fd805af927 --- /dev/null +++ b/source/designs/files/rkt/005239.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afd37eddbfa17627dfce5646fb2c57da7243a195ba85df15c1862bf280ef86c +size 35984 diff --git a/source/designs/files/rkt/005240.rkt b/source/designs/files/rkt/005240.rkt new file mode 100644 index 0000000000000000000000000000000000000000..427fa35756671033586b35bb8fb6919b83c9ae10 --- /dev/null +++ b/source/designs/files/rkt/005240.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f8aecb2694d16a9a2be16aa1e385f2afcbe8cf8f18c6665beaaa41eccb8613 +size 77458 diff --git a/source/designs/files/rkt/005241.rkt b/source/designs/files/rkt/005241.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6ff80d717e404309dbfb664e915806e90f9f011f --- /dev/null +++ b/source/designs/files/rkt/005241.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e71e51ec11c01b1778a1ee03b6bd1e57624e3f6c04b49f7f397bb126a46021b +size 55573 diff --git a/source/designs/files/rkt/005242.rkt b/source/designs/files/rkt/005242.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c6bd4f31b1721a955835cb8a2d0bcf86a77d1662 --- /dev/null +++ b/source/designs/files/rkt/005242.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecdcf8942c31e03a7fc9a2471e151c2b76ecf229b957e4e4064702beab516ee0 +size 76604 diff --git a/source/designs/files/rkt/005243.rkt b/source/designs/files/rkt/005243.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4847b25c3770c3252e9a49ab973333b2fb1cb171 --- /dev/null +++ b/source/designs/files/rkt/005243.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a40c974f1d4c8fcd117844bb06048f4ff3d69d080257b6e8db7fa4b2384e17e +size 76121 diff --git a/source/designs/files/rkt/005244.rkt b/source/designs/files/rkt/005244.rkt new file mode 100644 index 0000000000000000000000000000000000000000..80cfdef917c53a88c15a66bcdc88949f713e7fee --- /dev/null +++ b/source/designs/files/rkt/005244.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b6f48702a6b490068e6e509f98cb69a9297fc8f77f49b1ad66535248e847fc +size 92867 diff --git a/source/designs/files/rkt/005245.rkt b/source/designs/files/rkt/005245.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d92d149c5f3896faead98ec2c653ba7a12e43102 --- /dev/null +++ b/source/designs/files/rkt/005245.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43381f1ac79379806eb23535c0532dea6076068cead2a91b242c00240091115 +size 44773 diff --git a/source/designs/files/rkt/005246.rkt b/source/designs/files/rkt/005246.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3c6a864d902716043a2230f2a36ac86ce689e663 --- /dev/null +++ b/source/designs/files/rkt/005246.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c74022bdc0f4b03e776a5b872e8309fef3c50dd4ed14086ba1e80aff5e61475 +size 79485 diff --git a/source/designs/files/rkt/005247.rkt b/source/designs/files/rkt/005247.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a840f2efac7d6cbcdabba98e2c973df92fba1972 --- /dev/null +++ b/source/designs/files/rkt/005247.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f05938f9fa2e3e6bd44ccb6d3c40a662a3503cfcab7bf177a27eaa7e936290 +size 136615 diff --git a/source/designs/files/rkt/005248.rkt b/source/designs/files/rkt/005248.rkt new file mode 100644 index 0000000000000000000000000000000000000000..79aed63b59197994d7040074383717a8877d3e5b --- /dev/null +++ b/source/designs/files/rkt/005248.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4066c84b806295a23e8f735d62f7b6b9eb73393e26cd0e005e089ebe84b7b5 +size 33823 diff --git a/source/designs/files/rkt/005249.rkt b/source/designs/files/rkt/005249.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c21cc6f4030568b5971c3fb24f74589f006d99b6 --- /dev/null +++ b/source/designs/files/rkt/005249.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eadfe39fdac2e0b7616a7710fb5afa58dd4cb3e218c8d5cc9e996044a8ec4a65 +size 32474 diff --git a/source/designs/files/rkt/005250.rkt b/source/designs/files/rkt/005250.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2df5de255512b0d309aeb515134bac1c5e7a3f6f --- /dev/null +++ b/source/designs/files/rkt/005250.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3603c80e438df0068c3b3f3d32d828c15c7af76b308e05b3e0bbbe4e577dbb +size 27349 diff --git a/source/designs/files/rkt/005251.rkt b/source/designs/files/rkt/005251.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5633386ed31ef317f5a75e97189813af8dde8157 --- /dev/null +++ b/source/designs/files/rkt/005251.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bbf99e6a0526f5a1b804b09d75b1c07dbe6e7064420dec5f707d03cedcaf6c0 +size 54729 diff --git a/source/designs/files/rkt/005252.rkt b/source/designs/files/rkt/005252.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7e3983fa6af31135c796cc8be0ccde2c8a9bdff8 --- /dev/null +++ b/source/designs/files/rkt/005252.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c801d089a402c442094bb8af6d8cb26888b2e51e412d91b5c3538fadc9ff9e +size 33895 diff --git a/source/designs/files/rkt/005253.rkt b/source/designs/files/rkt/005253.rkt new file mode 100644 index 0000000000000000000000000000000000000000..44fd24d4f12754f97a6f8bb00ea0ee5fdc53b5e4 --- /dev/null +++ b/source/designs/files/rkt/005253.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba722cd352e70452558b111104cea49c201399486baa6b6650113372c722f15c +size 84454 diff --git a/source/designs/files/rkt/005254.rkt b/source/designs/files/rkt/005254.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9f61f0ef63ce4e84bf27a7836c46c0ad2edf2298 --- /dev/null +++ b/source/designs/files/rkt/005254.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab16449cff8c79df7c9c48ab6f4f44692112700081752163f506e011ecd8874a +size 51447 diff --git a/source/designs/files/rkt/005255.rkt b/source/designs/files/rkt/005255.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a8b37d2eda3ba223ff66a7611a8cf590e28c6f93 --- /dev/null +++ b/source/designs/files/rkt/005255.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f26d3da09dff3bfbf107405039d15c676dc017705b5c84120876b9e4c49a01 +size 23707 diff --git a/source/designs/files/rkt/005256.rkt b/source/designs/files/rkt/005256.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fad1a6eae07aa2106ac52061425acae34cb456f3 --- /dev/null +++ b/source/designs/files/rkt/005256.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deeb4cc5ace3f483ae1b6a73de5224cdcff3bf841e0b625c393258d8e8ea6898 +size 26512 diff --git a/source/designs/files/rkt/005257.rkt b/source/designs/files/rkt/005257.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d37a713c54cd52d9a984c8c9c7ddb11326c655a5 --- /dev/null +++ b/source/designs/files/rkt/005257.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c834d7e13da49bed0034707270b46c248219937f040a661112fb388ba576eba +size 66776 diff --git a/source/designs/files/rkt/005258.rkt b/source/designs/files/rkt/005258.rkt new file mode 100644 index 0000000000000000000000000000000000000000..da0f12daddf5e7effb0cca357c524e7f6739bf11 --- /dev/null +++ b/source/designs/files/rkt/005258.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35e1cb18c2ff90f658e5096969269df613ced4f52029b4fa3ab45251a3699521 +size 31210 diff --git a/source/designs/files/rkt/005259.rkt b/source/designs/files/rkt/005259.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1b043dd720bfd47958548ad192d318079b14f346 --- /dev/null +++ b/source/designs/files/rkt/005259.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c5cec4318a1ac123840e79e9a3c6fa1dd35e4186309133d7a46ae7dfb6d3973 +size 60679 diff --git a/source/designs/files/rkt/005260.rkt b/source/designs/files/rkt/005260.rkt new file mode 100644 index 0000000000000000000000000000000000000000..aeecd98a3c3d99a3e33f7f4a0d5b687e50b2b9fb --- /dev/null +++ b/source/designs/files/rkt/005260.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf4d0c80a38aceee0e0eefdfb996337f6374216178ce7e89b62b1fea8b5b631 +size 71567 diff --git a/source/designs/files/rkt/005261.rkt b/source/designs/files/rkt/005261.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0a5a15151fedb7920e53fb759bef3b78755aca54 --- /dev/null +++ b/source/designs/files/rkt/005261.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e16588997708e03cba20a6fe70ee426598fedc50d91af7b7d2848feb7f0fc6c +size 66240 diff --git a/source/designs/files/rkt/005262.rkt b/source/designs/files/rkt/005262.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ecfa828f1aa516aaad4b6c4afa09838390707135 --- /dev/null +++ b/source/designs/files/rkt/005262.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db147733510405f5dfd3ad197156e83e2de6756c6e893165f3deffb728a889b +size 24095 diff --git a/source/designs/files/rkt/005263.rkt b/source/designs/files/rkt/005263.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4e5efc1c3d9bb892171c58abe7096d916787c156 --- /dev/null +++ b/source/designs/files/rkt/005263.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887449a5c4aa37b5d2517245aee1fe952d1bc1e9ea8440bbe47e590af68204fc +size 63893 diff --git a/source/designs/files/rkt/005264.rkt b/source/designs/files/rkt/005264.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4696b9ee41206da531a7f329fadb5c6291efdbb5 --- /dev/null +++ b/source/designs/files/rkt/005264.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d259c8f84d681380ede08183a82c6ca0126848d8bf9dd9553bf1332ba5239c4 +size 91506 diff --git a/source/designs/files/rkt/005265.rkt b/source/designs/files/rkt/005265.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0c0f8a8065ae9af361df48d1ec04766c1ffbb2b4 --- /dev/null +++ b/source/designs/files/rkt/005265.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098499d49fcd21aac49470c587b1f66f256713aece5697bf05e8683ee0b7bf46 +size 39991 diff --git a/source/designs/files/rkt/005266.rkt b/source/designs/files/rkt/005266.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6489dd86520c7c1e05b2d35f7727799201305df6 --- /dev/null +++ b/source/designs/files/rkt/005266.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a992f768a1ca9499d193a374cb829c1dbead87f1506371e23c56a95c6b2e62 +size 81591 diff --git a/source/designs/files/rkt/005267.rkt b/source/designs/files/rkt/005267.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63750cde53671b173cddebfbc1d7f08877baa011 --- /dev/null +++ b/source/designs/files/rkt/005267.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e5a4658eb5879fa1a119539be410a990d93966ae71bfc062165ae6512ab2521 +size 94783 diff --git a/source/designs/files/rkt/005268.rkt b/source/designs/files/rkt/005268.rkt new file mode 100644 index 0000000000000000000000000000000000000000..793b6fb7a843cb0ddd7f5478d8c6e5e0b895c01a --- /dev/null +++ b/source/designs/files/rkt/005268.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c57ebd8fa4d14e6426efd1f66289f5db32ce8c01e910bbd628a34499edba0b4 +size 40070 diff --git a/source/designs/files/rkt/005269.rkt b/source/designs/files/rkt/005269.rkt new file mode 100644 index 0000000000000000000000000000000000000000..dc1d8590f4d957234b374accfeb942489b812980 --- /dev/null +++ b/source/designs/files/rkt/005269.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c6b4f69baff6d8f10b2847b2d3f833740e79f24c4ac04d0b71441d7d01370d +size 83728 diff --git a/source/designs/files/rkt/005270.rkt b/source/designs/files/rkt/005270.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7d472fc55c387e6f2c7c099092a2f6b80521901b --- /dev/null +++ b/source/designs/files/rkt/005270.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c27ee4923789169bfe74a01d8938e3a388e0f94ab29c868801b0b6b4c45e3f9e +size 25531 diff --git a/source/designs/files/rkt/005271.rkt b/source/designs/files/rkt/005271.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bc4ffbb2426a31fa652ed576b4627f7682b5f415 --- /dev/null +++ b/source/designs/files/rkt/005271.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46eb1b9a06274bdeb77f1ee68db06669fd187fe83fe3e1ef8115a99a851cde49 +size 42921 diff --git a/source/designs/files/rkt/005272.rkt b/source/designs/files/rkt/005272.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c8cf42818eb2990057eafb8ea697a264d077507e --- /dev/null +++ b/source/designs/files/rkt/005272.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad392903c8ba0f674533a1ddd4a0411437b75f17f6c46932a09d7c2eb50692c4 +size 75662 diff --git a/source/designs/files/rkt/005273.rkt b/source/designs/files/rkt/005273.rkt new file mode 100644 index 0000000000000000000000000000000000000000..25e6e34426083bbd342519b286fe0f41fb529ae9 --- /dev/null +++ b/source/designs/files/rkt/005273.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1561e9597164188606a84f2a8c0acedfed49c3b6a3c4c635a345015e6b6a318d +size 86073 diff --git a/source/designs/files/rkt/005274.rkt b/source/designs/files/rkt/005274.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8814bf9813bcdb33093f307ece854fa43cae4fa1 --- /dev/null +++ b/source/designs/files/rkt/005274.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f0dac286f4549af1c4abb98bb7dd6421d05fb724e103cfe484ca010c91c21d +size 26886 diff --git a/source/designs/files/rkt/005275.rkt b/source/designs/files/rkt/005275.rkt new file mode 100644 index 0000000000000000000000000000000000000000..588b0973270e00e726c5508e67a705865f0c6526 --- /dev/null +++ b/source/designs/files/rkt/005275.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:426d1235c51d78b38cc7a1982e939599139c5524a3b9c1a0fa7e388e940f8baa +size 73079 diff --git a/source/designs/files/rkt/005276.rkt b/source/designs/files/rkt/005276.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2d881a10495b7c7e1dfd5030ce5f9a9dbd2db559 --- /dev/null +++ b/source/designs/files/rkt/005276.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aed3220417058faf21555d61920c64f26cd3566400b736a5118a3b8e437676ed +size 24100 diff --git a/source/designs/files/rkt/005277.rkt b/source/designs/files/rkt/005277.rkt new file mode 100644 index 0000000000000000000000000000000000000000..709b16e9792f286053703ce2c228df80c8f270b2 --- /dev/null +++ b/source/designs/files/rkt/005277.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537b99461d10430398fd94181424bc2f717ad5968e4f005f096276cbe7f01b61 +size 44342 diff --git a/source/designs/files/rkt/005278.rkt b/source/designs/files/rkt/005278.rkt new file mode 100644 index 0000000000000000000000000000000000000000..45565f16527d1ff54877398b50169c87469f59e3 --- /dev/null +++ b/source/designs/files/rkt/005278.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17e26972e4eee4d8a107c88fce6c185be46ff4c0e1c701620ae1916649ea0dd2 +size 18879 diff --git a/source/designs/files/rkt/005279.rkt b/source/designs/files/rkt/005279.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5ce15d821d8c211c570933c251f7911a1bba8558 --- /dev/null +++ b/source/designs/files/rkt/005279.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05661e02cfa2840e73cea09b2aec9e520729dde3af634d2cf7311cde818f0fa7 +size 28924 diff --git a/source/designs/files/rkt/005280.rkt b/source/designs/files/rkt/005280.rkt new file mode 100644 index 0000000000000000000000000000000000000000..59e0883da19ce87eb94b62d34ed33e7a397cbec3 --- /dev/null +++ b/source/designs/files/rkt/005280.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e2e919f06521fa69b8d7f01c224fafd45bc0623a4a364a297deba7381c65f8 +size 77032 diff --git a/source/designs/files/rkt/005281.rkt b/source/designs/files/rkt/005281.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c88057e31047cf07035e446edc28e8179bf9afc5 --- /dev/null +++ b/source/designs/files/rkt/005281.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41dc34d96cb2bbc6ac2a8b22df4f9b860cbe25091223001f1c099a8ab5543b4a +size 42192 diff --git a/source/designs/files/rkt/005282.rkt b/source/designs/files/rkt/005282.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6b392853d19d0ac28b50b2fb862822ec2122031c --- /dev/null +++ b/source/designs/files/rkt/005282.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4359bdfdb8103fd835f20e23a31b5428580bf51e2d38c2fc8e358f886ce37b7b +size 46362 diff --git a/source/designs/files/rkt/005283.rkt b/source/designs/files/rkt/005283.rkt new file mode 100644 index 0000000000000000000000000000000000000000..38e83f97e2ebd2d9b89360c2197853cb8d90e0ef --- /dev/null +++ b/source/designs/files/rkt/005283.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a323274576a783019b5dd344413e43425f9ec76b79ac804bb0f10c76ca2214 +size 53308 diff --git a/source/designs/files/rkt/005284.rkt b/source/designs/files/rkt/005284.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eea26c721027cdf562c3f8ba1eeb62e56dc2c94c --- /dev/null +++ b/source/designs/files/rkt/005284.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a283d8fbf74b211993d9f9ed1799882df3e258c3cc7c9c7ad5201fa1b5ef5d69 +size 42134 diff --git a/source/designs/files/rkt/005285.rkt b/source/designs/files/rkt/005285.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0b6680aa8e0d3ef10c5dfc21c31e1dfc7a5bcda8 --- /dev/null +++ b/source/designs/files/rkt/005285.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a77ce2ec3dc2b5e525a268bf97ca106038a1a1c96aac87ac00786ccfefa3621 +size 21930 diff --git a/source/designs/files/rkt/005286.rkt b/source/designs/files/rkt/005286.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b560f854ed058ea4bdc4c29120eedbc0cc648797 --- /dev/null +++ b/source/designs/files/rkt/005286.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca034755029031ea675c5366e6ad13cde1ad1f800b28fa76c4ef8e5b52e1864 +size 21931 diff --git a/source/designs/files/rkt/005287.rkt b/source/designs/files/rkt/005287.rkt new file mode 100644 index 0000000000000000000000000000000000000000..168ff178c738373996b12834084213293c836f0e --- /dev/null +++ b/source/designs/files/rkt/005287.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07991e6d0a8a2dc9f6230a680ab7b7f8d787ce733296edd2e09509ee609d6b0a +size 41587 diff --git a/source/designs/files/rkt/005288.rkt b/source/designs/files/rkt/005288.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ca7d33885f09b94728f374f99d82fbccff62d689 --- /dev/null +++ b/source/designs/files/rkt/005288.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bac44dd91f4280dfbbcbb50e7273b5eb0f8fe0d1af411ccb282c8f8aa8bfcd3 +size 42269 diff --git a/source/designs/files/rkt/005289.rkt b/source/designs/files/rkt/005289.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2920f8601160e25c87957bac229a77841d9e2260 --- /dev/null +++ b/source/designs/files/rkt/005289.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3c03703bc4bf62b7c2b347fb2a1cf4ccb32c92b506c1530fe4637a1fc62bd6 +size 33439 diff --git a/source/designs/files/rkt/005290.rkt b/source/designs/files/rkt/005290.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e71102c94c318cdacab620f2b50a02d8c3cdf9a4 --- /dev/null +++ b/source/designs/files/rkt/005290.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dde7ff5c9f2e39f5fe5c7151eab12ee13ae03b4de96e8bad8373fcf91d6cecad +size 18942 diff --git a/source/designs/files/rkt/005291.rkt b/source/designs/files/rkt/005291.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a8a54acd3e893c2a7ba7b92bc489ed9ba2536970 --- /dev/null +++ b/source/designs/files/rkt/005291.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fcc08347f78e6726adb0dd4691692e61cff239076abfae712677c67c645f9a +size 69122 diff --git a/source/designs/files/rkt/005292.rkt b/source/designs/files/rkt/005292.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a87b07fbef4d0985ead00f0fc485cd52f12f2ec8 --- /dev/null +++ b/source/designs/files/rkt/005292.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a6ad5f570bdc9c03b5ed91cd8d553d64ce9b6b639860b50f9769b02d765153 +size 135909 diff --git a/source/designs/files/rkt/005293.rkt b/source/designs/files/rkt/005293.rkt new file mode 100644 index 0000000000000000000000000000000000000000..73b5fca1d5618a111f89d8f6546cd021eee5d490 --- /dev/null +++ b/source/designs/files/rkt/005293.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430adca397c616442538bff00a493fcd7b7c1a3a97480cd9fea1d942ec0ee1e9 +size 57797 diff --git a/source/designs/files/rkt/005294.rkt b/source/designs/files/rkt/005294.rkt new file mode 100644 index 0000000000000000000000000000000000000000..16fed4e832e8970303ae9b62bee68f3652497257 --- /dev/null +++ b/source/designs/files/rkt/005294.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31dec1379da4d66e1c7aa8991e6ba590b14ba5582f3b6f0c8d0a308b8e6309fa +size 47058 diff --git a/source/designs/files/rkt/005295.rkt b/source/designs/files/rkt/005295.rkt new file mode 100644 index 0000000000000000000000000000000000000000..601acc89c0ea88a8a83c49cb9b920d73edd57282 --- /dev/null +++ b/source/designs/files/rkt/005295.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62e31c0a119d8e163cab1be6f8adb02bf8ead805c46ea18a6a147feacb637ab +size 33486 diff --git a/source/designs/files/rkt/005296.rkt b/source/designs/files/rkt/005296.rkt new file mode 100644 index 0000000000000000000000000000000000000000..19b45257a93dc3b71fbfb46a000c6512c995ae2d --- /dev/null +++ b/source/designs/files/rkt/005296.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2623d67aed7d13d67cacaf81804726b46f881c7ba4adcf39951b9fa8b8ce6593 +size 83090 diff --git a/source/designs/files/rkt/005297.rkt b/source/designs/files/rkt/005297.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8d94b755fd7c98480ec6efc6a85a6dc285386a01 --- /dev/null +++ b/source/designs/files/rkt/005297.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff8baf4bdd8c9d5edb77a42213aebee73e59bd6afbc17b60032f901be28e6a6 +size 61664 diff --git a/source/designs/files/rkt/005298.rkt b/source/designs/files/rkt/005298.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea1371602f2d0aa0d68647056d6f29ec8dd24b98 --- /dev/null +++ b/source/designs/files/rkt/005298.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a64bf589c2cace65bb7e5cf2e464cfe41a242f56a8c4f045b4a09d30df21175 +size 47237 diff --git a/source/designs/files/rkt/005299.rkt b/source/designs/files/rkt/005299.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ad95cb80d1fdd61c3a2b1821e8e294d4d76b8c87 --- /dev/null +++ b/source/designs/files/rkt/005299.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19ca2f666a3323fe27b4f0a8c0f85d7bf9cef3c5df42eb975c5b22a3ddcdca8 +size 64599 diff --git a/source/designs/files/rkt/005300.rkt b/source/designs/files/rkt/005300.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4fb752686bd6946eaa91b1256947264b0469f3c0 --- /dev/null +++ b/source/designs/files/rkt/005300.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7107a33103b1a517d5c455f87853a9c07bb3e0cfacbd36e56249048ad2c10219 +size 44472 diff --git a/source/designs/files/rkt/005301.rkt b/source/designs/files/rkt/005301.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ce89d280f547185600da787abb188c482d73f02c --- /dev/null +++ b/source/designs/files/rkt/005301.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add05eef3f6507a71683db18b73470263bc95704ee2d463f59b879460fcdd35f +size 38204 diff --git a/source/designs/files/rkt/005302.rkt b/source/designs/files/rkt/005302.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63333c61959551f116802a1b872a8121ca38bdd1 --- /dev/null +++ b/source/designs/files/rkt/005302.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b299d843e3ba6247d0da939278845eef80122bbb21cd65fc6fe9ed3c068ccad2 +size 30325 diff --git a/source/designs/files/rkt/005303.rkt b/source/designs/files/rkt/005303.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c5263a70d842d857cb238ccfce1297e34154bc81 --- /dev/null +++ b/source/designs/files/rkt/005303.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84f8ea933f1e02c51fe1c2505fa8df9ac1e2050edd91545375774b895054b75 +size 45291 diff --git a/source/designs/files/rkt/005304.rkt b/source/designs/files/rkt/005304.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2147a4685eff40c1bee76dc2f2ec75582eb022fd --- /dev/null +++ b/source/designs/files/rkt/005304.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6378ad11f2cc7728fafa37a846bd6335d2ad9520d45a0c84a41398f0e8919d +size 37391 diff --git a/source/designs/files/rkt/005305.rkt b/source/designs/files/rkt/005305.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1a599cb7b80eff8b280f166d3590fe69b4b73cc5 --- /dev/null +++ b/source/designs/files/rkt/005305.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ed5d7d5e8bc2968565deba674165f276bcd04469028aeae70843ede98bd224 +size 53221 diff --git a/source/designs/files/rkt/005306.rkt b/source/designs/files/rkt/005306.rkt new file mode 100644 index 0000000000000000000000000000000000000000..199bef65553b856c218925249725358183e974be --- /dev/null +++ b/source/designs/files/rkt/005306.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe383d2f63d761f7aa45c3b11e318916af6dd300b21251d827b344d4f66c3577 +size 40858 diff --git a/source/designs/files/rkt/005307.rkt b/source/designs/files/rkt/005307.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9bd293c097835aaf3e1420f01dd170ee82a9d14a --- /dev/null +++ b/source/designs/files/rkt/005307.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22ca09095eb8769dc00ed163c1bf608a34665e42fc2304efb5504272d188c5e6 +size 267025 diff --git a/source/designs/files/rkt/005308.rkt b/source/designs/files/rkt/005308.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c3cea359025f06d57877f27ae63ebd2dc260008b --- /dev/null +++ b/source/designs/files/rkt/005308.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b1f2987ce5e7c35b2f17302da5c97607d13ea5da48672b042e5586a7364d5a +size 38555 diff --git a/source/designs/files/rkt/005309.rkt b/source/designs/files/rkt/005309.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea3789d58587d4b1c09be7edcdc11dd05a98ee07 --- /dev/null +++ b/source/designs/files/rkt/005309.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907e8f338220f91c2ce3e9185ce5195bfca749a8b3837cbbfa2ab297dd4a6de7 +size 36738 diff --git a/source/designs/files/rkt/005310.rkt b/source/designs/files/rkt/005310.rkt new file mode 100644 index 0000000000000000000000000000000000000000..96985e292c33a5f5b52a5d17b179e209381d851b --- /dev/null +++ b/source/designs/files/rkt/005310.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed17ab69e763b1c36fc402c72249a3b0c686f9501e8e7fd546854772675f9fbe +size 45600 diff --git a/source/designs/files/rkt/005311.rkt b/source/designs/files/rkt/005311.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2b55eec29dac36eafe34c7b428465d632a557587 --- /dev/null +++ b/source/designs/files/rkt/005311.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1841951db540f81e4bda79a78d852cb247a4097572c871b353e1c74bd0556619 +size 26217 diff --git a/source/designs/files/rkt/005312.rkt b/source/designs/files/rkt/005312.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fd41728bf3351b12a2d4b29aa9d88fefbeec030d --- /dev/null +++ b/source/designs/files/rkt/005312.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad20be89fdf2e789e35f79b960c16b81e133e39766a8e998c67a9af41c3d052e +size 92051 diff --git a/source/designs/files/rkt/005314.rkt b/source/designs/files/rkt/005314.rkt new file mode 100644 index 0000000000000000000000000000000000000000..938dc31b2e6a0c21d6ec0cb334c25ecff74f0946 --- /dev/null +++ b/source/designs/files/rkt/005314.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6ff011897ea5e454f2f49ba715a42e48c52d657d19200d6ffd08f26272e2f97 +size 73125 diff --git a/source/designs/files/rkt/005315.rkt b/source/designs/files/rkt/005315.rkt new file mode 100644 index 0000000000000000000000000000000000000000..54819dcbcb625f5c96040e61af46f84e3a86aa93 --- /dev/null +++ b/source/designs/files/rkt/005315.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709f735c15bca2ba4bc38788f9302939291569a30203b50f1aef9186e3cbee90 +size 98385 diff --git a/source/designs/files/rkt/005316.rkt b/source/designs/files/rkt/005316.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7b79fe5acc1d4ac4b8f038a27e2a34a350086c8e --- /dev/null +++ b/source/designs/files/rkt/005316.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b553573ad7d5da469acedb139893573513ea5188cd8b63b5387a5a8f785ffdd +size 51765 diff --git a/source/designs/files/rkt/005317.rkt b/source/designs/files/rkt/005317.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0e6dd81c49dea123dc7626268c3abf4e9d8bf449 --- /dev/null +++ b/source/designs/files/rkt/005317.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8d7f844d3df2f2504849cd0cd7c8c2ccfabacd0da58574cc1054749c5cf87d +size 45466 diff --git a/source/designs/files/rkt/005318.rkt b/source/designs/files/rkt/005318.rkt new file mode 100644 index 0000000000000000000000000000000000000000..84b28c928ffe3f3d21278d1a24c5c74ce4b87e76 --- /dev/null +++ b/source/designs/files/rkt/005318.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff96a53d1423907040dbd18261c4ef048106e21b013c8a429a4f19c0218c08e +size 15851 diff --git a/source/designs/files/rkt/005319.rkt b/source/designs/files/rkt/005319.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9fbdb8cea7a91941cb6d55e25c9d643fa7c19e47 --- /dev/null +++ b/source/designs/files/rkt/005319.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81ff1e669bda5ea2b57260941863a186e1903708d5a9474faba9f1ee8700f88 +size 88055 diff --git a/source/designs/files/rkt/005320.rkt b/source/designs/files/rkt/005320.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2bfc598346fbac71301be0b789ba77aa3343282c --- /dev/null +++ b/source/designs/files/rkt/005320.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d185e11f6dda38f10d1f1dbabb5a9e931810ba1e4f5042cc3a075af7f374be +size 32577 diff --git a/source/designs/files/rkt/005321.rkt b/source/designs/files/rkt/005321.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c54f01258c1842a35283a54b1dcce0a82e5be06b --- /dev/null +++ b/source/designs/files/rkt/005321.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4742670f8bfea0e9c85a50d1c1d7da99d535bebd55452f57d500c4f8a927ce0 +size 36663 diff --git a/source/designs/files/rkt/005322.rkt b/source/designs/files/rkt/005322.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ddab73db746d540b10dbf0bef63cbff40d18cbe5 --- /dev/null +++ b/source/designs/files/rkt/005322.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:096fbff8046812cfc189fa0678cb7eabf73bcf46a28d891a09cefdefebf136b3 +size 32780 diff --git a/source/designs/files/rkt/005323.rkt b/source/designs/files/rkt/005323.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e8a53b70bdfe1894e357cfe51059d90979e3b5d5 --- /dev/null +++ b/source/designs/files/rkt/005323.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd7b34660a6efac2ed7bdc1a45187a12231d11b46d7466b94161ab238c33690 +size 32874 diff --git a/source/designs/files/rkt/005324.rkt b/source/designs/files/rkt/005324.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d5b2c711ddab6c9712a263169bce152895b3edf4 --- /dev/null +++ b/source/designs/files/rkt/005324.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5ca7ba9a74908364debbe469db2b57acbe20886dc776fee0025ed30405a397 +size 31262 diff --git a/source/designs/files/rkt/005325.rkt b/source/designs/files/rkt/005325.rkt new file mode 100644 index 0000000000000000000000000000000000000000..353cf6bc93ab5529b90e7a21d677f1349ca8d342 --- /dev/null +++ b/source/designs/files/rkt/005325.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a60b85779cef8a94f547859c0cdceb7fca2f7d9ccb38d2a7a0ca755962f6f83 +size 156647 diff --git a/source/designs/files/rkt/005326.rkt b/source/designs/files/rkt/005326.rkt new file mode 100644 index 0000000000000000000000000000000000000000..577a2f61e50a584c99a1c6c42a4d6f77d65b406e --- /dev/null +++ b/source/designs/files/rkt/005326.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac6c001f19b9c03722bb093958bd7c2e4924c7f8d86a8b5bacfcea1fa78fa69 +size 60757 diff --git a/source/designs/files/rkt/005327.rkt b/source/designs/files/rkt/005327.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fe23a36d08fa7aba27bd054a71dd6c902e607967 --- /dev/null +++ b/source/designs/files/rkt/005327.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd23646f734d636791a0cf4ea31dd15ae165151405ac34bc609a3e6c9df79a0 +size 20879 diff --git a/source/designs/files/rkt/005328.rkt b/source/designs/files/rkt/005328.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8d5a868fc58c856f0b2c64620c11d30e19111ea0 --- /dev/null +++ b/source/designs/files/rkt/005328.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d94bfbbe9644fb0b89589a13c9be7189279c42ccc41b3e315cd6c3c21aad19 +size 57208 diff --git a/source/designs/files/rkt/005329.rkt b/source/designs/files/rkt/005329.rkt new file mode 100644 index 0000000000000000000000000000000000000000..012148a51d73904f6cc66003f28bca9752631470 --- /dev/null +++ b/source/designs/files/rkt/005329.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278fa9ec3effd4425bcae65d2589a34ac6ec44feb78c70d02e3068fefa44cad4 +size 32819 diff --git a/source/designs/files/rkt/005330.rkt b/source/designs/files/rkt/005330.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6f299cba85cce30bfa968588dd2a71bf12fab59d --- /dev/null +++ b/source/designs/files/rkt/005330.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc28ad3e19408ff206d7ec0088950860173675de2ed26ffc4d37977c638e9db +size 26866 diff --git a/source/designs/files/rkt/005331.rkt b/source/designs/files/rkt/005331.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9b2a47f09aa8580b8db95388f72f8d235223f967 --- /dev/null +++ b/source/designs/files/rkt/005331.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d07d5ad813147ad2168920613572fc52429abc3393aac711c739130d0afa9d2e +size 37037 diff --git a/source/designs/files/rkt/005332.rkt b/source/designs/files/rkt/005332.rkt new file mode 100644 index 0000000000000000000000000000000000000000..59ae1e3fe82c5ad8b21840dbf03fddcc6914a4d1 --- /dev/null +++ b/source/designs/files/rkt/005332.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb9ae971905edef5f928c17e9c7715ad65aa088a551877f2c6d0387128f88b57 +size 53631 diff --git a/source/designs/files/rkt/005333.rkt b/source/designs/files/rkt/005333.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ae1dd8f7963f16fdff519467787049635a1cab1d --- /dev/null +++ b/source/designs/files/rkt/005333.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f5ac8caaaa6fd2d3642af89a7749f24b37650a1314ae14903b2ff3f3fae809 +size 66672 diff --git a/source/designs/files/rkt/005334.rkt b/source/designs/files/rkt/005334.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cd84f3bccc501511b981fba8c9fac7ef450ef70d --- /dev/null +++ b/source/designs/files/rkt/005334.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e7052ac3a3d247cba5f10cbede5af15d4ba8b5e4a06893a15c272d66fadfed +size 55623 diff --git a/source/designs/files/rkt/005335.rkt b/source/designs/files/rkt/005335.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3134726544d4aeb7712bf8a25cdca43622208cb3 --- /dev/null +++ b/source/designs/files/rkt/005335.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f00b9a3cb82bfebb47f48c7e2d3158a50900c4a5821aa05f327ea2400bfc74 +size 49026 diff --git a/source/designs/files/rkt/005336.rkt b/source/designs/files/rkt/005336.rkt new file mode 100644 index 0000000000000000000000000000000000000000..70f1c14068f95aaad8ebf38c4bae5b45653ed266 --- /dev/null +++ b/source/designs/files/rkt/005336.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb674f3a9c91d5183c6edccf3ba5cad1cb46aed2e591a6501f8965e5027ce798 +size 29478 diff --git a/source/designs/files/rkt/005337.rkt b/source/designs/files/rkt/005337.rkt new file mode 100644 index 0000000000000000000000000000000000000000..030bcf86f07e1086ec67c83db3c94158dca14703 --- /dev/null +++ b/source/designs/files/rkt/005337.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686fa5edb6946d9003fe174f450ba72cebb37630e6bba39ff3a3c0da49cc6794 +size 90851 diff --git a/source/designs/files/rkt/005338.rkt b/source/designs/files/rkt/005338.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e9589ccfc1854e440a5b80bf3cfeacba95a84937 --- /dev/null +++ b/source/designs/files/rkt/005338.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:824a0a99d22dc0bb8bdbc5c8983fec047e8cbe501f516bec1c7170ccd685aeb5 +size 39026 diff --git a/source/designs/files/rkt/005339.rkt b/source/designs/files/rkt/005339.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a8c58cc6cd69d8a03931f470e32aec059d09a629 --- /dev/null +++ b/source/designs/files/rkt/005339.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf292c6008df9d01fa815c92cc9e16e92407fcc5b5fab2aed83c423f4a266068 +size 57567 diff --git a/source/designs/files/rkt/005340.rkt b/source/designs/files/rkt/005340.rkt new file mode 100644 index 0000000000000000000000000000000000000000..60371c5230b1943210daea939bd37ab29a6d7197 --- /dev/null +++ b/source/designs/files/rkt/005340.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622ddf80057cebab0a424bd17ab5b0b026dea6e441ddf2db9691ebf44f6f2820 +size 56972 diff --git a/source/designs/files/rkt/005341.rkt b/source/designs/files/rkt/005341.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d2d5e4a6ec96030a6fd0c45dec3969c9075f270e --- /dev/null +++ b/source/designs/files/rkt/005341.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e78fd2fb5085887e9dc080b3135928cc0f9dc2c1b3bc871fa133af6485cc5d +size 113524 diff --git a/source/designs/files/rkt/005342.rkt b/source/designs/files/rkt/005342.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6f105643959453368ab71186f7822a4a9e2eef5e --- /dev/null +++ b/source/designs/files/rkt/005342.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c93d6add3f21a16717a4e0f847bd2017128c23fdac830c76d3848aa82df327a +size 62866 diff --git a/source/designs/files/rkt/005343.rkt b/source/designs/files/rkt/005343.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6c7241fb64028514d1f75183b0758c98f573023f --- /dev/null +++ b/source/designs/files/rkt/005343.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6d4fa0c649ba418b791d8ab7a25d2f9fe57fce02ef57d6a689a6269fcf30112 +size 50030 diff --git a/source/designs/files/rkt/005344.rkt b/source/designs/files/rkt/005344.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d0e8bf39a98ef6ce8fe07ae805b54ab8e8d2e9ef --- /dev/null +++ b/source/designs/files/rkt/005344.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9dd923b8f5c998aac5c105f33db36a3eb268b1d4281ab391150f934ff99c0df +size 37041 diff --git a/source/designs/files/rkt/005345.rkt b/source/designs/files/rkt/005345.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5580ded95e656b27c92ecc3ef9bc9e7c9aaf41c6 --- /dev/null +++ b/source/designs/files/rkt/005345.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6584c013cd0b8f42a5a3cde071945281557a2c1145dc9620cb10a556e32f3098 +size 44061 diff --git a/source/designs/files/rkt/005346.rkt b/source/designs/files/rkt/005346.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2aed2761eabe3af105ff0967459a15f8748816f2 --- /dev/null +++ b/source/designs/files/rkt/005346.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c584cc1db440dcf4230ab7fd118fc6a064652b8b4144f8917912772254be6bb2 +size 34280 diff --git a/source/designs/files/rkt/005347.rkt b/source/designs/files/rkt/005347.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d9bcf5498635f1fdc259bb876fa4ee97853799eb --- /dev/null +++ b/source/designs/files/rkt/005347.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0ad5333cc355e160aa217d134618492e88199873b1d07c3411159d8ccedfa1 +size 65054 diff --git a/source/designs/files/rkt/005348.rkt b/source/designs/files/rkt/005348.rkt new file mode 100644 index 0000000000000000000000000000000000000000..897fc6740999b3ee31c6ba76c70ad78be5bb9ed2 --- /dev/null +++ b/source/designs/files/rkt/005348.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849dfc3b6de7a3ba1f9ab6f0b4c6845b92a583cd2257c65b6695615c8dd54f11 +size 82044 diff --git a/source/designs/files/rkt/005349.rkt b/source/designs/files/rkt/005349.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c3a87e6f53dfaa011e261d9117e31ca66d896e9f --- /dev/null +++ b/source/designs/files/rkt/005349.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4fd1c7b8347bf38335df79a20e64cb4145b04adbb8b98c9bb060aec8df8f28 +size 18204 diff --git a/source/designs/files/rkt/005350.rkt b/source/designs/files/rkt/005350.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2dac12953a284c6918179ba6cc6fd942f6b8eb49 --- /dev/null +++ b/source/designs/files/rkt/005350.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d76acfb09ce5eb54ce585ddfae82ec8e4f63446abd896b6f372a4d1cdebdef93 +size 98854 diff --git a/source/designs/files/rkt/005351.rkt b/source/designs/files/rkt/005351.rkt new file mode 100644 index 0000000000000000000000000000000000000000..64891e8bde5d260991e361642d2034d3924e083d --- /dev/null +++ b/source/designs/files/rkt/005351.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:834bce61785bde5cb4f8906de89f572c45af13e960eac00b7033730099c82e3c +size 60087 diff --git a/source/designs/files/rkt/005352.rkt b/source/designs/files/rkt/005352.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7e4add9793aa5a76cad15db5f318f12fd97919e2 --- /dev/null +++ b/source/designs/files/rkt/005352.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd65f9ceb50a71e126a970ff1f64379c8142d45bbabc3282c2c80ffd26cfcd6 +size 36868 diff --git a/source/designs/files/rkt/005353.rkt b/source/designs/files/rkt/005353.rkt new file mode 100644 index 0000000000000000000000000000000000000000..30d4e2e72f62ca792e3a0f462353af50c584cef7 --- /dev/null +++ b/source/designs/files/rkt/005353.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57237141d7fbaa5a821be4a8f0b4f9224f2b2a74af3bf3d52947b4734914ba1 +size 31347 diff --git a/source/designs/files/rkt/005354.rkt b/source/designs/files/rkt/005354.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ee8d60d6b2ddff02570e24dca4a1aa66aa6a928b --- /dev/null +++ b/source/designs/files/rkt/005354.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ece6299797c46dc839b522f141718b6ae42ffef1cb5fb9a173d27ee7ecd8c4 +size 34468 diff --git a/source/designs/files/rkt/005355.rkt b/source/designs/files/rkt/005355.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0c2a0c3205cf25631b2f82c36e6450fdbb24ae98 --- /dev/null +++ b/source/designs/files/rkt/005355.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482cffcd5fe3efc5c84ff7fea7b2a2b602f887676d942cea705f4197495009bb +size 26317 diff --git a/source/designs/files/rkt/005356.rkt b/source/designs/files/rkt/005356.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f41d0101731aec6ac7cf8de2f072f6048770e9bf --- /dev/null +++ b/source/designs/files/rkt/005356.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db59f074b08b2ad496cc9969744a7119e1fc23fad5271b0ac3f5e3eccbfa9140 +size 39218 diff --git a/source/designs/files/rkt/005357.rkt b/source/designs/files/rkt/005357.rkt new file mode 100644 index 0000000000000000000000000000000000000000..96e17891f52d36d3a50f8a894f3f00a74564cd09 --- /dev/null +++ b/source/designs/files/rkt/005357.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6f8f40ed290d5453d4779fd234563b62533128c29cf80c312e1bef6444da1d +size 24581 diff --git a/source/designs/files/rkt/005358.rkt b/source/designs/files/rkt/005358.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a0bdbebc823ea1c561614d4bfa9cef2c03f5acbe --- /dev/null +++ b/source/designs/files/rkt/005358.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358015bb3bc4c01d6cb5b513f6c41dfaec78bb87721e1e558ecfc78c2e434752 +size 65053 diff --git a/source/designs/files/rkt/005359.rkt b/source/designs/files/rkt/005359.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6362877db115862eb2c24fb41542838ac2365e1b --- /dev/null +++ b/source/designs/files/rkt/005359.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49cc311dad618370dc18a78d8c1b710e39ac241e36f03d0f34b703c2bdbbc685 +size 41877 diff --git a/source/designs/files/rkt/005360.rkt b/source/designs/files/rkt/005360.rkt new file mode 100644 index 0000000000000000000000000000000000000000..867315b32641a50255355668e33c583c9ee6da76 --- /dev/null +++ b/source/designs/files/rkt/005360.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c693244602d00d2d073b6f52d80d783e6f291d9e70e7347f2cbf9a93ea28fb46 +size 53137 diff --git a/source/designs/files/rkt/005361.rkt b/source/designs/files/rkt/005361.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6dca1774dd48666deef5ef256a35fa6f44c3815a --- /dev/null +++ b/source/designs/files/rkt/005361.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5e24c47489859aee0403811ac3b887e32d2d1204f7da23bebf8f1e24e9eac2 +size 53137 diff --git a/source/designs/files/rkt/005362.rkt b/source/designs/files/rkt/005362.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2fe66ea3384f1dfe5811959a4e39fd22aa7f90f3 --- /dev/null +++ b/source/designs/files/rkt/005362.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7846259f846567ed7e369b23178f466cb6db2c21339645782a783da8ede81f5e +size 53114 diff --git a/source/designs/files/rkt/005363.rkt b/source/designs/files/rkt/005363.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e89101132e84ee4477daf171eb4a239224898b7c --- /dev/null +++ b/source/designs/files/rkt/005363.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c2f7e328430307f3064541fe63e9bc554fea4789e066aa6e356c1c5d7b614c +size 53122 diff --git a/source/designs/files/rkt/005364.rkt b/source/designs/files/rkt/005364.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fb7d963224591e05ec91f3497f7428ca939e33bd --- /dev/null +++ b/source/designs/files/rkt/005364.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e40b088ce7935e31da85703d913032f5f335e4bb3d4a81d76ebbd23e47406cf2 +size 68553 diff --git a/source/designs/files/rkt/005365.rkt b/source/designs/files/rkt/005365.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e22a4fe247e0828a8f8ed5c49d1c36ba1e85d4ba --- /dev/null +++ b/source/designs/files/rkt/005365.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb35317843ab7c73da93aaacb2d59d1df948f847a74643ed403ea9d5c3a18dd +size 76465 diff --git a/source/designs/files/rkt/005366.rkt b/source/designs/files/rkt/005366.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1182f225e2d9e16f1ab9edd9423a7ce57d4640e2 --- /dev/null +++ b/source/designs/files/rkt/005366.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239c76bb706b2cad64226b32b213eff8ff682bc3ebd3cb8d75c3769e7b6e0778 +size 108043 diff --git a/source/designs/files/rkt/005367.rkt b/source/designs/files/rkt/005367.rkt new file mode 100644 index 0000000000000000000000000000000000000000..606ba8ef9dbe840024eee83b0b2bdbbda2cb3d5b --- /dev/null +++ b/source/designs/files/rkt/005367.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906e0addca0e0910f11df94638ed69abf1ce8739dc90f36492f2cf0d28b3c040 +size 31437 diff --git a/source/designs/files/rkt/005368.rkt b/source/designs/files/rkt/005368.rkt new file mode 100644 index 0000000000000000000000000000000000000000..94a9c7afa3e3820d74238c56726353f1edc38f14 --- /dev/null +++ b/source/designs/files/rkt/005368.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee0f959649641c0762f9549c41d3b5383417f277de183811b0be1ed08b75f24 +size 98993 diff --git a/source/designs/files/rkt/005369.rkt b/source/designs/files/rkt/005369.rkt new file mode 100644 index 0000000000000000000000000000000000000000..241549a15392503127b690b513303f9e4246fd69 --- /dev/null +++ b/source/designs/files/rkt/005369.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdf1b6e31c80806aef96f3b5cf41d4d88323d26473f6b679bcf87b73a2117541 +size 53119 diff --git a/source/designs/files/rkt/005370.rkt b/source/designs/files/rkt/005370.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6570c56e64162a3a743331b8ed57b5587aaf3236 --- /dev/null +++ b/source/designs/files/rkt/005370.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f40e145e4f5cdb962e5b80f3f67a277350e10edb9200d1ef66c24ce6fa9d63e +size 48771 diff --git a/source/designs/files/rkt/005371.rkt b/source/designs/files/rkt/005371.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0c2c2c4e824ae0813df7be5ea87dd3983719cab4 --- /dev/null +++ b/source/designs/files/rkt/005371.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6ad48633ce948c3f2d9b67c4c2cfe647e490d14473938fc7461ffe94085b68 +size 29036 diff --git a/source/designs/files/rkt/005372.rkt b/source/designs/files/rkt/005372.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b8a6c98004a2e5c6673c82e79eaca94fc5cdc30d --- /dev/null +++ b/source/designs/files/rkt/005372.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6861c288f574581ddb3dddc3307a0f946c6ff47df9639dd10a930ec14f8ebbb +size 135910 diff --git a/source/designs/files/rkt/005373.rkt b/source/designs/files/rkt/005373.rkt new file mode 100644 index 0000000000000000000000000000000000000000..11b7cc253f11fd45bed2284c35f67b1182a6f916 --- /dev/null +++ b/source/designs/files/rkt/005373.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85a0952720cbaeb199483acf481a788a42a994484a4b01af215b143a81041086 +size 56119 diff --git a/source/designs/files/rkt/005374.rkt b/source/designs/files/rkt/005374.rkt new file mode 100644 index 0000000000000000000000000000000000000000..45d747fb7bfc9cbc7c3cf9e4586542c74ac1cd50 --- /dev/null +++ b/source/designs/files/rkt/005374.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08cdbbeb2ce3aadb4ecbb9b332d617f20dc060cbce0c20c923e7b8bba1d98b13 +size 39793 diff --git a/source/designs/files/rkt/005375.rkt b/source/designs/files/rkt/005375.rkt new file mode 100644 index 0000000000000000000000000000000000000000..53ce47da1613fb7165be45a2f4e9b9f4af9283ff --- /dev/null +++ b/source/designs/files/rkt/005375.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fb29dbee756d51169a70fd0f5ab58cef117bcfa21315382d28af23dc61b4a0 +size 32037 diff --git a/source/designs/files/rkt/005376.rkt b/source/designs/files/rkt/005376.rkt new file mode 100644 index 0000000000000000000000000000000000000000..51dfb204cd8c3625d5918e5945580b46b23ca18c --- /dev/null +++ b/source/designs/files/rkt/005376.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370b945e200f66d83bbfcd3e2418489e5055d838f87c92e4b38a61656b1997a4 +size 40568 diff --git a/source/designs/files/rkt/005377.rkt b/source/designs/files/rkt/005377.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0023335382c29c6b3538eeac0f81f571965cdf98 --- /dev/null +++ b/source/designs/files/rkt/005377.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35a7aa3a75d8d9be91ddc7b7ca1fd231646a26b4c5a043f92a57f46e5ecc977 +size 54834 diff --git a/source/designs/files/rkt/005378.rkt b/source/designs/files/rkt/005378.rkt new file mode 100644 index 0000000000000000000000000000000000000000..90147e57620ed6265e3b0d5d24dc816a7e605959 --- /dev/null +++ b/source/designs/files/rkt/005378.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214a5f1002b8f0e827ea7d507e6d63af780b88cd82472eacf3fec17da454b286 +size 39280 diff --git a/source/designs/files/rkt/005379.rkt b/source/designs/files/rkt/005379.rkt new file mode 100644 index 0000000000000000000000000000000000000000..369bd3da85221c63442d276b86cf7c3410bef5c9 --- /dev/null +++ b/source/designs/files/rkt/005379.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c5867684cbd9f5197e7cd73e6234decc796dba485fd258aef1826b7b25cce9 +size 53097 diff --git a/source/designs/files/rkt/005380.rkt b/source/designs/files/rkt/005380.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1e2b428dc032ea7cc425b2610349961cff47b86e --- /dev/null +++ b/source/designs/files/rkt/005380.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b62ae2236736c126926abbc2c58151c6a024b7e672f877a8275597851f3bf1 +size 27145 diff --git a/source/designs/files/rkt/005381.rkt b/source/designs/files/rkt/005381.rkt new file mode 100644 index 0000000000000000000000000000000000000000..12e512e38003893b142c173204dd5acda79fe5c6 --- /dev/null +++ b/source/designs/files/rkt/005381.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248e8dee48da8a743229fa40784864b0aa6325bb12ea563a963ec3e138668e0a +size 29525 diff --git a/source/designs/files/rkt/005382.rkt b/source/designs/files/rkt/005382.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c884b37924fc320a22eb2db31dfb687a449de185 --- /dev/null +++ b/source/designs/files/rkt/005382.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b883cd7b89dafe84266662bfe1dc9a033dc0dca6bc6311f9f26de516a4632ef4 +size 52031 diff --git a/source/designs/files/rkt/005383.rkt b/source/designs/files/rkt/005383.rkt new file mode 100644 index 0000000000000000000000000000000000000000..884c56aab5dc69bf9e14a04388e9650155195e29 --- /dev/null +++ b/source/designs/files/rkt/005383.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6055e389412cef33b52a66be80a744daaacb797abde13662a987b82d39d3cb +size 34263 diff --git a/source/designs/files/rkt/005384.rkt b/source/designs/files/rkt/005384.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ec0653275ad83ae5b533c2031778563c77f1601a --- /dev/null +++ b/source/designs/files/rkt/005384.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18f7df211a0337f43a5ad12c653af96b633f42d5b536df52989dccbfa1a7d60b +size 25936 diff --git a/source/designs/files/rkt/005385.rkt b/source/designs/files/rkt/005385.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eb50586539d9283ccd5e454710548d84f7df5e71 --- /dev/null +++ b/source/designs/files/rkt/005385.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8523e78096e0a5f548b7fb06b27159e262ba4d75c99d582d0c06979071835e4 +size 55659 diff --git a/source/designs/files/rkt/005386.rkt b/source/designs/files/rkt/005386.rkt new file mode 100644 index 0000000000000000000000000000000000000000..852ddbe245aee6c0d7b48685211c64246f31b734 --- /dev/null +++ b/source/designs/files/rkt/005386.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552e071c7ec87a134e18bdceb00c184924567ade7a9c432e0886b2217b5577ed +size 31988 diff --git a/source/designs/files/rkt/005387.rkt b/source/designs/files/rkt/005387.rkt new file mode 100644 index 0000000000000000000000000000000000000000..100495eaa5a6a127111d397175f36ed6f082227a --- /dev/null +++ b/source/designs/files/rkt/005387.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a92e79d512314143241506468bfe7581b385dc4e41de644d773655213338f8 +size 27226 diff --git a/source/designs/files/rkt/005388.rkt b/source/designs/files/rkt/005388.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0931ed4c24bdca9c2e45f63a34f147baf167a604 --- /dev/null +++ b/source/designs/files/rkt/005388.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac493a425d57c0914cb255b90811b2622c51fb203a512e38c8b891550f6f09b2 +size 15618 diff --git a/source/designs/files/rkt/005389.rkt b/source/designs/files/rkt/005389.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fef376be7e05c147dd928c4752508edb0020c9fd --- /dev/null +++ b/source/designs/files/rkt/005389.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88828b955c052bc874e3c44645ac7e3c59f6263abe95020b55d8fc51bebaca24 +size 52509 diff --git a/source/designs/files/rkt/005390.rkt b/source/designs/files/rkt/005390.rkt new file mode 100644 index 0000000000000000000000000000000000000000..33f9a545563e15b9a051fa449325be30c9c488a5 --- /dev/null +++ b/source/designs/files/rkt/005390.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4705010e3d1376ae39d60223245f8500c74d264085b8e714775c9204d827b3 +size 25594 diff --git a/source/designs/files/rkt/005391.rkt b/source/designs/files/rkt/005391.rkt new file mode 100644 index 0000000000000000000000000000000000000000..98304973fdd3d47bfd89a0883b8776ca7bb4465d --- /dev/null +++ b/source/designs/files/rkt/005391.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945912d36ddd595d94cdefb733d5bbaa5a3beea054f681cf3ae4de670131c105 +size 40340 diff --git a/source/designs/files/rkt/005392.rkt b/source/designs/files/rkt/005392.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2e3afe0f5deb5ca8d5abe84de8f0b35f2b62bd32 --- /dev/null +++ b/source/designs/files/rkt/005392.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035ab33e727ba7f9744a28eedcfc2342b674ffd0546806c4820c089b2d4770ca +size 45574 diff --git a/source/designs/files/rkt/005393.rkt b/source/designs/files/rkt/005393.rkt new file mode 100644 index 0000000000000000000000000000000000000000..70c8dbff288625d4e5a340cec8746b8958acab24 --- /dev/null +++ b/source/designs/files/rkt/005393.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f032fea78f622eab493bd3ab71eaedb422b7f6dac9fc612966a0130a41327d7a +size 45953 diff --git a/source/designs/files/rkt/005394.rkt b/source/designs/files/rkt/005394.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b48a9cff545643928acd138db36242e9f6ff7fa1 --- /dev/null +++ b/source/designs/files/rkt/005394.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff015814bdbda3acbf3666d09aac2c999c9ad8cb011e1c1d137ca8bdf9382a36 +size 72860 diff --git a/source/designs/files/rkt/005395.rkt b/source/designs/files/rkt/005395.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9e939664299b4dcb957229dc8af853b337c3723d --- /dev/null +++ b/source/designs/files/rkt/005395.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f4e4ceebb47421b10788084910a16a905a92319d8392ce6fcfd82722a61764 +size 23080 diff --git a/source/designs/files/rkt/005396.rkt b/source/designs/files/rkt/005396.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a16d4afa3f6f80e7e054b4e4cfd49ff36822d15c --- /dev/null +++ b/source/designs/files/rkt/005396.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3fcf2e0c3c4d1f3f730018d1374de7202b5626f02d13e1fa5b164624550680 +size 70803 diff --git a/source/designs/files/rkt/005397.rkt b/source/designs/files/rkt/005397.rkt new file mode 100644 index 0000000000000000000000000000000000000000..792cdad737877076697f2b3b1788e545aec3aaff --- /dev/null +++ b/source/designs/files/rkt/005397.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e76fa03da719fbf27b3bac68771d6362f7d2286e3db61a781f4e92ba0044a48 +size 50944 diff --git a/source/designs/files/rkt/005398.rkt b/source/designs/files/rkt/005398.rkt new file mode 100644 index 0000000000000000000000000000000000000000..271802005b881cbebd04b73f8434b1cf909dedd8 --- /dev/null +++ b/source/designs/files/rkt/005398.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8fe41b634621bd88958f59d59329415f0ad8844e2394c28c9b974615a330a4 +size 59489 diff --git a/source/designs/files/rkt/005399.rkt b/source/designs/files/rkt/005399.rkt new file mode 100644 index 0000000000000000000000000000000000000000..68eefb50332ed2d8e143439a28eab7a563d8c7e2 --- /dev/null +++ b/source/designs/files/rkt/005399.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bb57f208a6e960eea92ef276fe1300ba0cf7e26cf9a3cc68bd23b9b8989bd4a +size 29159 diff --git a/source/designs/files/rkt/005400.rkt b/source/designs/files/rkt/005400.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ae775726bbf4e3713467cdaf11f7e0fd614205c6 --- /dev/null +++ b/source/designs/files/rkt/005400.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec8087cdcff2e4444a982a1486de4143dfde37a74f1c7a6d6992ebd938d8bcba +size 30178 diff --git a/source/designs/files/rkt/005401.rkt b/source/designs/files/rkt/005401.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ae57f964733dff1b990d32f174f82a7d94415fc5 --- /dev/null +++ b/source/designs/files/rkt/005401.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccf98ea1ae0bdf9d8c0a1f27db8e5cdf50df392ba3a50f51a19b6f4f213c6590 +size 120133 diff --git a/source/designs/files/rkt/005402.rkt b/source/designs/files/rkt/005402.rkt new file mode 100644 index 0000000000000000000000000000000000000000..03836045224be3c087eb0c6751f5aa971a6d6644 --- /dev/null +++ b/source/designs/files/rkt/005402.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36eda5c4a210602152be9f5b11cffbb1eb4f44a042e562c36b583d9cb278bd01 +size 33033 diff --git a/source/designs/files/rkt/005403.rkt b/source/designs/files/rkt/005403.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f71b1ecc7856f5b58d8e24c91a34f548cb6fc49a --- /dev/null +++ b/source/designs/files/rkt/005403.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bdea8a9fa8f7bedaa454d923e79f7a33c79e9d0789f384b719ce3041ef9779d +size 61076 diff --git a/source/designs/files/rkt/005404.rkt b/source/designs/files/rkt/005404.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e3f716d458f36375b9b588c5c926fca4fb69eaa6 --- /dev/null +++ b/source/designs/files/rkt/005404.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c665f85de0a75e36e0e895a58206c258d607bc4d8283c410de297da687a98a58 +size 44296 diff --git a/source/designs/files/rkt/005405.rkt b/source/designs/files/rkt/005405.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2c6c20d629f0fcfc67e9048481cfd536e8b187d5 --- /dev/null +++ b/source/designs/files/rkt/005405.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800f89735d0c0ac127d0e07d5d1f402a0e371c7d74adbaa4dba33e79594febe8 +size 62509 diff --git a/source/designs/files/rkt/005406.rkt b/source/designs/files/rkt/005406.rkt new file mode 100644 index 0000000000000000000000000000000000000000..44df833d4a5429e87d06c86fcea754fa3bacd79b --- /dev/null +++ b/source/designs/files/rkt/005406.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4673757e6b3e34e921fdea36e0d7251d517ec8390ffb4ad28360e9f08018c0 +size 41330 diff --git a/source/designs/files/rkt/005407.rkt b/source/designs/files/rkt/005407.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9144b0e3516f698224b07cdd5116f25d5500e10b --- /dev/null +++ b/source/designs/files/rkt/005407.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd963d752c63f04a976a7f7bf65159d79f5fd055fb726d1e7071ad8c540fba1c +size 55867 diff --git a/source/designs/files/rkt/005408.rkt b/source/designs/files/rkt/005408.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ae3150bab6a4c8cf5349fde0cf6a20e1232eb095 --- /dev/null +++ b/source/designs/files/rkt/005408.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1bc51eff30bc98ccf6fbbd553a7eb6f111adf1f1cdcaf50ac81379f6c7b854 +size 36466 diff --git a/source/designs/files/rkt/005409.rkt b/source/designs/files/rkt/005409.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5c9f8cc61ed944d97f05ba7cbf05905a043e8bed --- /dev/null +++ b/source/designs/files/rkt/005409.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b09d3882278b10e8da8cb91ed0fc4a92c9246f2485e88a06b2993f1f1482514 +size 14876 diff --git a/source/designs/files/rkt/005410.rkt b/source/designs/files/rkt/005410.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9b68444c763e96218814bd259f69e78dae4aaaa8 --- /dev/null +++ b/source/designs/files/rkt/005410.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c03d33f00ace08922b5c25924e52d41d470fc8991a3ceb35fbdcb3fbb17890f +size 53444 diff --git a/source/designs/files/rkt/005411.rkt b/source/designs/files/rkt/005411.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f972cd0b62d016fa53a03243f93c880f41d41beb --- /dev/null +++ b/source/designs/files/rkt/005411.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e1dd5674c4b525ed61cceab80c106f5c8e0c1c1d0b0694e7d17369a4964a5e +size 53917 diff --git a/source/designs/files/rkt/005412.rkt b/source/designs/files/rkt/005412.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ff2aad896bd2ac52d69da673fb62d306bdb63345 --- /dev/null +++ b/source/designs/files/rkt/005412.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5208c93be062eac721a2d6464ba11542916b55ecbfaccb8bfa76604d1f3a7709 +size 145604 diff --git a/source/designs/files/rkt/005413.rkt b/source/designs/files/rkt/005413.rkt new file mode 100644 index 0000000000000000000000000000000000000000..aef092e0085cf403431551d8959326a92217900a --- /dev/null +++ b/source/designs/files/rkt/005413.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a64728b9cd19642ddc5c746d030d2e02a0dcdcdafe9134cb27d51e83ad1c5e0 +size 68946 diff --git a/source/designs/files/rkt/005414.rkt b/source/designs/files/rkt/005414.rkt new file mode 100644 index 0000000000000000000000000000000000000000..57978604ff7f7ed9df77b9cc246af9a7d9154b11 --- /dev/null +++ b/source/designs/files/rkt/005414.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dff808a26ebc5f86e3bd7fcd8bb90fe40e22703ee4af77e26cb7069237ceb7ce +size 84320 diff --git a/source/designs/files/rkt/005415.rkt b/source/designs/files/rkt/005415.rkt new file mode 100644 index 0000000000000000000000000000000000000000..483e3df4d8717da5524fa0247086cf02cdfd3a3a --- /dev/null +++ b/source/designs/files/rkt/005415.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df58ace7ffd48e3e6aef6a4ca83ea49f003560462ce79656a32de296383f114 +size 19289 diff --git a/source/designs/files/rkt/005416.rkt b/source/designs/files/rkt/005416.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9f056ffeaf19425a1bc30c2556c2e3705714019d --- /dev/null +++ b/source/designs/files/rkt/005416.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651e586fd1adae985d57b0896d882ff2f47d5b6afdb4e1c548368c1e2bf94188 +size 32506 diff --git a/source/designs/files/rkt/005417.rkt b/source/designs/files/rkt/005417.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4df57a1c8fb9ac4f79a5f9137481d0b23c076c78 --- /dev/null +++ b/source/designs/files/rkt/005417.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5f4a0040449d0d496f743d5784ac188d1eebbef3b555d6ad4538c3dc77ad980 +size 82883 diff --git a/source/designs/files/rkt/005418.rkt b/source/designs/files/rkt/005418.rkt new file mode 100644 index 0000000000000000000000000000000000000000..15f03544d6b51276e1738bfefc08897c23529bce --- /dev/null +++ b/source/designs/files/rkt/005418.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74969e18f5873831928939beb6d7eb8f137ef60294fe149d0e1124243537676a +size 34043 diff --git a/source/designs/files/rkt/005419.rkt b/source/designs/files/rkt/005419.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a2ba81f9c313f14adbba7def5549e19ce6b8a628 --- /dev/null +++ b/source/designs/files/rkt/005419.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67b65a3c57745b914b09f755784ce3531ef7d751cabc23aa7fe4121d7afa7cf +size 30959 diff --git a/source/designs/files/rkt/005420.rkt b/source/designs/files/rkt/005420.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5ecf95823cdbf969dc6fc29d17424ef2db4515df --- /dev/null +++ b/source/designs/files/rkt/005420.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0703449a69ef10938896aaf0401fd8628bdb3d5b85f6bc2a8f2f3701dd1e52 +size 103106 diff --git a/source/designs/files/rkt/005421.rkt b/source/designs/files/rkt/005421.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1853378337990d8f6c749050bb60f4d66ac081eb --- /dev/null +++ b/source/designs/files/rkt/005421.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afae3a0e0bf48b8b70326651a6cd9b8ced5682278ce6310d2f09bdd12db57412 +size 40633 diff --git a/source/designs/files/rkt/005422.rkt b/source/designs/files/rkt/005422.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e02368e119ee214516f2344ae4a3cdc5ceac84d5 --- /dev/null +++ b/source/designs/files/rkt/005422.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:405e22a30fea75548f769d20f67710bd727dc9eaa55d8a50d45ded8002ab391a +size 48321 diff --git a/source/designs/files/rkt/005423.rkt b/source/designs/files/rkt/005423.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8376b3b8eab4c393f5b9e9aea4c6c16410063b29 --- /dev/null +++ b/source/designs/files/rkt/005423.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a32cab528954775497cac679a68239f8648e4109962c03d2bde70c64df77c85 +size 136175 diff --git a/source/designs/files/rkt/005424.rkt b/source/designs/files/rkt/005424.rkt new file mode 100644 index 0000000000000000000000000000000000000000..97da530ced45ca5b57cb75042c001acc4761aaf3 --- /dev/null +++ b/source/designs/files/rkt/005424.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f66a7bbb49af916f047787ac41ee3e0360f69c3b97d189ec8321078d4016c5 +size 66126 diff --git a/source/designs/files/rkt/005425.rkt b/source/designs/files/rkt/005425.rkt new file mode 100644 index 0000000000000000000000000000000000000000..49c187d1cdae1d865bdda6231e6600930f2506ac --- /dev/null +++ b/source/designs/files/rkt/005425.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e255baa16ef059e180f6224f174d438a503206c24c3e75cb5c30ad9b0b59126 +size 56970 diff --git a/source/designs/files/rkt/005426.rkt b/source/designs/files/rkt/005426.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cae7e1393d0c0d44121ef2cc737d6103f6d276ca --- /dev/null +++ b/source/designs/files/rkt/005426.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52073afa2da4bcfb1e104b26cc82d73b9b81bdb7f5b6c0e62e9a408a16df76e +size 35699 diff --git a/source/designs/files/rkt/005427.rkt b/source/designs/files/rkt/005427.rkt new file mode 100644 index 0000000000000000000000000000000000000000..49e4863d708185bb12ae30ba9804a9fc9092f0f0 --- /dev/null +++ b/source/designs/files/rkt/005427.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9bb566cbcb96840273177a35a5f4028ac32e0e6abe43d180baf8da283dad0a8 +size 50054 diff --git a/source/designs/files/rkt/005428.rkt b/source/designs/files/rkt/005428.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4e4ba604f39beba5c802cf6cb5d8cd51ac328cfe --- /dev/null +++ b/source/designs/files/rkt/005428.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d168262372f529b832271ab883902afd392c6e7011d9092daf25532be2fc37ca +size 19669 diff --git a/source/designs/files/rkt/005429.rkt b/source/designs/files/rkt/005429.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fec5cce53d9793df744b1e9361cefe2546913933 --- /dev/null +++ b/source/designs/files/rkt/005429.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65994233574c876769ce445b4523bb95b4dc85873468a6ab5315a19794465ac2 +size 25269 diff --git a/source/designs/files/rkt/005430.rkt b/source/designs/files/rkt/005430.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d7e8920b020e37ba0354295b6c5772479a803cde --- /dev/null +++ b/source/designs/files/rkt/005430.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6f87cd98f527bac1615c380afc8592c5717b8bc1d527e8e1cb8a888dee089b +size 37453 diff --git a/source/designs/files/rkt/005431.rkt b/source/designs/files/rkt/005431.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c61f588bdf78cb6331f6171dd268189bcdb73c2e --- /dev/null +++ b/source/designs/files/rkt/005431.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbc7f1a0a71a8cfe2c19c25b07bb2364feb8831f2879044b718ae735f1c62e0 +size 69169 diff --git a/source/designs/files/rkt/005432.rkt b/source/designs/files/rkt/005432.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9762c6afdf28c4a38a19a95ea82be4974c000c95 --- /dev/null +++ b/source/designs/files/rkt/005432.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7860f388ce03188612d0c2ce7224bbe598c98950dba6416091a95aa7366c323 +size 62671 diff --git a/source/designs/files/rkt/005433.rkt b/source/designs/files/rkt/005433.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5d845c28b0e9495d3164176e3278d4077d501409 --- /dev/null +++ b/source/designs/files/rkt/005433.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab5e7d3431da7756229f5566878b38f5f51682adbe35d1f4ef58ff4ba2d0f57 +size 22788 diff --git a/source/designs/files/rkt/005434.rkt b/source/designs/files/rkt/005434.rkt new file mode 100644 index 0000000000000000000000000000000000000000..28f9dec4ea86f00894e9a4c8ec6c95246d0c3dd4 --- /dev/null +++ b/source/designs/files/rkt/005434.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339a8d05f42ee8d6b56223a7eaafeae12defe5003316f99df47fe076e5d7ded2 +size 49631 diff --git a/source/designs/files/rkt/005435.rkt b/source/designs/files/rkt/005435.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3585045d0b0026972c5a2a32116c4ef695081813 --- /dev/null +++ b/source/designs/files/rkt/005435.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5e6352b801e00733b95ec623e5d82e7cf77e8c98984a0d59daedf05f254b6c +size 46192 diff --git a/source/designs/files/rkt/005436.rkt b/source/designs/files/rkt/005436.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d9e0a8113f354ec302769b5b97673d998e89d442 --- /dev/null +++ b/source/designs/files/rkt/005436.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d243f8c9bf90e073fe8101fb238428ed9c7619b21854e7813d3724d7cff642f +size 33444 diff --git a/source/designs/files/rkt/005437.rkt b/source/designs/files/rkt/005437.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5af513db730bb31e5fe7990fcce5380b138c8a9e --- /dev/null +++ b/source/designs/files/rkt/005437.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eda82b1167e9f6487d04638c1d10d726b38daa12f7f59c060b31623f0d123b0 +size 134425 diff --git a/source/designs/files/rkt/005438.rkt b/source/designs/files/rkt/005438.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a84084bbc503c565847a3c197dcd53b9cbb16f80 --- /dev/null +++ b/source/designs/files/rkt/005438.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91b8192702050ba5c4c89f5eaa81a437b55c609a6ba4f3c4181fcc1c9cbe806 +size 133186 diff --git a/source/designs/files/rkt/005439.rkt b/source/designs/files/rkt/005439.rkt new file mode 100644 index 0000000000000000000000000000000000000000..128830a97bab829b48bf9f05cf8c82a196d9f1a5 --- /dev/null +++ b/source/designs/files/rkt/005439.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97d4445bb03e58ce4102b990fc9f1ab2e6236021701f7b7b186eb02415145fe +size 47423 diff --git a/source/designs/files/rkt/005440.rkt b/source/designs/files/rkt/005440.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d306dd061bf1f936a2c1d05a5e2d559962985d51 --- /dev/null +++ b/source/designs/files/rkt/005440.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b262a5f7f8b68e192f33ced0cf75400f71d954d3b438a87e49b13f19ed9e5272 +size 69568 diff --git a/source/designs/files/rkt/005442.rkt b/source/designs/files/rkt/005442.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0278b062096099e54523f1c38f56afd6695882c5 --- /dev/null +++ b/source/designs/files/rkt/005442.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e37e97c2889458a7a2383484618607b3c6d73372ce9084c6251fe1901fcc56 +size 32521 diff --git a/source/designs/files/rkt/005443.rkt b/source/designs/files/rkt/005443.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cba998c05002512efd0aaf41230d845ebb0a8bc6 --- /dev/null +++ b/source/designs/files/rkt/005443.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9769a4b24eacc8fd69e34be71ff057fd54ac655a43748b567e35e88faed356 +size 112105 diff --git a/source/designs/files/rkt/005444.rkt b/source/designs/files/rkt/005444.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2f1115b2172c744d12e6cb7b83dc0051ed024953 --- /dev/null +++ b/source/designs/files/rkt/005444.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23b31f36306928b60605dfbfcfc0fb14de76cccbb72971412c9ea29188c4cd4a +size 33110 diff --git a/source/designs/files/rkt/005445.rkt b/source/designs/files/rkt/005445.rkt new file mode 100644 index 0000000000000000000000000000000000000000..268c40a745fdf6475869ede90260a911ae8cb660 --- /dev/null +++ b/source/designs/files/rkt/005445.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e502c8077bd53638c11eedd95590812d78fe3efb664c6d5c2da13cf2e8153a08 +size 45115 diff --git a/source/designs/files/rkt/005446.rkt b/source/designs/files/rkt/005446.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b4a112ea33918ee6e12c16ea7653a642d91dcca0 --- /dev/null +++ b/source/designs/files/rkt/005446.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106c54b2668491f438f588b8dc997f3feb02af9c2e0998cc57ffd505df4fceb0 +size 26392 diff --git a/source/designs/files/rkt/005447.rkt b/source/designs/files/rkt/005447.rkt new file mode 100644 index 0000000000000000000000000000000000000000..20708fe367c8879fbe4589ed7cdb25befe4de1c2 --- /dev/null +++ b/source/designs/files/rkt/005447.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a036afa07a5fac458fb58aa70dee761f4f22150a7f828632cd6158c2e15da7 +size 67191 diff --git a/source/designs/files/rkt/005448.rkt b/source/designs/files/rkt/005448.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fc7248a792fd0bd41a29a7fdf05473984810668e --- /dev/null +++ b/source/designs/files/rkt/005448.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a763ff0bce5a37bb3f2ac014437a0aff9264b369bea888836ce07865a7f5f3b8 +size 43437 diff --git a/source/designs/files/rkt/005449.rkt b/source/designs/files/rkt/005449.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ca48ee296c8906cfa9c2335cc23867507f20b29c --- /dev/null +++ b/source/designs/files/rkt/005449.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00f52344093940d80178ea6784de578ff80f22c1ba78463357d69d23f18a874d +size 68178 diff --git a/source/designs/files/rkt/005450.rkt b/source/designs/files/rkt/005450.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e04c7d3ffb05c8b5a0e1eb7ee9f4ac367af46483 --- /dev/null +++ b/source/designs/files/rkt/005450.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600bf7dc66a426e4eaac8d1a754033884a9c3b14547db7d28fc02e61651ca326 +size 88394 diff --git a/source/designs/files/rkt/005451.rkt b/source/designs/files/rkt/005451.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e315749bb8ff5632b57f0bd625e11ba3a58cc33e --- /dev/null +++ b/source/designs/files/rkt/005451.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0256264315528b36a79fed5a92763fcb4d88670b95a7c2d4c5d2c5994fdee6 +size 32619 diff --git a/source/designs/files/rkt/005452.rkt b/source/designs/files/rkt/005452.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9c3b33e0711b05aaab089c22a90598690648a0b6 --- /dev/null +++ b/source/designs/files/rkt/005452.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf5e903e28aac3b9f1ea6f58efa4aa4bb8f0eb6544da06f9ad35bcbb12ffade +size 48917 diff --git a/source/designs/files/rkt/005453.rkt b/source/designs/files/rkt/005453.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b3c91f187cfe79879c31ec6e2c78e8c545d84f8a --- /dev/null +++ b/source/designs/files/rkt/005453.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fb1d5a66fd7d9219d026ccef4fa147afeaa5c687811834c5b4534a6f5b1933 +size 136755 diff --git a/source/designs/files/rkt/005454.rkt b/source/designs/files/rkt/005454.rkt new file mode 100644 index 0000000000000000000000000000000000000000..df58c86fc9f90772bacd4986466825358667abe7 --- /dev/null +++ b/source/designs/files/rkt/005454.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba8f0e3e31cb1bdbe95f66f8b1d98a5ac7091c077355021993fb104cea954f3 +size 34354 diff --git a/source/designs/files/rkt/005455.rkt b/source/designs/files/rkt/005455.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2e8f0cd071198aac991ac9a1229c08a47c7ca3b8 --- /dev/null +++ b/source/designs/files/rkt/005455.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60832991f8526913811293ee78f738a34a126e609d712898783a2db1a3d7c9a0 +size 65311 diff --git a/source/designs/files/rkt/005456.rkt b/source/designs/files/rkt/005456.rkt new file mode 100644 index 0000000000000000000000000000000000000000..80c889909bc09121004749d472fc772470dbb218 --- /dev/null +++ b/source/designs/files/rkt/005456.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cb523cd85bb414fd31cdf26e9f05a26385b2fe382121ff81ca46af182b21df4 +size 56641 diff --git a/source/designs/files/rkt/005457.rkt b/source/designs/files/rkt/005457.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b350fbca0dc97288ad6a837a2635ca2ad8b02b5b --- /dev/null +++ b/source/designs/files/rkt/005457.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaed26c1a2c5444d0ac2f1819b32297aa8758b0f5a51a6ddac1a401330d0b6f8 +size 29552 diff --git a/source/designs/files/rkt/005458.rkt b/source/designs/files/rkt/005458.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b591fba7c12eb764719c81536d06ea75594b8dde --- /dev/null +++ b/source/designs/files/rkt/005458.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a91367989a262d61837da47a22ce79f780363afdab3a3767e784a7a18d98d6 +size 29334 diff --git a/source/designs/files/rkt/005459.rkt b/source/designs/files/rkt/005459.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c7fc2afde3aab68bb19659ffdece076585d8613f --- /dev/null +++ b/source/designs/files/rkt/005459.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10edefd5af5ce4069e5b1d0efc5c60376c5348d58c985d2d8a8ab3995210c437 +size 36764 diff --git a/source/designs/files/rkt/005460.rkt b/source/designs/files/rkt/005460.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ec0d8bc90da2520b31edcc14de5261794aae5e3b --- /dev/null +++ b/source/designs/files/rkt/005460.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27f2bb0e02182f0d9f93f844a3f7161475ab89a7343a954be04492fbfcbec4bd +size 63927 diff --git a/source/designs/files/rkt/005461.rkt b/source/designs/files/rkt/005461.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e1db0c3e8aa77b813ec5e9ec8bce9f6306af0a18 --- /dev/null +++ b/source/designs/files/rkt/005461.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ce2c030fb3969dad590eb4c9e58dd8bc7c11a063e33700e968f5f8edca8439 +size 79402 diff --git a/source/designs/files/rkt/005462.rkt b/source/designs/files/rkt/005462.rkt new file mode 100644 index 0000000000000000000000000000000000000000..be5604be1bd106471dc5052e13c6af5c6699234a --- /dev/null +++ b/source/designs/files/rkt/005462.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea058b1b276a495fe054ee08feddfabbe7a9440643379b7fe9505463c1f60cd5 +size 23111 diff --git a/source/designs/files/rkt/005463.rkt b/source/designs/files/rkt/005463.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d7dd60c2a8228656dda9a6dc021656f436461b0c --- /dev/null +++ b/source/designs/files/rkt/005463.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdf67f5e3afe7c432142dfaf673fe6d7541f9e4f5008ca8a28efe242fcd6f4cf +size 34518 diff --git a/source/designs/files/rkt/005464.rkt b/source/designs/files/rkt/005464.rkt new file mode 100644 index 0000000000000000000000000000000000000000..18ad8cd12b0c25401a68ac8fe6388b46db6d9b0f --- /dev/null +++ b/source/designs/files/rkt/005464.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7efc08a544ffca047fd61e70da2b60e5c1934b681009c778620fe106a540e981 +size 113765 diff --git a/source/designs/files/rkt/005465.rkt b/source/designs/files/rkt/005465.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6c23388779714e7b5eef597346454cb6ea2bc2cd --- /dev/null +++ b/source/designs/files/rkt/005465.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6623e2822db0260d118c20818d0767d13225029b47e666736a6ef54932481c9c +size 58317 diff --git a/source/designs/files/rkt/005466.rkt b/source/designs/files/rkt/005466.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8900b1b4c339498795e8212e4077fd014003593d --- /dev/null +++ b/source/designs/files/rkt/005466.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bfca710565f5f5277146c4a92ca0bcbbb395a8c69f09ab15413c63392c542e7 +size 93790 diff --git a/source/designs/files/rkt/005467.rkt b/source/designs/files/rkt/005467.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ccae8b327c059f4da1aa6b333bae12a118e1046d --- /dev/null +++ b/source/designs/files/rkt/005467.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2d6b46158e17eb53e6c97c40abf71be09712d25cc6a6d152b300df071d22df +size 31004 diff --git a/source/designs/files/rkt/005468.rkt b/source/designs/files/rkt/005468.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d51937893ec4bea0bf744a18dc9e3af5a60661a7 --- /dev/null +++ b/source/designs/files/rkt/005468.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7591e161a5ddb8eefa45cbe55ad47f3a2244d3ef0994b9f12195b6dc52ad18 +size 171392 diff --git a/source/designs/files/rkt/005469.rkt b/source/designs/files/rkt/005469.rkt new file mode 100644 index 0000000000000000000000000000000000000000..005aaff49dd55d824744395c8f87c43b89ba0bc5 --- /dev/null +++ b/source/designs/files/rkt/005469.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022f611ea7d5a289f91a7d8d2b54f38bf478a305bfc4f6837b1604317c69c61c +size 30878 diff --git a/source/designs/files/rkt/005470.rkt b/source/designs/files/rkt/005470.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5479182f65a7347a36f1820cc5a7615c5bc4bf24 --- /dev/null +++ b/source/designs/files/rkt/005470.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b7ae9b5286624770ca3ebbdacff8cbc034f7d3c9fd368f172e163635b54879 +size 66367 diff --git a/source/designs/files/rkt/005471.rkt b/source/designs/files/rkt/005471.rkt new file mode 100644 index 0000000000000000000000000000000000000000..01efe91effca56ebb304865b6d0500c0c6f8f0ec --- /dev/null +++ b/source/designs/files/rkt/005471.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b03d823d5e9398c6848b805a1d18209f26448a4d919fe193df9b290786c6d31 +size 15978 diff --git a/source/designs/files/rkt/005472.rkt b/source/designs/files/rkt/005472.rkt new file mode 100644 index 0000000000000000000000000000000000000000..257001b964915aca81282fbcf54f42cba11a7a97 --- /dev/null +++ b/source/designs/files/rkt/005472.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:369f4e3f3bcdaf401dfbd1cc960343298cc1b1cad3ef8138bffd66a1d5b305e3 +size 32135 diff --git a/source/designs/files/rkt/005473.rkt b/source/designs/files/rkt/005473.rkt new file mode 100644 index 0000000000000000000000000000000000000000..30c6f51fca17cbe590ad90ade668ca054fbb46ba --- /dev/null +++ b/source/designs/files/rkt/005473.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1579d1ab1f4f5b2de948f199acf92255c23f45537884167b28b0fe5302b66d +size 45541 diff --git a/source/designs/files/rkt/005474.rkt b/source/designs/files/rkt/005474.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a76089b8d1e0a56384a1476e3fa453250e52a713 --- /dev/null +++ b/source/designs/files/rkt/005474.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4d92ed56be55a202caf12b6072eaec02320df7747d702a7732f878c15a8fe0 +size 57753 diff --git a/source/designs/files/rkt/005475.rkt b/source/designs/files/rkt/005475.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bb66c1a3eb578eb615af72db556edbb78550a820 --- /dev/null +++ b/source/designs/files/rkt/005475.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90775e1295251bf77fe45b9ad9dfc60c8f5433ce0c58cc646e3fab949b8ce03e +size 30242 diff --git a/source/designs/files/rkt/005476.rkt b/source/designs/files/rkt/005476.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3f10b68e69133d6fe266d95acfaf36adcc7b28e3 --- /dev/null +++ b/source/designs/files/rkt/005476.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86a2828e136c3d41257cf5686a20c42f40348b853672744d2ba44fa951fb223d +size 19113 diff --git a/source/designs/files/rkt/005477.rkt b/source/designs/files/rkt/005477.rkt new file mode 100644 index 0000000000000000000000000000000000000000..44cb84ab3d8c3d60b74d95f93348bd91847f4887 --- /dev/null +++ b/source/designs/files/rkt/005477.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4692f5600d434df3a98dbf45067f270747c02c9083326604e13b251632be0539 +size 65558 diff --git a/source/designs/files/rkt/005478.rkt b/source/designs/files/rkt/005478.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fc75cf89c6680432dda65b519f7e9f3fa78019b2 --- /dev/null +++ b/source/designs/files/rkt/005478.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b59d02384c1f7decea92c4379c0865d22900d47793e8f73d00295f346b3aaafe +size 79041 diff --git a/source/designs/files/rkt/005479.rkt b/source/designs/files/rkt/005479.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b5613d8539063209605ede0a5cf7ecc9181b0134 --- /dev/null +++ b/source/designs/files/rkt/005479.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e126a60e88e6fda0780f134e4ef28a28c9f59524e1eb9073aa4176f0121f7315 +size 85725 diff --git a/source/designs/files/rkt/005480.rkt b/source/designs/files/rkt/005480.rkt new file mode 100644 index 0000000000000000000000000000000000000000..91e14d4be2c19387bdb64e62d8c293652e3327d6 --- /dev/null +++ b/source/designs/files/rkt/005480.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:749a273e2473473af5cb0674d3f7c0232bb8213a251bb9bb222f06215ddf7957 +size 83832 diff --git a/source/designs/files/rkt/005482.rkt b/source/designs/files/rkt/005482.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7ef856efb1f8cbfe1d8dd00569d7f7c655fe2293 --- /dev/null +++ b/source/designs/files/rkt/005482.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd45aae065e87997235adf08562eb229172c773641de6ff38e164ba23418934 +size 38123 diff --git a/source/designs/files/rkt/005483.rkt b/source/designs/files/rkt/005483.rkt new file mode 100644 index 0000000000000000000000000000000000000000..212544a972ed2a80dd1253d96e8b235f607c21de --- /dev/null +++ b/source/designs/files/rkt/005483.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5c60cab97bb7f4f1b889d6e1fe2b78b68485b9927c742b6d9aec4223678a7d +size 27753 diff --git a/source/designs/files/rkt/005484.rkt b/source/designs/files/rkt/005484.rkt new file mode 100644 index 0000000000000000000000000000000000000000..427e9d7fa08a81d6f41b30a81a110a9275c995a1 --- /dev/null +++ b/source/designs/files/rkt/005484.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63aa248c3819ecf082f8a54781e0f0aae4349304059f9b222b778d04337f753f +size 15804 diff --git a/source/designs/files/rkt/005485.rkt b/source/designs/files/rkt/005485.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8563dab0d8b943bdfb34462c1cc7e0b0920e9db3 --- /dev/null +++ b/source/designs/files/rkt/005485.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70081ceef7539ef2086a30709e1c5451296c92d580004be333f70a3e0707c6f2 +size 53277 diff --git a/source/designs/files/rkt/005486.rkt b/source/designs/files/rkt/005486.rkt new file mode 100644 index 0000000000000000000000000000000000000000..61917e88848fd197491faca60715b4eec5c7dcd9 --- /dev/null +++ b/source/designs/files/rkt/005486.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a32da19d9bd56a9f1350aae59834356f3b5de72c74cb35f61641955ceeaad1 +size 50202 diff --git a/source/designs/files/rkt/005487.rkt b/source/designs/files/rkt/005487.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e72ed15b6604af89ea54d81ba443f862b9a85efa --- /dev/null +++ b/source/designs/files/rkt/005487.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bf727c5f80439a9b60fab0c81a8b8205085017dcfe3c4c140347d8fedb1637 +size 50359 diff --git a/source/designs/files/rkt/005488.rkt b/source/designs/files/rkt/005488.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0c33fa7e0e947fe3a107f4420b19b5aeead717a0 --- /dev/null +++ b/source/designs/files/rkt/005488.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4da95d10ac77c830742e25bb9629f77c840c3f50555ce0645aba51eaa0600ee +size 52825 diff --git a/source/designs/files/rkt/005489.rkt b/source/designs/files/rkt/005489.rkt new file mode 100644 index 0000000000000000000000000000000000000000..74000d260ac8805d37ac598a948f7015ea1570df --- /dev/null +++ b/source/designs/files/rkt/005489.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6775a33f699a055a38233252934e00f06e636fcde004fe7fecb6deaf5aa1b7f +size 68905 diff --git a/source/designs/files/rkt/005490.rkt b/source/designs/files/rkt/005490.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6d74b786adbf32d106810f14d006e3fa55ce542a --- /dev/null +++ b/source/designs/files/rkt/005490.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30e1e82ab345837a337c29d336d373897b0a966db91d51af712681d16261d92 +size 42788 diff --git a/source/designs/files/rkt/005491.rkt b/source/designs/files/rkt/005491.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8e465152140db48a25e43b5a46834f1abbcb1238 --- /dev/null +++ b/source/designs/files/rkt/005491.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fcfa1f16f543ad9d86fe84d6da44e6d3bccd047b0a70ff81f30285f076e165f +size 80168 diff --git a/source/designs/files/rkt/005492.rkt b/source/designs/files/rkt/005492.rkt new file mode 100644 index 0000000000000000000000000000000000000000..459cb0f8bcbe4ef0581dec313274318de4d493a3 --- /dev/null +++ b/source/designs/files/rkt/005492.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52cc0115f1ded366c30b5494ec32e2c2befc144e20fe8a064f860073603cf4da +size 42888 diff --git a/source/designs/files/rkt/005493.rkt b/source/designs/files/rkt/005493.rkt new file mode 100644 index 0000000000000000000000000000000000000000..638d660ae338c143c9cdb2c8ed8ec14777079da0 --- /dev/null +++ b/source/designs/files/rkt/005493.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fcbdbc307e93e6337e0c392ac5e71d1e0b3d5135760d1c18ee3918dc082225e +size 56763 diff --git a/source/designs/files/rkt/005494.rkt b/source/designs/files/rkt/005494.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4cda741511ee44293d878613473b139a53cd0619 --- /dev/null +++ b/source/designs/files/rkt/005494.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:869fbba1ec885e9aba33c51eabc18ae87b35b84af727d8ee5b1589f732028927 +size 18504 diff --git a/source/designs/files/rkt/005495.rkt b/source/designs/files/rkt/005495.rkt new file mode 100644 index 0000000000000000000000000000000000000000..015c29479a52cd56d28494fe44c5f9df5ba4c535 --- /dev/null +++ b/source/designs/files/rkt/005495.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d0950385b2006c407f2bb85d52c53beb4ee7aada6a69accb09feb720146e19 +size 27273 diff --git a/source/designs/files/rkt/005496.rkt b/source/designs/files/rkt/005496.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a37b639cb0345195164ddc2b4d3e9e6d388ddcb2 --- /dev/null +++ b/source/designs/files/rkt/005496.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702ee1f80e9656694596ee003f16e97ccc19269868193e5b16f752faf7e78c02 +size 46452 diff --git a/source/designs/files/rkt/005497.rkt b/source/designs/files/rkt/005497.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6ce4d115a89ab855f67df3e5ed31789d81fe263e --- /dev/null +++ b/source/designs/files/rkt/005497.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737613bf06d9a1bf9aac9ffd2801fc9a3e14f9ce34b345690774d949353d93f8 +size 75124 diff --git a/source/designs/files/rkt/005498.rkt b/source/designs/files/rkt/005498.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d45610d0f872e5811629b5d839ae239206af6944 --- /dev/null +++ b/source/designs/files/rkt/005498.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13429cd16955827d2d2b5952968997bf87ba9d1b710963745f71cab34f4e6932 +size 109905 diff --git a/source/designs/files/rkt/005499.rkt b/source/designs/files/rkt/005499.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a33b1e2ab6b0d8e6d5e928da169a99c5ecad0dd9 --- /dev/null +++ b/source/designs/files/rkt/005499.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45e21827986f3f842eb70192e4d2e0c1d91865cc0500e1a38072f71ddd84b11 +size 27932 diff --git a/source/designs/files/rkt/005500.rkt b/source/designs/files/rkt/005500.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1dfbe270bad498df1970e49142a61413552b8e91 --- /dev/null +++ b/source/designs/files/rkt/005500.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09bcbbdf301a9cfc10c290be4d68847dbfbe0ca8c46fdd6c39eb0e072cc8c240 +size 20465 diff --git a/source/designs/files/rkt/005501.rkt b/source/designs/files/rkt/005501.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e83c49a72f9681251260665771ad566a46422aad --- /dev/null +++ b/source/designs/files/rkt/005501.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ccdf941d99bda65caa4b600046a7f3b629fd9850e9cbd0031fb82676800d562 +size 43691 diff --git a/source/designs/files/rkt/005502.rkt b/source/designs/files/rkt/005502.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7a6cc4e75553cf63524776e90e3b7aa1d299f7a8 --- /dev/null +++ b/source/designs/files/rkt/005502.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553c3ffdfc450e284073d1264e8d5a3eb3844ee8daa928b55cd0db6d1a97ad35 +size 22062 diff --git a/source/designs/files/rkt/005503.rkt b/source/designs/files/rkt/005503.rkt new file mode 100644 index 0000000000000000000000000000000000000000..13f5afb183abb5b5f1de750da1b3c5a14bb00bb4 --- /dev/null +++ b/source/designs/files/rkt/005503.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1cd4213b5c69dfd6392019fb9cfbf6eb503899bffb90f9fbe2a0081eaecaecf +size 10767 diff --git a/source/designs/files/rkt/005504.rkt b/source/designs/files/rkt/005504.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d15057a9e6037dd69e5c3daf37a9dd5feca5d931 --- /dev/null +++ b/source/designs/files/rkt/005504.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eda90c63f574443986a78988c282ae05965a7e2f166bc8c4408ed81ff3f54788 +size 58928 diff --git a/source/designs/files/rkt/005505.rkt b/source/designs/files/rkt/005505.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e4a72a60a12eaaa3935aaf494705ac66473a3d01 --- /dev/null +++ b/source/designs/files/rkt/005505.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc26a3d4a55fa8661889290726b4f60a49b814e7458ef0def1e76278df5ee5c +size 32430 diff --git a/source/designs/files/rkt/005506.rkt b/source/designs/files/rkt/005506.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ecc0cb87912f041718c01d8ce160d317863a3961 --- /dev/null +++ b/source/designs/files/rkt/005506.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6078f0737937a47eb3eebdc8b8ee11806204a5a9346fa11fcb07b0818e196e2 +size 21260 diff --git a/source/designs/files/rkt/005507.rkt b/source/designs/files/rkt/005507.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3d470384526638aff04311b71943848ac9c8eb78 --- /dev/null +++ b/source/designs/files/rkt/005507.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be76d4337ebb0a0f4c99b723c0630c10b1d01580aa89540d5aa02f4b677758d0 +size 78980 diff --git a/source/designs/files/rkt/005508.rkt b/source/designs/files/rkt/005508.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8d1b8f119bdef56cd49e7afe14ab1e1df9ff33d2 --- /dev/null +++ b/source/designs/files/rkt/005508.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8d351f898aede2820d2fc47d69956fa0174f9b5fa83b8e298f826968faf8da +size 26411 diff --git a/source/designs/files/rkt/005509.rkt b/source/designs/files/rkt/005509.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0e79e46cc8e3e0837591aabd46fed33c0a3ca9cd --- /dev/null +++ b/source/designs/files/rkt/005509.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb04ebf3ff5a1167e03c50316ace56d7048e409cbbede10b461d5e5f6066556 +size 29486 diff --git a/source/designs/files/rkt/005510.rkt b/source/designs/files/rkt/005510.rkt new file mode 100644 index 0000000000000000000000000000000000000000..83aa237b83f10371261e04b06d6ab8f0846ab396 --- /dev/null +++ b/source/designs/files/rkt/005510.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6006abc2ff87c7d92bed0b7cb91ed42dd8f56170976e7b123fc352e2f9627d +size 26375 diff --git a/source/designs/files/rkt/005511.rkt b/source/designs/files/rkt/005511.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7ca63b9dabcf087ec71406a112fd72fd3c202b04 --- /dev/null +++ b/source/designs/files/rkt/005511.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e5a00fc351e5c2cdc2d13132068f18ba9e1403595cd2aeadbbfeed04c51063 +size 37776 diff --git a/source/designs/files/rkt/005512.rkt b/source/designs/files/rkt/005512.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d184bc5a208d2f85e893d1b4a2985259d11532cc --- /dev/null +++ b/source/designs/files/rkt/005512.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b702f174a390e406b01aad72bb6236baf657ef6e5f1875191ccded4e4331c9e +size 113435 diff --git a/source/designs/files/rkt/005513.rkt b/source/designs/files/rkt/005513.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0d6667e10ee40879e868a62610f9456845dab0ef --- /dev/null +++ b/source/designs/files/rkt/005513.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac46d7a849956e69904fb8c454e85278708e187a3197fbd0e5c1aedf734e2b2 +size 53075 diff --git a/source/designs/files/rkt/005514.rkt b/source/designs/files/rkt/005514.rkt new file mode 100644 index 0000000000000000000000000000000000000000..260aabe20575eed81a4d501b647adba2906ee756 --- /dev/null +++ b/source/designs/files/rkt/005514.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748b7cf885208b6d7eda01fe44bc37e016acf19ad26d621e16944a35714133c9 +size 65794 diff --git a/source/designs/files/rkt/005515.rkt b/source/designs/files/rkt/005515.rkt new file mode 100644 index 0000000000000000000000000000000000000000..851ac04aa0649a3473a8f49cfd520cdf55b0bbb8 --- /dev/null +++ b/source/designs/files/rkt/005515.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e91e752c75f9dca969c528141350ef97b41c9563a713f9679194087832da88af +size 38736 diff --git a/source/designs/files/rkt/005516.rkt b/source/designs/files/rkt/005516.rkt new file mode 100644 index 0000000000000000000000000000000000000000..86877f5c57550ed9d9caecda42df7bf6516c3313 --- /dev/null +++ b/source/designs/files/rkt/005516.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b67c1ce467cb1cebadd6fe8d91f05d53103a18b0a49e6c3d4a083aec68e343b +size 66634 diff --git a/source/designs/files/rkt/005517.rkt b/source/designs/files/rkt/005517.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f7c1cf3dd440325eb2272fcc4cb693bce6b6b2f3 --- /dev/null +++ b/source/designs/files/rkt/005517.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73eff92d4de38dd24fa6438b3db0bad6ec78589bf2abdd0f7162026f653bcf61 +size 35988 diff --git a/source/designs/files/rkt/005518.rkt b/source/designs/files/rkt/005518.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4c59f8174d7b496b175dbdb27adf4dd64e5976d4 --- /dev/null +++ b/source/designs/files/rkt/005518.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee10d0f14429ac3f8f9f0d1ad55d03b7cae7fd21708c10cfcccbf8aa55811a9 +size 53540 diff --git a/source/designs/files/rkt/005519.rkt b/source/designs/files/rkt/005519.rkt new file mode 100644 index 0000000000000000000000000000000000000000..105c3585f6ab1a2ae0f692fcc4e46caf075c20a3 --- /dev/null +++ b/source/designs/files/rkt/005519.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ae5a6714334468200c06fcf73d51a0db919350e5e2cc38eb2cb8556d3d2174 +size 30395 diff --git a/source/designs/files/rkt/005520.rkt b/source/designs/files/rkt/005520.rkt new file mode 100644 index 0000000000000000000000000000000000000000..dba30b25a48ea2e21cb2073e683186fc59a12d45 --- /dev/null +++ b/source/designs/files/rkt/005520.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bf5102236467876b9844d87ac8dc7fbe7bc42c14142946379436151fa292e2 +size 28856 diff --git a/source/designs/files/rkt/005521.rkt b/source/designs/files/rkt/005521.rkt new file mode 100644 index 0000000000000000000000000000000000000000..69e7783c303de83312ff2981ab836bd930bedc83 --- /dev/null +++ b/source/designs/files/rkt/005521.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6e83d08c126e1d8f21e27a34831ca3e21f5a407dcf2e1832506bf9373a646b +size 34551 diff --git a/source/designs/files/rkt/005522.rkt b/source/designs/files/rkt/005522.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4d594c0bdb68d9ab8a4deeb3841edfa3b654a74d --- /dev/null +++ b/source/designs/files/rkt/005522.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289ce149cc949f12dc3c2a215883756cae2a6c018de027e45ef29b51cebd8777 +size 39956 diff --git a/source/designs/files/rkt/005523.rkt b/source/designs/files/rkt/005523.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0f9fd07ca8519b178ea66624c085eee818ebd227 --- /dev/null +++ b/source/designs/files/rkt/005523.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a32e69c3863656ae5f9cef90ef91593b9fa6357a4da79ce5b9092467845321 +size 75890 diff --git a/source/designs/files/rkt/005524.rkt b/source/designs/files/rkt/005524.rkt new file mode 100644 index 0000000000000000000000000000000000000000..140f8dc3740097a0982522198358df68e925a868 --- /dev/null +++ b/source/designs/files/rkt/005524.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb2696d33917a6d1d48883cc62a7066a133a415c05b4375988506ac5ed380bc +size 47695 diff --git a/source/designs/files/rkt/005525.rkt b/source/designs/files/rkt/005525.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a21f2ac6e8cb2393208f0991c99b351561ddb3aa --- /dev/null +++ b/source/designs/files/rkt/005525.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab74b9faf1e74007da99fd49d6b75592eaec8320ced04243d7b0c74b9cf53389 +size 26995 diff --git a/source/designs/files/rkt/005526.rkt b/source/designs/files/rkt/005526.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7dfe29eccd5389bf5efd4bb90c4c4ed6a983b8de --- /dev/null +++ b/source/designs/files/rkt/005526.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca78f41a4cada6dda8d5664fa560b5dbc64caa896c9f9b5989741b7405f5dcc +size 24632 diff --git a/source/designs/files/rkt/005527.rkt b/source/designs/files/rkt/005527.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3d872a590106baf0744bc59f9b9a66bc05bcd61a --- /dev/null +++ b/source/designs/files/rkt/005527.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033ff70f93f07aa4d9b2299abebba55da64010f5fca5601b0ff0baec39ad6c91 +size 36204 diff --git a/source/designs/files/rkt/005528.rkt b/source/designs/files/rkt/005528.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cb41ebc319a06bae1975b1d836555c2d900e8c3c --- /dev/null +++ b/source/designs/files/rkt/005528.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3ca54ce066609fdd1f98e20fba7bd044da11f4ba618c546397741e30a3b8c0 +size 53583 diff --git a/source/designs/files/rkt/005530.rkt b/source/designs/files/rkt/005530.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3b739bc5b76bf825e7243b9a9b06d8d804b445de --- /dev/null +++ b/source/designs/files/rkt/005530.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c8954a8c8c68f4fcc1939263eb6ccabbfa22bd7364b9a73a395327e09e363fe +size 67904 diff --git a/source/designs/files/rkt/005531.rkt b/source/designs/files/rkt/005531.rkt new file mode 100644 index 0000000000000000000000000000000000000000..30cdaeb426f4c6a140a0ba65040995ace4e851bd --- /dev/null +++ b/source/designs/files/rkt/005531.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca30df933516e4056e55a9a7d10a36d8012679734480ef8a68ee8055cf15cf7 +size 75868 diff --git a/source/designs/files/rkt/005532.rkt b/source/designs/files/rkt/005532.rkt new file mode 100644 index 0000000000000000000000000000000000000000..98f10d345087f4f60ff9960028d6dd7ef05c76b3 --- /dev/null +++ b/source/designs/files/rkt/005532.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36edd5783c1403ba673573856d16be1ac6b4f81b3552bced6c4aa8c69a8dbe4 +size 61873 diff --git a/source/designs/files/rkt/005533.rkt b/source/designs/files/rkt/005533.rkt new file mode 100644 index 0000000000000000000000000000000000000000..49a62c1b9981fe117a2e02df105c5efd3bdf5582 --- /dev/null +++ b/source/designs/files/rkt/005533.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12dc8564135cb89ae6c81b2f7028428fa0378ef7490d69b6613762f93b410d20 +size 317551 diff --git a/source/designs/files/rkt/005534.rkt b/source/designs/files/rkt/005534.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f9ccfa8a4d189998b018e7bcd9c28fe167ff68e3 --- /dev/null +++ b/source/designs/files/rkt/005534.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d740f9ceecc2755c1bc65c628e1e8490425aa3cb9d499d3ca8fe496c87a64a +size 43287 diff --git a/source/designs/files/rkt/005535.rkt b/source/designs/files/rkt/005535.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5ec19794c082ecbd3cbc58310d70c8f137fa062c --- /dev/null +++ b/source/designs/files/rkt/005535.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9ffda585cfd6f33d5bc974c07aae38013b9dc0a6e803df385ff50b12ed8c24 +size 7771 diff --git a/source/designs/files/rkt/005536.rkt b/source/designs/files/rkt/005536.rkt new file mode 100644 index 0000000000000000000000000000000000000000..720e688034362c3d0d8c79ae083e0e805d13c4ed --- /dev/null +++ b/source/designs/files/rkt/005536.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f2e2d37ea2cc282b6f4f333c06de4f40425369638dd9dc1f82fde7ab22f205c +size 91798 diff --git a/source/designs/files/rkt/005537.rkt b/source/designs/files/rkt/005537.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a2458e7195d480a8460c795e34f3cc4573b0a790 --- /dev/null +++ b/source/designs/files/rkt/005537.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d0529ca5d3e662e6c9bdc4e62bde49fea895b1608dc36b78cded56c1b797ca5 +size 86000 diff --git a/source/designs/files/rkt/005538.rkt b/source/designs/files/rkt/005538.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7d28ed3365e603ab3de35fc01260d4d051ccd34b --- /dev/null +++ b/source/designs/files/rkt/005538.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43337d2f61b4223a09895b8fcae09d00c9260d8130993eeaff25dbc6781f0f01 +size 110058 diff --git a/source/designs/files/rkt/005539.rkt b/source/designs/files/rkt/005539.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d92cdda69137362889bc6cc02352e384f4b50b78 --- /dev/null +++ b/source/designs/files/rkt/005539.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7baea733abc2254fe014d916332bc75e48e58712125ee4d306ad8a50344e52d9 +size 52321 diff --git a/source/designs/files/rkt/005540.rkt b/source/designs/files/rkt/005540.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7ddf7bf1df4ac9e5dcfb2d263d14dc756d152ad0 --- /dev/null +++ b/source/designs/files/rkt/005540.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79a8100f24fdb1e18ee7840979089d834045a0d68393023cdf93d9431e97963 +size 87671 diff --git a/source/designs/files/rkt/005541.rkt b/source/designs/files/rkt/005541.rkt new file mode 100644 index 0000000000000000000000000000000000000000..00814e4e9b5821769b89c776f9e07188dee1b048 --- /dev/null +++ b/source/designs/files/rkt/005541.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20dd543c94bd17b45ce0317edc2872be59fa88b1c32e3ccb9ae2826c641ad48c +size 111556 diff --git a/source/designs/files/rkt/005542.rkt b/source/designs/files/rkt/005542.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c2fa6952c63cda2a8df656b2dd6239a4efaeb03c --- /dev/null +++ b/source/designs/files/rkt/005542.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9f442a949a0695c730cc0940679e23badbd12a12a7b9f2637dae24da00ce88 +size 108314 diff --git a/source/designs/files/rkt/005543.rkt b/source/designs/files/rkt/005543.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0757decaca1d2f4523cb595f57caa26ebb20b798 --- /dev/null +++ b/source/designs/files/rkt/005543.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c9d8d9c8e3f4c0ea3b46d59fd0ee33c0e72e4f143b23ce7eaee96eb9a1d0d8f +size 113541 diff --git a/source/designs/files/rkt/005544.rkt b/source/designs/files/rkt/005544.rkt new file mode 100644 index 0000000000000000000000000000000000000000..55a0bf24aa91572b8bc931b280dfc47013c1648c --- /dev/null +++ b/source/designs/files/rkt/005544.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c9119cd5d7859549f6e5adad6a4967163574fea770a28698c7f921ae3028ac3 +size 30436 diff --git a/source/designs/files/rkt/005545.rkt b/source/designs/files/rkt/005545.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5e3baea36f4ae4093de1a148d9f6bb52aeaa403d --- /dev/null +++ b/source/designs/files/rkt/005545.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aae5c46ffe394184587aae8dd71d3935c1c46403c46874f7b39efe49f05c38c0 +size 29262 diff --git a/source/designs/files/rkt/005546.rkt b/source/designs/files/rkt/005546.rkt new file mode 100644 index 0000000000000000000000000000000000000000..85e061b08e25d88f175587c7114c31fbca3776f3 --- /dev/null +++ b/source/designs/files/rkt/005546.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69a8e68c6da362a13280ce9bb64e9a74b1140bd4660caef2de7fbe2a899c4bc +size 65083 diff --git a/source/designs/files/rkt/005547.rkt b/source/designs/files/rkt/005547.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e71a25a879bf0765011403b081dbcc4a90e88eb4 --- /dev/null +++ b/source/designs/files/rkt/005547.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3121d5294530fe17b0db0ae0989e4c49519f4fe9f861afa56dcae04c9f643d3 +size 53438 diff --git a/source/designs/files/rkt/005548.rkt b/source/designs/files/rkt/005548.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6a18ea7eca9f00363843126bbaf48acff8ba3bbf --- /dev/null +++ b/source/designs/files/rkt/005548.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b0cf022f052f470012c30d1a39e2d1e98a34b271d0d29e6051baa825c6c842f +size 78649 diff --git a/source/designs/files/rkt/005549.rkt b/source/designs/files/rkt/005549.rkt new file mode 100644 index 0000000000000000000000000000000000000000..47ef13b970dcbd40ea91c95adb08177bda8b278e --- /dev/null +++ b/source/designs/files/rkt/005549.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e71c83fb314faef4b07df8d911b77b7ccd827ea64d0eb66abe0ab58b0abfea +size 52948 diff --git a/source/designs/files/rkt/005550.rkt b/source/designs/files/rkt/005550.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ccaf4ce620e998a573fe75910bae83575ccbc16e --- /dev/null +++ b/source/designs/files/rkt/005550.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986981260a1ace44d24ada87113098afe53c147cdffa9b6900c7cfdcfd3d6209 +size 46145 diff --git a/source/designs/files/rkt/005551.rkt b/source/designs/files/rkt/005551.rkt new file mode 100644 index 0000000000000000000000000000000000000000..355a7f2ed69aa4ec44ded875c5792f7e14afafb7 --- /dev/null +++ b/source/designs/files/rkt/005551.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b388a8e0df224615e4718877b9d91a93197184e9c156311b46e5103737c8125 +size 46219 diff --git a/source/designs/files/rkt/005552.rkt b/source/designs/files/rkt/005552.rkt new file mode 100644 index 0000000000000000000000000000000000000000..47842a45107a798c68e18fd99e3a2156f4ff2816 --- /dev/null +++ b/source/designs/files/rkt/005552.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4231e1aded864bf341ad3a809b2fbe825f3e043122f4bfaa27c24fe850f262c2 +size 52174 diff --git a/source/designs/files/rkt/005553.rkt b/source/designs/files/rkt/005553.rkt new file mode 100644 index 0000000000000000000000000000000000000000..475f96982c2c65d490ad1502673ea7c37fd6cc92 --- /dev/null +++ b/source/designs/files/rkt/005553.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2ede422bae947586b3ac390f4ed835687523f4455f15aeb37688b4c79b0669 +size 57958 diff --git a/source/designs/files/rkt/005554.rkt b/source/designs/files/rkt/005554.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ab68ae8bc25e44c072da2170deb55dfe782f69dc --- /dev/null +++ b/source/designs/files/rkt/005554.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944b0d884bf4ecd59a80cd7106c1a9edbaeedc57f10772287dba8600af993c7d +size 74826 diff --git a/source/designs/files/rkt/005555.rkt b/source/designs/files/rkt/005555.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5402ecded173ce98e355394f73d425d803ef7c40 --- /dev/null +++ b/source/designs/files/rkt/005555.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f1b8b3962047d7926e5af6616c0a60a85adacd73415ccb0383f1df4d7895b6 +size 52204 diff --git a/source/designs/files/rkt/005556.rkt b/source/designs/files/rkt/005556.rkt new file mode 100644 index 0000000000000000000000000000000000000000..558ad8941545765f70e323ad06682d5f9c06e3c4 --- /dev/null +++ b/source/designs/files/rkt/005556.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfa0e2d7628f204f6d678332f954e02bc8acd8c7c2baa0f730f15425eb87c644 +size 55922 diff --git a/source/designs/files/rkt/005557.rkt b/source/designs/files/rkt/005557.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f1818181af902094e6567a77c43e900089e89888 --- /dev/null +++ b/source/designs/files/rkt/005557.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c051464c7f2e145a22bc12e93438f119316ecbe3e374fea5d74f2e44c7ba100 +size 84923 diff --git a/source/designs/files/rkt/005558.rkt b/source/designs/files/rkt/005558.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f5cbcb3cbfd6e593fa56b02d4dc2986ef1bfa069 --- /dev/null +++ b/source/designs/files/rkt/005558.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98cedfb9b424375466a07d8084ae293706b79258f95952a10af55d302ed08cdb +size 53978 diff --git a/source/designs/files/rkt/005559.rkt b/source/designs/files/rkt/005559.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1a3d6cdb95ab072e35eb1f2f8ec6a9e27e878aa5 --- /dev/null +++ b/source/designs/files/rkt/005559.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8449448f56068491b09f40776a43f1e1ef5167f631a31a47dae7cdc66378cd4 +size 63583 diff --git a/source/designs/files/rkt/005560.rkt b/source/designs/files/rkt/005560.rkt new file mode 100644 index 0000000000000000000000000000000000000000..685980706b8d34ceb896bfae7006ba6b8281755f --- /dev/null +++ b/source/designs/files/rkt/005560.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3334912512b7ba44aae17903deec42a74daa783a6be3440549f5ce7a3859663 +size 55889 diff --git a/source/designs/files/rkt/005561.rkt b/source/designs/files/rkt/005561.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6146fd397f961b852b92718c5581beedbbcc3977 --- /dev/null +++ b/source/designs/files/rkt/005561.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4ff7e060e1d78c4f93375770425e1d783a1ca87ccae3d52e7e9ceb978adc9c +size 78738 diff --git a/source/designs/files/rkt/005562.rkt b/source/designs/files/rkt/005562.rkt new file mode 100644 index 0000000000000000000000000000000000000000..56e95b24fb67d8720723a90e2eaeda60c825d281 --- /dev/null +++ b/source/designs/files/rkt/005562.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6f1c42887260863afd301378c2733347d9a1948b704ce940a767abb0807021 +size 104741 diff --git a/source/designs/files/rkt/005563.rkt b/source/designs/files/rkt/005563.rkt new file mode 100644 index 0000000000000000000000000000000000000000..54ce6fa4fd740297f586815a8c084b7eceeac0ca --- /dev/null +++ b/source/designs/files/rkt/005563.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f108c6bf3929df18373bd64fa3e486a387adc7b3bd0798f9027552c8d9b87e +size 66167 diff --git a/source/designs/files/rkt/005564.rkt b/source/designs/files/rkt/005564.rkt new file mode 100644 index 0000000000000000000000000000000000000000..452cc24c13ae832bdf8e404aaee88ff1aab90d55 --- /dev/null +++ b/source/designs/files/rkt/005564.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247ba63cfcc0e475104b2595aa928f63da4cfcbb3a9b566d9124cb760a3b2378 +size 97614 diff --git a/source/designs/files/rkt/005565.rkt b/source/designs/files/rkt/005565.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c8ac238558942f4b1754c1f0016506a67a6c4df0 --- /dev/null +++ b/source/designs/files/rkt/005565.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03e7aa4d0a683a9907897a1c8b1e51721f293d1198ce4b94ec886ef265a698f +size 128226 diff --git a/source/designs/files/rkt/005566.rkt b/source/designs/files/rkt/005566.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6c5f496ff95a7be034a822f041cc25e69f1b795d --- /dev/null +++ b/source/designs/files/rkt/005566.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fcd28b2e3d4fa3dfe5b17d103486edd3a34240c6a4352f684eed0d400e97a5 +size 36218 diff --git a/source/designs/files/rkt/005567.rkt b/source/designs/files/rkt/005567.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f764fdafd1db20b8574ce65f82c1a6760b9d4c6d --- /dev/null +++ b/source/designs/files/rkt/005567.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f8baf6964750b9705f9cfef1582bb6813f3703648200a8ee15d7cc08f6872bf +size 29935 diff --git a/source/designs/files/rkt/005568.rkt b/source/designs/files/rkt/005568.rkt new file mode 100644 index 0000000000000000000000000000000000000000..54e897b46a41dca6e7b5e5a54ac2ca439f1f3ff1 --- /dev/null +++ b/source/designs/files/rkt/005568.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e597c5abd83681e097db1be498e4d1f4678bf52134775cd2b68ad0dfdec08f0b +size 38926 diff --git a/source/designs/files/rkt/005569.rkt b/source/designs/files/rkt/005569.rkt new file mode 100644 index 0000000000000000000000000000000000000000..24af22894bf0d90c9c7c7ee8a6ff957b87c529d9 --- /dev/null +++ b/source/designs/files/rkt/005569.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844562695ec8941c9999d42cb792bf7294d25f2a9ba6a97a3a9d6894d171ddb7 +size 29267 diff --git a/source/designs/files/rkt/005570.rkt b/source/designs/files/rkt/005570.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ee1a690bdad0ab40286dc4fda49d1a95de571edb --- /dev/null +++ b/source/designs/files/rkt/005570.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6fed296a6bb8e1467d7228cbf1cb5b39663e5738f0f866a634ff6f72ee47dc9 +size 21669 diff --git a/source/designs/files/rkt/005571.rkt b/source/designs/files/rkt/005571.rkt new file mode 100644 index 0000000000000000000000000000000000000000..746bb30a23e63d2d97920eacf7eb51351a017b21 --- /dev/null +++ b/source/designs/files/rkt/005571.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e2f04205e729e82225916e3c7e0884b04d4f36153ffd186b9549562631f347 +size 25643 diff --git a/source/designs/files/rkt/005572.rkt b/source/designs/files/rkt/005572.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ceecf5241097e8a23123c2190cfbac3ad0ae930a --- /dev/null +++ b/source/designs/files/rkt/005572.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f814a27072ae1bbfd5d4c9277c3228fd94fe537ca2685047f8491e07388ee7 +size 17710 diff --git a/source/designs/files/rkt/005573.rkt b/source/designs/files/rkt/005573.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7382e3aec74c99e902107b79be5cbd66baebb3b0 --- /dev/null +++ b/source/designs/files/rkt/005573.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc648e49c55a9fb2ccf43b965d87398b2ad7aa1587c5e4f4024f68f3267cf8f +size 24655 diff --git a/source/designs/files/rkt/005574.rkt b/source/designs/files/rkt/005574.rkt new file mode 100644 index 0000000000000000000000000000000000000000..84fadde1524dc69cc268d6d24b215d6998dd1ba2 --- /dev/null +++ b/source/designs/files/rkt/005574.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2cb49e71d261818ef3376c3ec5fbe429c46c523e4ff209e0e3e64b99dcd64d1 +size 28568 diff --git a/source/designs/files/rkt/005575.rkt b/source/designs/files/rkt/005575.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6912905a21e844ad63cfcb53e07d0366097d41bf --- /dev/null +++ b/source/designs/files/rkt/005575.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fccedbfb79e4c6d7270693413533264aab138483c199933ed9e95bb468ef031 +size 28265 diff --git a/source/designs/files/rkt/005576.rkt b/source/designs/files/rkt/005576.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a90240f40ac1aaae2eb2ed04bd23a3e88f3668a6 --- /dev/null +++ b/source/designs/files/rkt/005576.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c4d37fbb58adb84d76c15203a041b843b56b9ab75e2cc849302f8b1da0a925 +size 25824 diff --git a/source/designs/files/rkt/005577.rkt b/source/designs/files/rkt/005577.rkt new file mode 100644 index 0000000000000000000000000000000000000000..485cf918646d17aa3a919b45bb63cb2c9cba8ecf --- /dev/null +++ b/source/designs/files/rkt/005577.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786826c1723937c8fa3291e3946894f1e86e9a8d37b542be0340694cdcb37857 +size 36831 diff --git a/source/designs/files/rkt/005578.rkt b/source/designs/files/rkt/005578.rkt new file mode 100644 index 0000000000000000000000000000000000000000..be4283130f0f43032fa48f9f80458ff544d01e3f --- /dev/null +++ b/source/designs/files/rkt/005578.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923b3ea63cfc86213e01139bf16697258b2f5739e2c3de2329105fce173853fd +size 30093 diff --git a/source/designs/files/rkt/005579.rkt b/source/designs/files/rkt/005579.rkt new file mode 100644 index 0000000000000000000000000000000000000000..66a6fc51ad2dbc89bfd365e0476b743bb0d32652 --- /dev/null +++ b/source/designs/files/rkt/005579.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d471bb5b4d9bef3d46e8ab494eb89d6a8bd9201fc7c933faf59bc3d4ec23b32 +size 26709 diff --git a/source/designs/files/rkt/005580.rkt b/source/designs/files/rkt/005580.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a7101b7e2efe777b1260540a0ed939185254cb0d --- /dev/null +++ b/source/designs/files/rkt/005580.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6892d41a404a11bc85b308b85154df653dfee7ee14a6fac49e4f598ccfccb057 +size 30091 diff --git a/source/designs/files/rkt/005581.rkt b/source/designs/files/rkt/005581.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c11caf7317fc0f57f7130883162689feb1e0f9dd --- /dev/null +++ b/source/designs/files/rkt/005581.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565a1c44582f539c6e6aa91beae5a832b2831d477f26b9d2d29040819e25f30d +size 34858 diff --git a/source/designs/files/rkt/005582.rkt b/source/designs/files/rkt/005582.rkt new file mode 100644 index 0000000000000000000000000000000000000000..754f1709e0d7b6133cca23d177a382a09d6aaadc --- /dev/null +++ b/source/designs/files/rkt/005582.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7dd971bb8112baaf3eaab61bb88251c34be97dc6fbdb966470a6c2955904ae +size 18531 diff --git a/source/designs/files/rkt/005583.rkt b/source/designs/files/rkt/005583.rkt new file mode 100644 index 0000000000000000000000000000000000000000..022c4e04a4a26e4118dc763092a14641e49a29f8 --- /dev/null +++ b/source/designs/files/rkt/005583.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2869d0a76125dfcb07d398fd407fea6dd49fb0992c736697512c6a078fbde8e8 +size 42863 diff --git a/source/designs/files/rkt/005584.rkt b/source/designs/files/rkt/005584.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5015c36e400ab58c9c0fa03412984c418b3eb000 --- /dev/null +++ b/source/designs/files/rkt/005584.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a318b045f942f0f12d0dade351d832ec4ae716970fd40e9ffb8d3352067b06ea +size 18181 diff --git a/source/designs/files/rkt/005585.rkt b/source/designs/files/rkt/005585.rkt new file mode 100644 index 0000000000000000000000000000000000000000..de81563f4f23cb1064f823668bfbcd6fd1927900 --- /dev/null +++ b/source/designs/files/rkt/005585.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf1850d549ae263ec2cd133df64f01feeeab4c312d1c023172fdae15821b0f2 +size 43628 diff --git a/source/designs/files/rkt/005586.rkt b/source/designs/files/rkt/005586.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8a911050e305072e8038ab26444516476d80f45b --- /dev/null +++ b/source/designs/files/rkt/005586.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d26ea418abfbf43829e290df6ba5b96789ebe0456dc9510c0b5abb8211dc195 +size 34616 diff --git a/source/designs/files/rkt/005587.rkt b/source/designs/files/rkt/005587.rkt new file mode 100644 index 0000000000000000000000000000000000000000..22bba3e9d082c3ac420f3ba82fe129b1661ea1da --- /dev/null +++ b/source/designs/files/rkt/005587.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738b288796cb756b03a3bb2e86a264f8319248c5b137ba2ded05956fdbde6c14 +size 30408 diff --git a/source/designs/files/rkt/005588.rkt b/source/designs/files/rkt/005588.rkt new file mode 100644 index 0000000000000000000000000000000000000000..52f6a6b826996ad8a07dcf9edb89269f0fac7400 --- /dev/null +++ b/source/designs/files/rkt/005588.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42adc05b0861535b997200aacb9277103ef9f99c6e1023cba017c282d40b126 +size 30408 diff --git a/source/designs/files/rkt/005589.rkt b/source/designs/files/rkt/005589.rkt new file mode 100644 index 0000000000000000000000000000000000000000..28040e6a8cfb0b6cc1565c47b0dc4cf79f162cf2 --- /dev/null +++ b/source/designs/files/rkt/005589.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:312f3d257feecdee74a4e74700f6a5985306780f60ee5e0b51652f2a5a28231c +size 23281 diff --git a/source/designs/files/rkt/005590.rkt b/source/designs/files/rkt/005590.rkt new file mode 100644 index 0000000000000000000000000000000000000000..98d687fc7678d0c4bef4525aba743e18088a5494 --- /dev/null +++ b/source/designs/files/rkt/005590.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9d251d3becc8632f468cfeb33498b3f034a041bab056185fe499397626b15a2 +size 41523 diff --git a/source/designs/files/rkt/005591.rkt b/source/designs/files/rkt/005591.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c9abb016479fb18970ec404bbd3671822a629edb --- /dev/null +++ b/source/designs/files/rkt/005591.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1d30f9b64c2c5d5e1f2f038e721c84d1fffacb9261ebcf8b1484a64fd8d0ba5 +size 26637 diff --git a/source/designs/files/rkt/005592.rkt b/source/designs/files/rkt/005592.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f44ec422559df09cc7642a6159ad3e72f80b6b15 --- /dev/null +++ b/source/designs/files/rkt/005592.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c531fad4f7f14c50b3a67fd7b0719573f44fb0f538e54e9ace7b22321603af +size 13872 diff --git a/source/designs/files/rkt/005593.rkt b/source/designs/files/rkt/005593.rkt new file mode 100644 index 0000000000000000000000000000000000000000..698fcc1c960618b235a36d4eeae45a3128996e0b --- /dev/null +++ b/source/designs/files/rkt/005593.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01063a6a9b8bebd728b10f230ea32e5e2c1eef2fef58ee2982173b8b8e49e154 +size 26245 diff --git a/source/designs/files/rkt/005594.rkt b/source/designs/files/rkt/005594.rkt new file mode 100644 index 0000000000000000000000000000000000000000..06521be5da7db46e1ddf5e05d8ff4984e9bb2c70 --- /dev/null +++ b/source/designs/files/rkt/005594.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0c7398a4dc0317225f51d9cac8d3b0e3a558e016b28ef906b4ca5b88d965e55 +size 37343 diff --git a/source/designs/files/rkt/005595.rkt b/source/designs/files/rkt/005595.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bef03a83fc47fb898c97fdb2bba7de3213709d86 --- /dev/null +++ b/source/designs/files/rkt/005595.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39fa5d273a8adaa6a337f9e0ea3feab30af286be90be3f78f99aa0b62d9e466d +size 24797 diff --git a/source/designs/files/rkt/005596.rkt b/source/designs/files/rkt/005596.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fbf40e4aa35b97b1bf3511d4f826559e07316b59 --- /dev/null +++ b/source/designs/files/rkt/005596.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2940e725be84368e3c0252cfc57b7cd46b12139c8bd2741206977528957118 +size 32038 diff --git a/source/designs/files/rkt/005597.rkt b/source/designs/files/rkt/005597.rkt new file mode 100644 index 0000000000000000000000000000000000000000..01a5149b1a22dbcebab6c883a637ab84a1969e93 --- /dev/null +++ b/source/designs/files/rkt/005597.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3085783821594161f29c1e4d0c89de99cb2e152bfb516318a52273e700a66df5 +size 19303 diff --git a/source/designs/files/rkt/005598.rkt b/source/designs/files/rkt/005598.rkt new file mode 100644 index 0000000000000000000000000000000000000000..24c672308aa96d535e6022d659e7b04ebc3576d7 --- /dev/null +++ b/source/designs/files/rkt/005598.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e7bea45854131d5dce6eea89bdaace31118e009877fcb77ea2cbeb00702ed8 +size 12772 diff --git a/source/designs/files/rkt/005599.rkt b/source/designs/files/rkt/005599.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d894978069090dcf5404e0bd2696e66d5d5f9c42 --- /dev/null +++ b/source/designs/files/rkt/005599.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b287d6c38f03558be402ce53f2f21d66eff30a5ac50e25fc865b4d000b458ea +size 20235 diff --git a/source/designs/files/rkt/005600.rkt b/source/designs/files/rkt/005600.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ca1ecea81ce300e420acf5a564e5420ccabb7b42 --- /dev/null +++ b/source/designs/files/rkt/005600.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f584e7994217c591be1ec663f25cb78f92b0a90437f18c31ceb87720288a7c0 +size 16198 diff --git a/source/designs/files/rkt/005601.rkt b/source/designs/files/rkt/005601.rkt new file mode 100644 index 0000000000000000000000000000000000000000..924402810374cd93a325bf093b20b53c50c4df6a --- /dev/null +++ b/source/designs/files/rkt/005601.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d86a1cb44ad74f72d943fdedd72de13a23984cc7e35df9b9885bf77cb26105 +size 15972 diff --git a/source/designs/files/rkt/005602.rkt b/source/designs/files/rkt/005602.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0706bac79dac73526c4858b6b2a76dd6a995563c --- /dev/null +++ b/source/designs/files/rkt/005602.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58667f578bf8cbae3cae294bd27d747c2d6e2190f6bba9f2e49a028f3447d17 +size 21519 diff --git a/source/designs/files/rkt/005603.rkt b/source/designs/files/rkt/005603.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a3aae2f2418764ded2a5567d553397b02c8d5b72 --- /dev/null +++ b/source/designs/files/rkt/005603.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2745ca4f92504774f1b86064b21469426e12919d4fa14e831a7175852f043624 +size 19401 diff --git a/source/designs/files/rkt/005604.rkt b/source/designs/files/rkt/005604.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63d34c003dc99ae528221f5f82956645e6333b91 --- /dev/null +++ b/source/designs/files/rkt/005604.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d72bb5df1151079892e018091e433932e8ffebd9a8915a8b619cf93824b85e1 +size 32117 diff --git a/source/designs/files/rkt/005605.rkt b/source/designs/files/rkt/005605.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2ab94936c75bcc96843844fc4f5a69b6d3523bc7 --- /dev/null +++ b/source/designs/files/rkt/005605.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b396aafc2a9bac9e858aa906b77c84500c5a6baff4944f06c9c75e6ce5caa8 +size 26734 diff --git a/source/designs/files/rkt/005606.rkt b/source/designs/files/rkt/005606.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b20a36ddab73363e9dfde96855af9ff1fe15351f --- /dev/null +++ b/source/designs/files/rkt/005606.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24e6f8797474784f2dcdd7f36ac74895ea6648f9dffb43abf39b7ad018ff7950 +size 36104 diff --git a/source/designs/files/rkt/005607.rkt b/source/designs/files/rkt/005607.rkt new file mode 100644 index 0000000000000000000000000000000000000000..40438d40b1b436d3aba1a9d801758dd0010cf9f5 --- /dev/null +++ b/source/designs/files/rkt/005607.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635a8fcc3ee7588014ccf0efd1d5cb21f90e8d95be95930886fad56caf513788 +size 32691 diff --git a/source/designs/files/rkt/005608.rkt b/source/designs/files/rkt/005608.rkt new file mode 100644 index 0000000000000000000000000000000000000000..15147844aafdab2b9ff603608547d21f0f95c165 --- /dev/null +++ b/source/designs/files/rkt/005608.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07447abb76a7552ace2c0366e3a018136f29280471c3a6267cf9be954d68d077 +size 28830 diff --git a/source/designs/files/rkt/005609.rkt b/source/designs/files/rkt/005609.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e95e16604173c920a588815fbd507801b4747208 --- /dev/null +++ b/source/designs/files/rkt/005609.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8337ddd6a74fbc8b8b43c2c77250daf3770f2c808ab90207c31d82d8cd86b3 +size 16634 diff --git a/source/designs/files/rkt/005610.rkt b/source/designs/files/rkt/005610.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b3b9aa3e801b7640505edbe0e76f62c8fccd10d1 --- /dev/null +++ b/source/designs/files/rkt/005610.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfea57b09a6c1ac70a3628e8df74457a53af40d634246a477972114ce459687a +size 12552 diff --git a/source/designs/files/rkt/005611.rkt b/source/designs/files/rkt/005611.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d642fdb9575143a837b2e89e5c3d83d5ef21cb14 --- /dev/null +++ b/source/designs/files/rkt/005611.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1017e3502ee26773f3a26a8c7b23749a5dd0c5dbc3625c4bbedc40bdae778d63 +size 12571 diff --git a/source/designs/files/rkt/005612.rkt b/source/designs/files/rkt/005612.rkt new file mode 100644 index 0000000000000000000000000000000000000000..44edd5b633b5a23ace8e9c6d0a34d991f283b02f --- /dev/null +++ b/source/designs/files/rkt/005612.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ebedf47887dd0949e09a2720ac1f5b76a34317a33277722ee491791be277e3 +size 44327 diff --git a/source/designs/files/rkt/005613.rkt b/source/designs/files/rkt/005613.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0388edaf8427f8ae687ce40ee37fbe2cdc3012d6 --- /dev/null +++ b/source/designs/files/rkt/005613.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3ceaa333b4096e9199c1e0172e56d780acfe25e256108efa9c151004da4209 +size 24433 diff --git a/source/designs/files/rkt/005614.rkt b/source/designs/files/rkt/005614.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2d2eaf570b34e4e099cd944bbf0c67fb5d599a73 --- /dev/null +++ b/source/designs/files/rkt/005614.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f93078d0854c36b1fbfd40695f6acd1230898937df4a865c8a229c4b98cc018 +size 25693 diff --git a/source/designs/files/rkt/005615.rkt b/source/designs/files/rkt/005615.rkt new file mode 100644 index 0000000000000000000000000000000000000000..95569597c70cefaf2fc2f24a4e1c4069565116a2 --- /dev/null +++ b/source/designs/files/rkt/005615.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b691ab12beb60cd1ca728e7914aff2a302538f8ea80fc90af7e453dd63f5c5 +size 36296 diff --git a/source/designs/files/rkt/005616.rkt b/source/designs/files/rkt/005616.rkt new file mode 100644 index 0000000000000000000000000000000000000000..af1e21c304a69b1f83ad8a2cbd1f5518e74865b5 --- /dev/null +++ b/source/designs/files/rkt/005616.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4ff7a0547e88084938811b90bc92f934f247669aa685040a2fed1bbd6976ade +size 25143 diff --git a/source/designs/files/rkt/005617.rkt b/source/designs/files/rkt/005617.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d5d5e6efb1f8b315c98d72e4ca63416f8b4f7126 --- /dev/null +++ b/source/designs/files/rkt/005617.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13551a2c8b8db39c4641c5f58216b16531eae4c702e13db0fd4d3f84c04b6dd7 +size 45885 diff --git a/source/designs/files/rkt/005618.rkt b/source/designs/files/rkt/005618.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6685ffa0843f17f670e506ae6e316f87b814d92e --- /dev/null +++ b/source/designs/files/rkt/005618.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6b1d1efaa4d9a7996ad138801d3be1a47590d90d5c4ab41d259d8545d65ce9 +size 14239 diff --git a/source/designs/files/rkt/005619.rkt b/source/designs/files/rkt/005619.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cc2baeef20539af431c38bb7ee85b884db88f386 --- /dev/null +++ b/source/designs/files/rkt/005619.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26a8db041ad27a28e509161664afec6420a9457b013b18ca134105b1ab9b1e8d +size 45115 diff --git a/source/designs/files/rkt/005620.rkt b/source/designs/files/rkt/005620.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9bcc3eb0bccc69f4e89ca108ed6a80760d869040 --- /dev/null +++ b/source/designs/files/rkt/005620.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:042df602153994690651d3d86c66a8eb02ac75844bb1f65310836f82fb0de2d9 +size 42260 diff --git a/source/designs/files/rkt/005621.rkt b/source/designs/files/rkt/005621.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c24d8825e4d34a083796a2bcf380e2b14fccaab0 --- /dev/null +++ b/source/designs/files/rkt/005621.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d8b4d370d02c5ee87b9470f9b7963e33413f7d21a792c062e0823b2e9b51aae +size 21280 diff --git a/source/designs/files/rkt/005622.rkt b/source/designs/files/rkt/005622.rkt new file mode 100644 index 0000000000000000000000000000000000000000..48b8c2cfc3d69e0cad08b91e104493e818605500 --- /dev/null +++ b/source/designs/files/rkt/005622.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b4d3f925e3ffa88250494e10745abc3e5fa9a93e29115d8c383848bb1b4a9d5 +size 17966 diff --git a/source/designs/files/rkt/005623.rkt b/source/designs/files/rkt/005623.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cc0729b3c708ccb8fad0829f29fed0da97d467f9 --- /dev/null +++ b/source/designs/files/rkt/005623.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1d4768b1ce288f84f3c130f58c66c93eb8692d4e9f46afb19c41d13a7cd2d8c +size 30031 diff --git a/source/designs/files/rkt/005624.rkt b/source/designs/files/rkt/005624.rkt new file mode 100644 index 0000000000000000000000000000000000000000..820e320f12e31595c2ab1a0dcaf86f4c24c6a42a --- /dev/null +++ b/source/designs/files/rkt/005624.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c283d6d662e2b03d7b50bebe21b7fa45962b4a857292f2951ec28cd2349f6f9c +size 25839 diff --git a/source/designs/files/rkt/005625.rkt b/source/designs/files/rkt/005625.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3237a3e3943dedd909a3ceba30aef11f04caf485 --- /dev/null +++ b/source/designs/files/rkt/005625.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95dd59e68e058df7fceafca5f5c2ce38ee6e3e96944d48698880bc07dff0250d +size 40925 diff --git a/source/designs/files/rkt/005626.rkt b/source/designs/files/rkt/005626.rkt new file mode 100644 index 0000000000000000000000000000000000000000..514bb105427a9e40d6cf15086b3519501e9b8e3f --- /dev/null +++ b/source/designs/files/rkt/005626.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccfc8a3f28c23fa39a13e1a56e1f0f302f54c68399c86acdea18c544fcda88d9 +size 42307 diff --git a/source/designs/files/rkt/005627.rkt b/source/designs/files/rkt/005627.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9883143d39c04994bca1d682e49329a83a13a730 --- /dev/null +++ b/source/designs/files/rkt/005627.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:436c6e0513da11a072b9f03249ce1b2ba2e49c96f02586a7e1d3d9fdfca38d13 +size 19796 diff --git a/source/designs/files/rkt/005628.rkt b/source/designs/files/rkt/005628.rkt new file mode 100644 index 0000000000000000000000000000000000000000..99177a30b9bb45f28a0e779d62f4524526d7cbc3 --- /dev/null +++ b/source/designs/files/rkt/005628.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459d20ec105aa0069cb42d3bc9a0e9cdcc3ef74e64db010dbbdde5f46bd33742 +size 45890 diff --git a/source/designs/files/rkt/005629.rkt b/source/designs/files/rkt/005629.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e673ebd33110d83f11d8d65e435d8a66b9ae108d --- /dev/null +++ b/source/designs/files/rkt/005629.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41aec8bdffbb3c68bfa95793657772fa28927589c755e09ba06863f0c9b56ae7 +size 26124 diff --git a/source/designs/files/rkt/005630.rkt b/source/designs/files/rkt/005630.rkt new file mode 100644 index 0000000000000000000000000000000000000000..38702b20bbc86ebc3670bcf1d578bec57a9477c7 --- /dev/null +++ b/source/designs/files/rkt/005630.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00b39115388f058141cb30cc921f98dcce1e1906a26b60a676feaaa6ea5d0814 +size 26122 diff --git a/source/designs/files/rkt/005631.rkt b/source/designs/files/rkt/005631.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f919d27fcf38f44fdb22f0823809a2ce8a0fe1ad --- /dev/null +++ b/source/designs/files/rkt/005631.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c587d1734e7151d6d3bf8208dd340494a731f3cbade85deec24519d63bf0c7 +size 28193 diff --git a/source/designs/files/rkt/005632.rkt b/source/designs/files/rkt/005632.rkt new file mode 100644 index 0000000000000000000000000000000000000000..05f0f311f1cce1e11740940e5b2aa54884f31be6 --- /dev/null +++ b/source/designs/files/rkt/005632.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dd8132d703356ea01310c5e344ac5688f60cb65cfbc79c80d550161bd7421a1 +size 31677 diff --git a/source/designs/files/rkt/005633.rkt b/source/designs/files/rkt/005633.rkt new file mode 100644 index 0000000000000000000000000000000000000000..26f658cef257990bc915c300cdb5c3069a7e54bb --- /dev/null +++ b/source/designs/files/rkt/005633.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49af36472dc232fdaa55d6806b781148ab8104434e99afda7f12d4b811a69b80 +size 35431 diff --git a/source/designs/files/rkt/005634.rkt b/source/designs/files/rkt/005634.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1d7a590c0340fb79be7ccf79146bd6ce8b30adbe --- /dev/null +++ b/source/designs/files/rkt/005634.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f48aad14076eba6b09db4479c51197bd67edc944df0d9bb719fa4a7ecb47af45 +size 106358 diff --git a/source/designs/files/rkt/005635.rkt b/source/designs/files/rkt/005635.rkt new file mode 100644 index 0000000000000000000000000000000000000000..904a73173f0f732ea06ffba2d3cf210232ea05b8 --- /dev/null +++ b/source/designs/files/rkt/005635.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933c3e9ad9272521f76bcd5938c94cfa88db51cabe58962ce9b60be287dfc035 +size 56681 diff --git a/source/designs/files/rkt/005636.rkt b/source/designs/files/rkt/005636.rkt new file mode 100644 index 0000000000000000000000000000000000000000..26feced175a9c277f9f5c6ada5f590a1c17fb121 --- /dev/null +++ b/source/designs/files/rkt/005636.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98e288bf11ef71ded44b1fb57eba558af2166c44b613d44453fc2957486b3b7 +size 87605 diff --git a/source/designs/files/rkt/005637.rkt b/source/designs/files/rkt/005637.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d42985f978fd4aea620d275aed3a75c9671b4fc1 --- /dev/null +++ b/source/designs/files/rkt/005637.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a740b8c8660a729cfb06af7f4debe8a52342b94a5c050418536294400edb088 +size 53103 diff --git a/source/designs/files/rkt/005638.rkt b/source/designs/files/rkt/005638.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4dde870762b3827532f944e6781336a85d258da2 --- /dev/null +++ b/source/designs/files/rkt/005638.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfdeaea12edd8a1de72e3c100104d516ae078d573d99759364f9dae92d34f6ba +size 87549 diff --git a/source/designs/files/rkt/005639.rkt b/source/designs/files/rkt/005639.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3bd2720818883645be7e1707fa455ff17616498d --- /dev/null +++ b/source/designs/files/rkt/005639.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1faa22a65e19fab65b85492c60108d4575fbdb217b8fc327b4f1d4693cb67650 +size 97545 diff --git a/source/designs/files/rkt/005640.rkt b/source/designs/files/rkt/005640.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d04c7750216d87950087c1aa3ad4580d910ca757 --- /dev/null +++ b/source/designs/files/rkt/005640.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e171f64e6043a5a550ab49a8176b4085a21552a7dcef18c6217f6052ef8b51d2 +size 46897 diff --git a/source/designs/files/rkt/005641.rkt b/source/designs/files/rkt/005641.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ce70f777e03e14c38e52d12ab82868f3179b20c3 --- /dev/null +++ b/source/designs/files/rkt/005641.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340f24a0a01b6b1e4d7a302813332cc8262fc0e43ed14ad9a907f7cf5d9f32e7 +size 63830 diff --git a/source/designs/files/rkt/005642.rkt b/source/designs/files/rkt/005642.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5597d80542482e444bd9110f6767770bf309474f --- /dev/null +++ b/source/designs/files/rkt/005642.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0246f1120985dbe0a9fcd01599fedf9064bf0b8ec56d8a6ff6a634102673b83 +size 46206 diff --git a/source/designs/files/rkt/005643.rkt b/source/designs/files/rkt/005643.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d704d6996f3f5c940f92662946278d88fd312b7a --- /dev/null +++ b/source/designs/files/rkt/005643.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7d41e2b2d02e06abc1ef8f9e656a42e7e03abb74ac6bbc0b0e4e4a791c636d +size 107352 diff --git a/source/designs/files/rkt/005644.rkt b/source/designs/files/rkt/005644.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7837f969a3b2a48a993bef1b2c34af4b255b9ef3 --- /dev/null +++ b/source/designs/files/rkt/005644.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:902d5b46a96f316337d5b9d55442fd82e86556abfd0f498487adf13a0147a0fb +size 56709 diff --git a/source/designs/files/rkt/005645.rkt b/source/designs/files/rkt/005645.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e452d21cb3b9d68b573425f286d223ab1e731e20 --- /dev/null +++ b/source/designs/files/rkt/005645.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8638fac006c48171c99e4f5fe2edd50abd82034e354b11fc49dd8e616adcc9d +size 106871 diff --git a/source/designs/files/rkt/005646.rkt b/source/designs/files/rkt/005646.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1aae2508d9dd3d68470b6b72dfff436eca759910 --- /dev/null +++ b/source/designs/files/rkt/005646.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4afcd46060c82777669d74430f40702bdf4d06a8c3eecc38fbc9a1ea3673cdf +size 63481 diff --git a/source/designs/files/rkt/005647.rkt b/source/designs/files/rkt/005647.rkt new file mode 100644 index 0000000000000000000000000000000000000000..70ae03fbf0a8f607730242234cfcc2438ba47e51 --- /dev/null +++ b/source/designs/files/rkt/005647.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03c4cd1a329b64ce9975c2e34587fd6f5fba1f9ee335a9379a919f5bb4e7cae +size 72314 diff --git a/source/designs/files/rkt/005648.rkt b/source/designs/files/rkt/005648.rkt new file mode 100644 index 0000000000000000000000000000000000000000..068e29ec2692e48a8fd36febb871caf282667d12 --- /dev/null +++ b/source/designs/files/rkt/005648.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87342bf746cbc9eaad8f565614617a03cdcfcb4b3d5fb89304cd9bb047010328 +size 69588 diff --git a/source/designs/files/rkt/005649.rkt b/source/designs/files/rkt/005649.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e7a0d2e6ee4c349f74f727962f3a596dbbde0a1a --- /dev/null +++ b/source/designs/files/rkt/005649.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace6285fea9b3d3d49f4f790f2bd2fdf42edd6add8bb1accf2ed2bddef0999df +size 60989 diff --git a/source/designs/files/rkt/005650.rkt b/source/designs/files/rkt/005650.rkt new file mode 100644 index 0000000000000000000000000000000000000000..56c2331d28f2d963d8fb065cd1ce22c5ce001cbe --- /dev/null +++ b/source/designs/files/rkt/005650.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4743e5b9ac35c6474b6d7217181bbcf35d766ffb3dc2fd3ae92116715a935fa +size 58565 diff --git a/source/designs/files/rkt/005651.rkt b/source/designs/files/rkt/005651.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a656a6961fc9c62ec3140e24da63af2fd2e8884e --- /dev/null +++ b/source/designs/files/rkt/005651.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2146397567e58e407687b6a559e4499b1c027a787fde3bf46ab5ba58b7e92ab +size 77719 diff --git a/source/designs/files/rkt/005652.rkt b/source/designs/files/rkt/005652.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3bf1fba9788f0da371f5bdf93cfc1b905d02fb4b --- /dev/null +++ b/source/designs/files/rkt/005652.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d00c42588475f3257a4d5b14a61a293f936b4528f2defe675d2b073caf058a4 +size 95290 diff --git a/source/designs/files/rkt/005653.rkt b/source/designs/files/rkt/005653.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bfe9305883436dec5d7578bb27e946e2fab78111 --- /dev/null +++ b/source/designs/files/rkt/005653.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:189bfad0335d86f8fafaac3cf37cf70e09390384e2116ce0527c0a4e9cdd70a3 +size 45829 diff --git a/source/designs/files/rkt/005654.rkt b/source/designs/files/rkt/005654.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1cbe7ae2f3f5e6b798210d8c11d10349203f3835 --- /dev/null +++ b/source/designs/files/rkt/005654.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36cc5822070f567d4ff2f0271e7bcdf491ad3474aec6d14813a85c0602b51a6f +size 78382 diff --git a/source/designs/files/rkt/005655.rkt b/source/designs/files/rkt/005655.rkt new file mode 100644 index 0000000000000000000000000000000000000000..46d8c508e5e50dc4c87266afbe984ef19f73394c --- /dev/null +++ b/source/designs/files/rkt/005655.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d5d95b6677509e17be6d4a0278572406312a3b9db32a8a3fb14ea8a34acbf47 +size 100057 diff --git a/source/designs/files/rkt/005656.rkt b/source/designs/files/rkt/005656.rkt new file mode 100644 index 0000000000000000000000000000000000000000..763d653de8b029bc09f62191c41d988703b1da87 --- /dev/null +++ b/source/designs/files/rkt/005656.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b703cf907acb54f2e3869da8dcc2f06ef1ccf181c8583c3b8483745cccdd3e02 +size 122458 diff --git a/source/designs/files/rkt/005657.rkt b/source/designs/files/rkt/005657.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4de453ca43fd48031cb9ea34962101ecdee8060c --- /dev/null +++ b/source/designs/files/rkt/005657.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cececa69bf3ba73a2b8996e16a5951ad61297897f9354b4ca4d9c0b42fb01f1c +size 51430 diff --git a/source/designs/files/rkt/005658.rkt b/source/designs/files/rkt/005658.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3478054f52b44b11d44fc2a3be006a56d6ee0b55 --- /dev/null +++ b/source/designs/files/rkt/005658.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840d1f8df1f68f06b2b53ad33e32e53c0f38999a75eff5a276f0e8fe6c13b538 +size 87949 diff --git a/source/designs/files/rkt/005659.rkt b/source/designs/files/rkt/005659.rkt new file mode 100644 index 0000000000000000000000000000000000000000..30e6559e47909d53144cc1e313b86c1851221efe --- /dev/null +++ b/source/designs/files/rkt/005659.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7fb5ae91d6e84253b1835ad1019715b7736c465ea104579e1eaae13c22a7b5 +size 47039 diff --git a/source/designs/files/rkt/005660.rkt b/source/designs/files/rkt/005660.rkt new file mode 100644 index 0000000000000000000000000000000000000000..de9fd781a2550f8fa54ddf156a0ad2dc8cf7ae05 --- /dev/null +++ b/source/designs/files/rkt/005660.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcf7afefd9fc7ba3a31f9008093a282c2229695bc78f844efa1d9ed8aaa012b4 +size 73159 diff --git a/source/designs/files/rkt/005661.rkt b/source/designs/files/rkt/005661.rkt new file mode 100644 index 0000000000000000000000000000000000000000..be8adbe8fb0981e28ed4d4d62e438b9d7c341feb --- /dev/null +++ b/source/designs/files/rkt/005661.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d155f06a94671aec04cd257a9c88813a2515aac4d899e162ea6fe4130cb612e2 +size 62512 diff --git a/source/designs/files/rkt/005662.rkt b/source/designs/files/rkt/005662.rkt new file mode 100644 index 0000000000000000000000000000000000000000..96815fc58dfea25d1b36ed9c6bfaada0b247455c --- /dev/null +++ b/source/designs/files/rkt/005662.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d54d692587574b882c916ce156b76f2e5c03abf2dcd9dfdedf8ea15d055f7b +size 88682 diff --git a/source/designs/files/rkt/005663.rkt b/source/designs/files/rkt/005663.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4f1c9700581f657504f83a3329367bc9e3f37c47 --- /dev/null +++ b/source/designs/files/rkt/005663.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a879767680e9cee98c981425606bb74082ac62a055bfd33830b05de2a698d3e +size 67783 diff --git a/source/designs/files/rkt/005664.rkt b/source/designs/files/rkt/005664.rkt new file mode 100644 index 0000000000000000000000000000000000000000..77c06d71aee2379ce16f40f8cb940fe12eb96078 --- /dev/null +++ b/source/designs/files/rkt/005664.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:587b720d4f20cd34018274417103a6e590054d40521451ddb93b0a9562cf0329 +size 79962 diff --git a/source/designs/files/rkt/005665.rkt b/source/designs/files/rkt/005665.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c977ec295a3722162ee4b951eb2fc27dcea79526 --- /dev/null +++ b/source/designs/files/rkt/005665.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d01d119ee9dc64e61df28dc749faf3b3e1ad2d3d2ce1fbea6b983a52eed32b +size 95908 diff --git a/source/designs/files/rkt/005666.rkt b/source/designs/files/rkt/005666.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f314a1d47bfaa9373e8b1991993cdee4021cfd60 --- /dev/null +++ b/source/designs/files/rkt/005666.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d19f3709d50edcac621d88bf3defd5f42e60b0ae0d06ac34ea569bd86fccbeb +size 112867 diff --git a/source/designs/files/rkt/005667.rkt b/source/designs/files/rkt/005667.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a09977a22b504dcccf5858fb048da635650c202a --- /dev/null +++ b/source/designs/files/rkt/005667.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec706577cfa0b788bbedf76c27e794f18d729dd20368f2b06aa4612a9a216bfd +size 83735 diff --git a/source/designs/files/rkt/005668.rkt b/source/designs/files/rkt/005668.rkt new file mode 100644 index 0000000000000000000000000000000000000000..64578ea8309d9efd465e3260244bfcc91f83d70b --- /dev/null +++ b/source/designs/files/rkt/005668.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7728e86a0efdf1aa5c506d6632d8593cd83bc0206cf889df25e95d0db71c6f +size 98691 diff --git a/source/designs/files/rkt/005669.rkt b/source/designs/files/rkt/005669.rkt new file mode 100644 index 0000000000000000000000000000000000000000..287972c9786ab18172bbd3a5f8c69e8eb98636d2 --- /dev/null +++ b/source/designs/files/rkt/005669.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8824147faa4f60249acb851146fb6641b8e55fb2e2701bb5d1ad86c8a1d640a +size 85080 diff --git a/source/designs/files/rkt/005670.rkt b/source/designs/files/rkt/005670.rkt new file mode 100644 index 0000000000000000000000000000000000000000..14ed1b61f9514153cf6a21823c2a38b533866a0c --- /dev/null +++ b/source/designs/files/rkt/005670.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c707b8aa4da43f6cf4c709056e2a2a21524b7f765cfb0af68c924d5d4db0187b +size 76159 diff --git a/source/designs/files/rkt/005671.rkt b/source/designs/files/rkt/005671.rkt new file mode 100644 index 0000000000000000000000000000000000000000..11427b98a1c44ca8ba7203c3e14d657131f5cac9 --- /dev/null +++ b/source/designs/files/rkt/005671.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e47e37b69deb2b11f489d27d9e6e34af7dcc4cb032df6801e8b2bca1df0c398 +size 69967 diff --git a/source/designs/files/rkt/005672.rkt b/source/designs/files/rkt/005672.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7c5053e7edd78e4aa022f11c374117909844b3b1 --- /dev/null +++ b/source/designs/files/rkt/005672.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd15bd2b23dc99c9f906c7b61b7bb5e1153e2522e678744dae2fbf7b55ab0b80 +size 104851 diff --git a/source/designs/files/rkt/005673.rkt b/source/designs/files/rkt/005673.rkt new file mode 100644 index 0000000000000000000000000000000000000000..84367686099bd5d946327a4d763a681e123c8be0 --- /dev/null +++ b/source/designs/files/rkt/005673.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e4a62f77592a50ea22fd5341b46bfe6df994fc3f61f4ab4a78a6977972c36d +size 48201 diff --git a/source/designs/files/rkt/005674.rkt b/source/designs/files/rkt/005674.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5fded575ac49ef2b15ba3dcd0926bf8dd3e814e1 --- /dev/null +++ b/source/designs/files/rkt/005674.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4ceb0773450aead554a77cec7783ef3bd0ed9678e58138d9661e74f95f04c1 +size 84138 diff --git a/source/designs/files/rkt/005675.rkt b/source/designs/files/rkt/005675.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63cfcfad89adaced894e41d8fd807e8b90de9810 --- /dev/null +++ b/source/designs/files/rkt/005675.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ac9555c0c01540f1aec2efc8455357cc08ac5096dd78e80faecb1e9395fc31 +size 83009 diff --git a/source/designs/files/rkt/005676.rkt b/source/designs/files/rkt/005676.rkt new file mode 100644 index 0000000000000000000000000000000000000000..05f99925f3a4c2921848861184b4385ef5ce4053 --- /dev/null +++ b/source/designs/files/rkt/005676.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c055b31712dcf45143c607f153956ebfbd394c8d7544a9810e1cd8d55d7842f +size 75060 diff --git a/source/designs/files/rkt/005677.rkt b/source/designs/files/rkt/005677.rkt new file mode 100644 index 0000000000000000000000000000000000000000..31d8c301686f111a981a916cc40bd1f8976fd12f --- /dev/null +++ b/source/designs/files/rkt/005677.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e579ff6e2a658fea7c30a011250e410a30a890ebc479cded666655bab99eb96 +size 72789 diff --git a/source/designs/files/rkt/005678.rkt b/source/designs/files/rkt/005678.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9e7706edf37bc88ebd0ee0b4390f471de199def5 --- /dev/null +++ b/source/designs/files/rkt/005678.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b16f7eb6cfeed7fac2720b1cb0ff4b0f300dc0078737a19a89d1f81c98f34303 +size 68603 diff --git a/source/designs/files/rkt/005679.rkt b/source/designs/files/rkt/005679.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eb12218a4f826811054ed67e84a346434c92bbdb --- /dev/null +++ b/source/designs/files/rkt/005679.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8f84f3371f5f5946002495f34ed4d20e8d1b35e4ef8489a20cf39622d48a56 +size 115001 diff --git a/source/designs/files/rkt/005680.rkt b/source/designs/files/rkt/005680.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d6a0d5dd949b620ad3bcb6e5272ca7be439c94be --- /dev/null +++ b/source/designs/files/rkt/005680.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de95e16f52e41b3b82eabe5ebbaef4472c13efa1ebbbb58591b305b01c709f4 +size 46336 diff --git a/source/designs/files/rkt/005681.rkt b/source/designs/files/rkt/005681.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a414819a03dcd430fa2c6b3d8f0ad12d1b900bac --- /dev/null +++ b/source/designs/files/rkt/005681.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2928a88150ab74b6823582b276378505d3095db67869ea673aaaf4d0319414e2 +size 47741 diff --git a/source/designs/files/rkt/005682.rkt b/source/designs/files/rkt/005682.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cb0119bb3746666df26bfa806b11114d809ed230 --- /dev/null +++ b/source/designs/files/rkt/005682.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c96216503980a69e562b31e7db54af14d5bc2f928a3c3b189d478b61d9640bf7 +size 86591 diff --git a/source/designs/files/rkt/005683.rkt b/source/designs/files/rkt/005683.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5bd4e1b191dbfb3484504bd3f514f140be62755b --- /dev/null +++ b/source/designs/files/rkt/005683.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:217dd2f55e3585790f57fd60a09f38008f67b1d28f3202ad8599619f275db08c +size 79059 diff --git a/source/designs/files/rkt/005684.rkt b/source/designs/files/rkt/005684.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7aaaf2c3d59392eb14a8976c293f4b38adb03187 --- /dev/null +++ b/source/designs/files/rkt/005684.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf26c88c4169465a1f90f71d695546e392479d9a2ae6004b95af2fa55bdfec97 +size 52483 diff --git a/source/designs/files/rkt/005685.rkt b/source/designs/files/rkt/005685.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2762fb85733696f4fb36f347528a94e65eb2b875 --- /dev/null +++ b/source/designs/files/rkt/005685.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce893455d549f3c07637826a09dbf44d311b4ce98b4965ae4401d8f4d023d6fe +size 69644 diff --git a/source/designs/files/rkt/005686.rkt b/source/designs/files/rkt/005686.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e55a320a86201f1fb795faffb53c46e05e2b222f --- /dev/null +++ b/source/designs/files/rkt/005686.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da445ad304ff5eda5558f8e24bf4a5cab0a9a7cff849518350ac7aa7d468b11 +size 92082 diff --git a/source/designs/files/rkt/005687.rkt b/source/designs/files/rkt/005687.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bcf7e9956b2ead98de449142a5ff1d9d319b3f58 --- /dev/null +++ b/source/designs/files/rkt/005687.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c313614900efaeb30ddaa91bfa6b2dfd937bca1006112ee3346d79d3377d08 +size 53905 diff --git a/source/designs/files/rkt/005688.rkt b/source/designs/files/rkt/005688.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6aba7032b4ea2537555ca6e0c6e8a10b65a375b8 --- /dev/null +++ b/source/designs/files/rkt/005688.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:911d871be5396467ea1c537913d3f5e1cb98e56d87444b76713c1be8aa29bba9 +size 38355 diff --git a/source/designs/files/rkt/005689.rkt b/source/designs/files/rkt/005689.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7afecfa1b93063d0723b26aec2fe319a90fc6e90 --- /dev/null +++ b/source/designs/files/rkt/005689.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cec793901b931a61285f6a97c9e0885b1210324ed9aef2f64282de666348208 +size 67891 diff --git a/source/designs/files/rkt/005690.rkt b/source/designs/files/rkt/005690.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d3794252aa3a427bc1248f32b4a9d5238f8671e9 --- /dev/null +++ b/source/designs/files/rkt/005690.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5acfe5475d5dbc4b06bee2248839a2e2bdb6952f22e55599c177d0bfb60dc008 +size 58462 diff --git a/source/designs/files/rkt/005691.rkt b/source/designs/files/rkt/005691.rkt new file mode 100644 index 0000000000000000000000000000000000000000..98c15806f4fa91dd6a979548ab0b8cf8fe772c05 --- /dev/null +++ b/source/designs/files/rkt/005691.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a9a26decd6fd6ad065d9d76c54ba596edb47a971e6e888042b4c0ce98a697c +size 54717 diff --git a/source/designs/files/rkt/005692.rkt b/source/designs/files/rkt/005692.rkt new file mode 100644 index 0000000000000000000000000000000000000000..db3938c511ae698e5a03173ce5ff34c7513c7c16 --- /dev/null +++ b/source/designs/files/rkt/005692.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70920ec74920a07cf0c41ae4db8dd1bc6ad9b4410e5b6038d53b80fc3f3ca66c +size 66030 diff --git a/source/designs/files/rkt/005693.rkt b/source/designs/files/rkt/005693.rkt new file mode 100644 index 0000000000000000000000000000000000000000..daa72ae70172888fd0da9e57fc7aac12905476b1 --- /dev/null +++ b/source/designs/files/rkt/005693.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4b4b210a0b1977d64316291045981f0eb2a99a34dde0b1ba4d83bbbf0eeb22 +size 76790 diff --git a/source/designs/files/rkt/005694.rkt b/source/designs/files/rkt/005694.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e9be0d21df1b50a6add80cdc32685ebab847d266 --- /dev/null +++ b/source/designs/files/rkt/005694.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79a87f7f13c7eeaa811a4986793694dd718e76d4365840bc7642335cbf9b6fa +size 70704 diff --git a/source/designs/files/rkt/005695.rkt b/source/designs/files/rkt/005695.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5720fd60e0d23837b7a59cb26292c6431cb6b224 --- /dev/null +++ b/source/designs/files/rkt/005695.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d6c18a87c0bb45208601eb68ae4227d2b7a519a5e8ecb2c5ca8860a27bf1911 +size 72458 diff --git a/source/designs/files/rkt/005696.rkt b/source/designs/files/rkt/005696.rkt new file mode 100644 index 0000000000000000000000000000000000000000..99d9c11520c24a53e0d2d57751f7f0ba831726c8 --- /dev/null +++ b/source/designs/files/rkt/005696.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fbbe5ea7d3fd303001c8a2b0b3477195bdd6596f8c88868c39c63df6c8e54d +size 54152 diff --git a/source/designs/files/rkt/005697.rkt b/source/designs/files/rkt/005697.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d310e1e01fb19cde593009cd80b26834499480e7 --- /dev/null +++ b/source/designs/files/rkt/005697.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1546bd5798da8aa01618d6e7fb098fba7aa212130285ab9a3889f9d3751242c +size 97925 diff --git a/source/designs/files/rkt/005698.rkt b/source/designs/files/rkt/005698.rkt new file mode 100644 index 0000000000000000000000000000000000000000..085b5157f97d38426afaf512a6dbd09b0b61a4c1 --- /dev/null +++ b/source/designs/files/rkt/005698.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be72cb8f437219f2d2feaff3f354079d17b1a8a876bc6728adb150048d5a0394 +size 68809 diff --git a/source/designs/files/rkt/005699.rkt b/source/designs/files/rkt/005699.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1e840bd78ccf112b67a66982518f9e9108302670 --- /dev/null +++ b/source/designs/files/rkt/005699.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8910f20cff71fc45e45d4b1747cce471b814969f34404788b92312e2a4e865 +size 73308 diff --git a/source/designs/files/rkt/005700.rkt b/source/designs/files/rkt/005700.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cf2ecf4f7133ce77c7c97aafb4a30275ee0a4037 --- /dev/null +++ b/source/designs/files/rkt/005700.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84cd65758d564f4508aed6e743472b94678d29a31254d468d7e22f2c43bb0530 +size 46299 diff --git a/source/designs/files/rkt/005701.rkt b/source/designs/files/rkt/005701.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d4f58530ec5381f9db1e12b749a494466d83b08f --- /dev/null +++ b/source/designs/files/rkt/005701.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21f53449eb3b5812ac2fea1b9740abaabd0a1f415846e5b4e8bb268a5701a0e9 +size 48603 diff --git a/source/designs/files/rkt/005702.rkt b/source/designs/files/rkt/005702.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9b37ebb3ea33b22e9ccefb5c2ed915521ac3aa82 --- /dev/null +++ b/source/designs/files/rkt/005702.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678dd6c3bcc348aef057ec442d6288f64e47b52771c4b7429704cd709cd8b7a3 +size 130640 diff --git a/source/designs/files/rkt/005703.rkt b/source/designs/files/rkt/005703.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8a2e39c517b564617d980bddee2ec71824707e51 --- /dev/null +++ b/source/designs/files/rkt/005703.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641ccf02fa3fde08f1aac05ef49f75d030f5379aad14e8d77b99df269bcbe0f1 +size 91270 diff --git a/source/designs/files/rkt/005704.rkt b/source/designs/files/rkt/005704.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2ec8f5510c096995e0533648c10b942cf01f82a0 --- /dev/null +++ b/source/designs/files/rkt/005704.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf89d6610379ba502a31e14e0f12b0573e2a3feb03e0f142cb1145da0461953 +size 52691 diff --git a/source/designs/files/rkt/005705.rkt b/source/designs/files/rkt/005705.rkt new file mode 100644 index 0000000000000000000000000000000000000000..da48a4a47d0768921dd3b770cca1f48f08bdb051 --- /dev/null +++ b/source/designs/files/rkt/005705.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d2b90941e354b2d8a03653aa2097f5b279757939b0b31c44a12f9a62ff489a6 +size 76343 diff --git a/source/designs/files/rkt/005706.rkt b/source/designs/files/rkt/005706.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9aa44dbe06c349b95fbe849f492b585b024df83e --- /dev/null +++ b/source/designs/files/rkt/005706.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546c2963e2b481221fd59b8e12292870f6ca2d9d95345256de0b873ca0617e1e +size 73654 diff --git a/source/designs/files/rkt/005707.rkt b/source/designs/files/rkt/005707.rkt new file mode 100644 index 0000000000000000000000000000000000000000..690df4129445d9829bfb84a784c72c8ee6bd8e6d --- /dev/null +++ b/source/designs/files/rkt/005707.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5184a81ffea991f892df1cff97c6779f8f7be5d303488403c9630e82a506c2 +size 67154 diff --git a/source/designs/files/rkt/005708.rkt b/source/designs/files/rkt/005708.rkt new file mode 100644 index 0000000000000000000000000000000000000000..377b1cfab1dab761749992e110f393a9faaa7ea0 --- /dev/null +++ b/source/designs/files/rkt/005708.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878e1ddb3e4357b2675f696016e84fb8f8efd11b896c999ea6aaa782e4c0ed16 +size 58847 diff --git a/source/designs/files/rkt/005709.rkt b/source/designs/files/rkt/005709.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3275e474c6d0d247f8f09ac184dfbc852051f3cc --- /dev/null +++ b/source/designs/files/rkt/005709.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32f16ec9af4d44d0869116821582d648ab13d04f33432fb8e3502ba7b1456edc +size 89252 diff --git a/source/designs/files/rkt/005710.rkt b/source/designs/files/rkt/005710.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a2e2f522bf58024f65bca93f94a4721dbd697e1c --- /dev/null +++ b/source/designs/files/rkt/005710.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88af44cec8aa37c8ff6e56943bd9ad11ec28e2290d427404ae187326cde09d6a +size 42611 diff --git a/source/designs/files/rkt/005711.rkt b/source/designs/files/rkt/005711.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d274142380dbe79eb5525dcf7785e365bb137405 --- /dev/null +++ b/source/designs/files/rkt/005711.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da1b1f0cbde19cda0a70c3931e3f46cfc40a605f95b3ff1f5c7743b70928449b +size 72932 diff --git a/source/designs/files/rkt/005712.rkt b/source/designs/files/rkt/005712.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1a00a41e646c303d8cbf202853c494ac45017ab2 --- /dev/null +++ b/source/designs/files/rkt/005712.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366d93558b485ad0769516063f6f5fb9b6e5104423264a59a5ec3b2cc3025abe +size 77250 diff --git a/source/designs/files/rkt/005713.rkt b/source/designs/files/rkt/005713.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e8f07a81d64ac7de1113e64d358f3799a230144b --- /dev/null +++ b/source/designs/files/rkt/005713.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef6578a954269ea2e034f3d7c5a815ac6efa9faef22f1ac3f3dd41f57138083 +size 72966 diff --git a/source/designs/files/rkt/005714.rkt b/source/designs/files/rkt/005714.rkt new file mode 100644 index 0000000000000000000000000000000000000000..92f5cf34f366e35a06700c071d65befef1f1c47a --- /dev/null +++ b/source/designs/files/rkt/005714.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c7016e7ce06194581a3513e51004157cab86e41609df00f3b189226b782d6f +size 99558 diff --git a/source/designs/files/rkt/005715.rkt b/source/designs/files/rkt/005715.rkt new file mode 100644 index 0000000000000000000000000000000000000000..368d99040d013e1eb0031501c05800c287184d16 --- /dev/null +++ b/source/designs/files/rkt/005715.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17dd8f9e5691b41eabd9253a679751b6dd20266b58d35bffa38d1618b3dfb1cc +size 72705 diff --git a/source/designs/files/rkt/005716.rkt b/source/designs/files/rkt/005716.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4994e957012822d1d4c892e9ce4f6fb2c22c93c1 --- /dev/null +++ b/source/designs/files/rkt/005716.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31fe2666b45b92f9a593fbda33f95d48ea10eaf025e319e37b458dbd7b7eea42 +size 105696 diff --git a/source/designs/files/rkt/005717.rkt b/source/designs/files/rkt/005717.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4fe6220d49031c3e1942ec078c9bfa60e9222d65 --- /dev/null +++ b/source/designs/files/rkt/005717.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f875b5d39934057ec8d859de4ad273729f9fd0014b597c2027a9ce8868ce186 +size 89276 diff --git a/source/designs/files/rkt/005718.rkt b/source/designs/files/rkt/005718.rkt new file mode 100644 index 0000000000000000000000000000000000000000..74bc3b4beaec412412127e6fe7b61b9a6a47adc7 --- /dev/null +++ b/source/designs/files/rkt/005718.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a8cd2b35d7062c7483026314cef503cef1643a92f2c766eaf8ba5ba5f12fa8 +size 82116 diff --git a/source/designs/files/rkt/005719.rkt b/source/designs/files/rkt/005719.rkt new file mode 100644 index 0000000000000000000000000000000000000000..73284b1b11b94af4062d59fc65e014b9bcaf1111 --- /dev/null +++ b/source/designs/files/rkt/005719.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1244a4b43f5ee5c6fa4c7b47e398e61837feb9bd83dfd249d42fc283d16e118a +size 71625 diff --git a/source/designs/files/rkt/005720.rkt b/source/designs/files/rkt/005720.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cd7a3550d49eca1316f279987d86adc2f1ee95bd --- /dev/null +++ b/source/designs/files/rkt/005720.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082c17db10476890ed301e8ae59013b41c69fb63ef29357049de7e3a13b318fa +size 61902 diff --git a/source/designs/files/rkt/005721.rkt b/source/designs/files/rkt/005721.rkt new file mode 100644 index 0000000000000000000000000000000000000000..901cb1fa65ed42ca7f3231267f922d1d4bea1f77 --- /dev/null +++ b/source/designs/files/rkt/005721.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b918cbb2ceccb3c6af6d524bbc4d97197efab58279c8a0fb915cd4094d8beeb9 +size 163491 diff --git a/source/designs/files/rkt/005722.rkt b/source/designs/files/rkt/005722.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2c9050248b0532f03f8abe651db3059b5e9dd341 --- /dev/null +++ b/source/designs/files/rkt/005722.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131742765301951b6da4b3e7f76460ba1237f6f8220467e05abc4aa34c6c4f60 +size 92345 diff --git a/source/designs/files/rkt/005723.rkt b/source/designs/files/rkt/005723.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c97c8e686f22f0b2ff88f0f969998d3a93623a42 --- /dev/null +++ b/source/designs/files/rkt/005723.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b1d7e314690a7426703b26ade2a48798cb5ca50f6aca4cdcece87a350b83b2 +size 51802 diff --git a/source/designs/files/rkt/005724.rkt b/source/designs/files/rkt/005724.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d15194ecb3ef9c9f0147853c6ecaedc28e3cdbe6 --- /dev/null +++ b/source/designs/files/rkt/005724.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6297cf2e6283ca2330e511869aeb654de07e1a6c1d7c861bd8087d49cef31edc +size 56495 diff --git a/source/designs/files/rkt/005725.rkt b/source/designs/files/rkt/005725.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3414c9a78642f5c73974e60e6e34956b994cfad1 --- /dev/null +++ b/source/designs/files/rkt/005725.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4daf64b898227b8bf3e2acf3db3b406ec481109b1a2e088cdda0239281eeee2 +size 74462 diff --git a/source/designs/files/rkt/005726.rkt b/source/designs/files/rkt/005726.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d8f92511147baf774361b9fa56ccd3743c68d503 --- /dev/null +++ b/source/designs/files/rkt/005726.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70596143f1b4a27b8562221da8e19240e525c2c63921a3fbe728636ecf2bc8f +size 60468 diff --git a/source/designs/files/rkt/005727.rkt b/source/designs/files/rkt/005727.rkt new file mode 100644 index 0000000000000000000000000000000000000000..df16495d5e4f826a33707aaa673bcf11fa26037f --- /dev/null +++ b/source/designs/files/rkt/005727.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cdce6adadf99ce3a8fac0e6521ef33832001c7fdbeabcac77c8d1e6d48007f5 +size 42664 diff --git a/source/designs/files/rkt/005728.rkt b/source/designs/files/rkt/005728.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6e794e3b3164faf6fbbe35d746a46b609056bb0e --- /dev/null +++ b/source/designs/files/rkt/005728.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:019cf3b1571f601adde271609ebd55979a95314db25d02beefef5bf37bfdfab2 +size 70326 diff --git a/source/designs/files/rkt/005729.rkt b/source/designs/files/rkt/005729.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d503e6e3841191d5dac2a5b35594c429eefd3870 --- /dev/null +++ b/source/designs/files/rkt/005729.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04fb974901268bb99bd555bbfa230a1f6d631355fb0d83f963a56c895feb0d5 +size 76598 diff --git a/source/designs/files/rkt/005730.rkt b/source/designs/files/rkt/005730.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fd1a3f7e8ab8f9cedf8a7d02fdf72acd16feda9f --- /dev/null +++ b/source/designs/files/rkt/005730.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c357be1910fb004ca8a322cac6b9eaef311aa7b2379e5e18ef7de49c9ad6ffc0 +size 93169 diff --git a/source/designs/files/rkt/005731.rkt b/source/designs/files/rkt/005731.rkt new file mode 100644 index 0000000000000000000000000000000000000000..11a6cb6ad5f6357d3be83fc3d5775aa3003eff61 --- /dev/null +++ b/source/designs/files/rkt/005731.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1376f1bac69be576e9d4a65bf37640364e3d76abad9f843f0b821691a4001ff +size 71702 diff --git a/source/designs/files/rkt/005732.rkt b/source/designs/files/rkt/005732.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7094b5cb5352e76d2775d8d9162cbcbe3bc1759a --- /dev/null +++ b/source/designs/files/rkt/005732.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb0b11f7cad6401f1ba8b38545970c5061c2f37bce6b57f4d2776e31c5e0396 +size 52904 diff --git a/source/designs/files/rkt/005733.rkt b/source/designs/files/rkt/005733.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b32498f0c9fa2dd4caaf2dde0393765b7ea0e00d --- /dev/null +++ b/source/designs/files/rkt/005733.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ef610b85c1ed112fa339b61b6361dbce13571e4d61e5e8ccc171760b6c7585 +size 56217 diff --git a/source/designs/files/rkt/005734.rkt b/source/designs/files/rkt/005734.rkt new file mode 100644 index 0000000000000000000000000000000000000000..62ca9ff4069b3ec3747c80f55cb377c75c15fccf --- /dev/null +++ b/source/designs/files/rkt/005734.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08773aca9c742ff4c47fed8317189dc0b7c2c619d31eec49106025b4e2e1d826 +size 106509 diff --git a/source/designs/files/rkt/005735.rkt b/source/designs/files/rkt/005735.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d7df4597822ebfbbbcf25896b2964c62bff7ba55 --- /dev/null +++ b/source/designs/files/rkt/005735.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7edc6aae29d722ba10930b376f7aae0d6554adc2bf8aacb5a1afbda2959fb63f +size 46436 diff --git a/source/designs/files/rkt/005736.rkt b/source/designs/files/rkt/005736.rkt new file mode 100644 index 0000000000000000000000000000000000000000..14f7ae1d107be710765ede87d6522a675ae51587 --- /dev/null +++ b/source/designs/files/rkt/005736.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d6c0dd25a061a287fea554b196e22ae1b5383d4a50cee2ccea14b7469f6b2a2 +size 73532 diff --git a/source/designs/files/rkt/005737.rkt b/source/designs/files/rkt/005737.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ccf3704dc267cec3cfe3d68da3d5ee21b70c0242 --- /dev/null +++ b/source/designs/files/rkt/005737.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162c435527c0e2c06f50e6946bc74e3a5ad078cf19076948727159bc5d8d8b74 +size 92652 diff --git a/source/designs/files/rkt/005738.rkt b/source/designs/files/rkt/005738.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b2a162e3d5792eef22aaf92e7d64ea5bb140891a --- /dev/null +++ b/source/designs/files/rkt/005738.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb281e02190a46290c574066d3f275b5eda8c101bd92f2f8ca621ee5acf96c8 +size 74357 diff --git a/source/designs/files/rkt/005739.rkt b/source/designs/files/rkt/005739.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6b2e1400456b48a5a3a628e4868c2c7a24b23fed --- /dev/null +++ b/source/designs/files/rkt/005739.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0979306837823c2070083495670032b2486ed39440c059fbe90345a3d4fd59e +size 91500 diff --git a/source/designs/files/rkt/005740.rkt b/source/designs/files/rkt/005740.rkt new file mode 100644 index 0000000000000000000000000000000000000000..62c0954d39276fb41a92914c9462d6bda2f88f0a --- /dev/null +++ b/source/designs/files/rkt/005740.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372d6aee07cf00eff430d96d512a4a3e70315032dda333984070b79c30d012e1 +size 33550 diff --git a/source/designs/files/rkt/005741.rkt b/source/designs/files/rkt/005741.rkt new file mode 100644 index 0000000000000000000000000000000000000000..94d3f1348f35a8ecadc2137987b99b4e273e50db --- /dev/null +++ b/source/designs/files/rkt/005741.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d50865a0072b6eb7d86c6c5350f8d6d572b853b92b05c204d36f56385e6320 +size 48560 diff --git a/source/designs/files/rkt/005742.rkt b/source/designs/files/rkt/005742.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d185764bd89105ea6a0466b9590fba6ffb9b3ab8 --- /dev/null +++ b/source/designs/files/rkt/005742.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311b555b2de06d380d5b45e1e40b39c2b46e4704f820e3146a0fd4b3805529f1 +size 105076 diff --git a/source/designs/files/rkt/005743.rkt b/source/designs/files/rkt/005743.rkt new file mode 100644 index 0000000000000000000000000000000000000000..18c0e90f810697dba066db25b1c4afe285069d25 --- /dev/null +++ b/source/designs/files/rkt/005743.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78a8fc63e60505fa03f2f112aab7b0590220bd2e5234f72049f042d48064add +size 75368 diff --git a/source/designs/files/rkt/005744.rkt b/source/designs/files/rkt/005744.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b701b92ad8c259d1b664689e55e05bbbbd153889 --- /dev/null +++ b/source/designs/files/rkt/005744.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beeb7a296e834573e6e2bbedde12609c5ebc6f26a22608ee9bf064eab0118670 +size 89871 diff --git a/source/designs/files/rkt/005745.rkt b/source/designs/files/rkt/005745.rkt new file mode 100644 index 0000000000000000000000000000000000000000..32d93789051d736d978c3d58b20322ef0eee4535 --- /dev/null +++ b/source/designs/files/rkt/005745.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:111009e20de8592a18f696ba70ea1f87595c4ca184cef87041e130e53edede7a +size 58162 diff --git a/source/designs/files/rkt/005746.rkt b/source/designs/files/rkt/005746.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c865c1b4fbec8b5517b2c717e55d02d567795de3 --- /dev/null +++ b/source/designs/files/rkt/005746.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00aeb736a31c5749e33be71f1e4bb4aa79747fd413a4915b0f8532771ffe8bb +size 41373 diff --git a/source/designs/files/rkt/005747.rkt b/source/designs/files/rkt/005747.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e123565602dff8d1a2f80e80bb1feb979b58e6d6 --- /dev/null +++ b/source/designs/files/rkt/005747.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3282d22f4c72866826aee7437d185395f7e92b630eb927af4128ec5e9498fee7 +size 81860 diff --git a/source/designs/files/rkt/005748.rkt b/source/designs/files/rkt/005748.rkt new file mode 100644 index 0000000000000000000000000000000000000000..45716003b2c421c3bdc70653335d6c91bc8294d2 --- /dev/null +++ b/source/designs/files/rkt/005748.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb32ea25f2c7d7fd65a985a1ed9c12de54a23fdaccc91cd16736c317cbead9d +size 76873 diff --git a/source/designs/files/rkt/005749.rkt b/source/designs/files/rkt/005749.rkt new file mode 100644 index 0000000000000000000000000000000000000000..381190cd43ea6562a712294f076f2d3909cfa4fd --- /dev/null +++ b/source/designs/files/rkt/005749.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc6ca84b77096ff6d833443bb3ab3da48cd33e5fbb87f6b89fabf55c5619af6 +size 52644 diff --git a/source/designs/files/rkt/005750.rkt b/source/designs/files/rkt/005750.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c105acc2a73730ff4569f5064b9fdd9171faedbe --- /dev/null +++ b/source/designs/files/rkt/005750.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92ed24bd53b94029bf42ecca6686c7bedcb6051c6c0c95de437d5043dd818d68 +size 44500 diff --git a/source/designs/files/rkt/005751.rkt b/source/designs/files/rkt/005751.rkt new file mode 100644 index 0000000000000000000000000000000000000000..82acb8427c153362ed2dfb12e442cc8772abe5e5 --- /dev/null +++ b/source/designs/files/rkt/005751.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc808671bfc6d5e3c1d8a31d7cb55cbafa0ba6414e48770b3867c9ecc62f307a +size 25081 diff --git a/source/designs/files/rkt/005752.rkt b/source/designs/files/rkt/005752.rkt new file mode 100644 index 0000000000000000000000000000000000000000..347bd2782e7c2812b6ec218d201cc34841390890 --- /dev/null +++ b/source/designs/files/rkt/005752.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25d7f1b0ee391c13a68da9691e1ae9490896a8dbd70db6ffeb238fe2e04587b0 +size 15850 diff --git a/source/designs/files/rkt/005753.rkt b/source/designs/files/rkt/005753.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4dd48cc70d3aac660bc699b4627b2f3734252a69 --- /dev/null +++ b/source/designs/files/rkt/005753.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b902834ffbc259408d74fb2653209bdfb0e98bfcb5ac96f6891a2ec84a630f2a +size 31058 diff --git a/source/designs/files/rkt/005754.rkt b/source/designs/files/rkt/005754.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d4b9ba60a761c8da147682566470828a343a4125 --- /dev/null +++ b/source/designs/files/rkt/005754.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fdd4e65764e65c69fd91f2dfdf1c2306cfb38567a9d6226d6eb6583d7ac9db +size 43685 diff --git a/source/designs/files/rkt/005755.rkt b/source/designs/files/rkt/005755.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2d6045e37b81c064bc680049c9fffac6384107d2 --- /dev/null +++ b/source/designs/files/rkt/005755.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744dc0d686de5fc7e1a979b128c5ec19a173a2bd58fb36801637c68f2e5315ce +size 68793 diff --git a/source/designs/files/rkt/005756.rkt b/source/designs/files/rkt/005756.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6d5223b25bcc8f1a01b273aea75bd73d164dc0d9 --- /dev/null +++ b/source/designs/files/rkt/005756.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d341cd8487af88569c0c5aec50e422ee5ae323906e0d2f819eaf3c3fa96bd10d +size 69879 diff --git a/source/designs/files/rkt/005757.rkt b/source/designs/files/rkt/005757.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b631842b856a094959e2f18d4d40b9c1cc92881c --- /dev/null +++ b/source/designs/files/rkt/005757.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49947ccda32ff6a993bd87004f1bee6860619f60a5e7a505bf79bd653ce2110a +size 41178 diff --git a/source/designs/files/rkt/005758.rkt b/source/designs/files/rkt/005758.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bf94f6fef0f39e0d54bac94ee8a1d7642dca9307 --- /dev/null +++ b/source/designs/files/rkt/005758.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98bc060d166a64656625f543a36b562ae0bac96aae18960bd8e91706e1aed0a +size 44125 diff --git a/source/designs/files/rkt/005759.rkt b/source/designs/files/rkt/005759.rkt new file mode 100644 index 0000000000000000000000000000000000000000..903ff4a49ec7a064703fa471f113e2b410f41bfe --- /dev/null +++ b/source/designs/files/rkt/005759.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d54afe9efaa71527db6046799fcc382d1c74f8896306da9a8fc813bf7cf25559 +size 76498 diff --git a/source/designs/files/rkt/005760.rkt b/source/designs/files/rkt/005760.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9f5768574bd74f3e45c2ab0ec5a5e2bf6ae17972 --- /dev/null +++ b/source/designs/files/rkt/005760.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cbf2ee173c23dd5390469e5acaf17cbd05b17f79cb3a9f93a288da5fbb39033 +size 13880 diff --git a/source/designs/files/rkt/005761.rkt b/source/designs/files/rkt/005761.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0a926a067d73214d578e1f7434c49147b3eabfc5 --- /dev/null +++ b/source/designs/files/rkt/005761.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5a39dbfe0cfa3a32e16f8063d83d590782b94e489b8d742cea70346fe17a13 +size 84653 diff --git a/source/designs/files/rkt/005762.rkt b/source/designs/files/rkt/005762.rkt new file mode 100644 index 0000000000000000000000000000000000000000..14d03e784f218769a6c2a72bd836228ce81f801c --- /dev/null +++ b/source/designs/files/rkt/005762.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:915d8dba55f74f11eb570b9ce9d2507ddb82522a960bddaabd7da7cbe95de16d +size 46994 diff --git a/source/designs/files/rkt/005763.rkt b/source/designs/files/rkt/005763.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1701fd6d0f9c8e6abb070053479b868170586403 --- /dev/null +++ b/source/designs/files/rkt/005763.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b7b03e312fb3c409eeb72e4b21f91bceff2ae594ed302d73e4a098d53a7a64 +size 89864 diff --git a/source/designs/files/rkt/005764.rkt b/source/designs/files/rkt/005764.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a8bf073ea26712dbbfe4edad9d07592ee9c527c1 --- /dev/null +++ b/source/designs/files/rkt/005764.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d64aeb8dc60e0312b82b1287fc8753467ed2912bc559532c9f38833d9bd91045 +size 40878 diff --git a/source/designs/files/rkt/005765.rkt b/source/designs/files/rkt/005765.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0e31959963588c8fd1b67bdc7c6ccd468cad67ac --- /dev/null +++ b/source/designs/files/rkt/005765.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6978abfeddebf2317d05159c1252c443a671dc0ce7de8bfc3b094826244f3e +size 36299 diff --git a/source/designs/files/rkt/005766.rkt b/source/designs/files/rkt/005766.rkt new file mode 100644 index 0000000000000000000000000000000000000000..18e9b3a2de47f80486606d6745dd5ef8424e093e --- /dev/null +++ b/source/designs/files/rkt/005766.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db1fc943faeeb21fdee938746b07a9550d9c037d7ea3181187fca0114070b07 +size 41865 diff --git a/source/designs/files/rkt/005767.rkt b/source/designs/files/rkt/005767.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f821c401eef069c198ca465dda875d03c9b11c1e --- /dev/null +++ b/source/designs/files/rkt/005767.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3cd284752847b7d34f5136968cd7007b88ae7ca9c275256b9782aa8cfc3cf1b +size 39601 diff --git a/source/designs/files/rkt/005768.rkt b/source/designs/files/rkt/005768.rkt new file mode 100644 index 0000000000000000000000000000000000000000..329615376e52e5743e4f080d155b0e6dd719a2cf --- /dev/null +++ b/source/designs/files/rkt/005768.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f80230241fd47ca49206c544e1167c499d7f3e01d6de0061e107bfa08471f6 +size 31570 diff --git a/source/designs/files/rkt/005769.rkt b/source/designs/files/rkt/005769.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c1e2794cf7e0f3f9d2bf33ec4a943509bfabbc4a --- /dev/null +++ b/source/designs/files/rkt/005769.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5a804dcaaed58291054a0ef14f700c4962ea58fd2b38df9a278373b35edb5b +size 42566 diff --git a/source/designs/files/rkt/005771.rkt b/source/designs/files/rkt/005771.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e278371947c7cd9408001081fa7c2e0cfb14504f --- /dev/null +++ b/source/designs/files/rkt/005771.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2153170fa42c078cb20fef2cfe005765667a317940dce7ed7456d675503038e +size 33093 diff --git a/source/designs/files/rkt/005772.rkt b/source/designs/files/rkt/005772.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a9aa25974710ae70d85df4a21b3fa9477d47ccea --- /dev/null +++ b/source/designs/files/rkt/005772.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dbf5bda6ab6948fde2ebdbab07ed6667a14d1aa8dbf01994aa64afc410c5609 +size 31169 diff --git a/source/designs/files/rkt/005773.rkt b/source/designs/files/rkt/005773.rkt new file mode 100644 index 0000000000000000000000000000000000000000..18924bdfd9b667d792ea09cffc56c8d0b208348e --- /dev/null +++ b/source/designs/files/rkt/005773.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890aaf8d28fc5cc6c8ff96d1efff0bc44a1e6a8d2868ead37e8510523718f296 +size 17927 diff --git a/source/designs/files/rkt/005774.rkt b/source/designs/files/rkt/005774.rkt new file mode 100644 index 0000000000000000000000000000000000000000..22ee4f5d2afdada73181ed9d97ab0a7dc8382d68 --- /dev/null +++ b/source/designs/files/rkt/005774.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b4a22c5170591f907880a47dd3825ebc617076fc6ac7f8a737ae3103ead896 +size 95370 diff --git a/source/designs/files/rkt/005775.rkt b/source/designs/files/rkt/005775.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5e38ac8e196054805cc93110a44fbb9a3d264abe --- /dev/null +++ b/source/designs/files/rkt/005775.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c59ae1c560ed734f83f961ae7ffe4c5e253e2105bc1cb1122d41103e7b89be +size 82792 diff --git a/source/designs/files/rkt/005776.rkt b/source/designs/files/rkt/005776.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c6100d097bab458fcef8669b8096c2f819b66606 --- /dev/null +++ b/source/designs/files/rkt/005776.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8866ad47d1d4cc4a95bc0a3c9cbed91a45a772294004ec336ae3cf97c56f4d8 +size 47472 diff --git a/source/designs/files/rkt/005777.rkt b/source/designs/files/rkt/005777.rkt new file mode 100644 index 0000000000000000000000000000000000000000..feb71b33aab8415c6eead031019838dce3620c6b --- /dev/null +++ b/source/designs/files/rkt/005777.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97381c0d8b30d0a78913da555a390b2fb4d14fb69c6e2e7a7206c6b5934f3d62 +size 120258 diff --git a/source/designs/files/rkt/005778.rkt b/source/designs/files/rkt/005778.rkt new file mode 100644 index 0000000000000000000000000000000000000000..196ce5072d4ae2efe4e10d6fd675c264e49fe30b --- /dev/null +++ b/source/designs/files/rkt/005778.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e100328c017220e0a5da07a61c27ca25b00a3208692c7ddd7e22cd7c5f8b3c29 +size 136006 diff --git a/source/designs/files/rkt/005779.rkt b/source/designs/files/rkt/005779.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2679a445f0b2cf29860564f84bdb700791336d19 --- /dev/null +++ b/source/designs/files/rkt/005779.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d8176676f57554a656ea5bb37954426be742f30fddd25653ae1b4e45f2a5e0 +size 22385 diff --git a/source/designs/files/rkt/005780.rkt b/source/designs/files/rkt/005780.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9f91bedc8e062004f8f05aab6ba69d731f0c5c17 --- /dev/null +++ b/source/designs/files/rkt/005780.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f3e6e24b167d5f03ae21606b935e7894282b305c925a493fb4c8ae25764b18 +size 53181 diff --git a/source/designs/files/rkt/005781.rkt b/source/designs/files/rkt/005781.rkt new file mode 100644 index 0000000000000000000000000000000000000000..543fa9d11e17c40462d17f8df73570b42d3f0856 --- /dev/null +++ b/source/designs/files/rkt/005781.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a19c2ba928988e9a9fd086e5da93e5f09b6dcc2447c5b0cb4eb026023e2ad81 +size 32817 diff --git a/source/designs/files/rkt/005783.rkt b/source/designs/files/rkt/005783.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d0f0492d0f15c78afadc56d421d0902bcebf520f --- /dev/null +++ b/source/designs/files/rkt/005783.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04cf659a188093209562707874e34afc82118642c099eb8eec3dac2c8f8f6ad +size 109581 diff --git a/source/designs/files/rkt/005784.rkt b/source/designs/files/rkt/005784.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f58b28457c63318dbc96a0c48f41a9aa6edeefa5 --- /dev/null +++ b/source/designs/files/rkt/005784.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c17c1869694c28108219550303fc2c40b81f4b60949860894148a382216ce8e +size 114257 diff --git a/source/designs/files/rkt/005785.rkt b/source/designs/files/rkt/005785.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7bf0cbbea78843d13a104e3e0f57de6ac4c168fe --- /dev/null +++ b/source/designs/files/rkt/005785.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b339a44c118c8c82231bea74af3eb80c9858cfb38068ddaca3a950e8c9942a +size 43166 diff --git a/source/designs/files/rkt/005786.rkt b/source/designs/files/rkt/005786.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c0af97a4f6ea559a247750b1d26d0d7ec2192220 --- /dev/null +++ b/source/designs/files/rkt/005786.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9868cb4435fab17d686abda7b054f3d034e061924147fce7d7bc9fa31f0db96e +size 47749 diff --git a/source/designs/files/rkt/005787.rkt b/source/designs/files/rkt/005787.rkt new file mode 100644 index 0000000000000000000000000000000000000000..21fee8f72633e76097d0c1420bc9800cb4497601 --- /dev/null +++ b/source/designs/files/rkt/005787.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99beddcc6e5526afdafd33807aaca474664918ed3b6002042a9fae98292a17d +size 48671 diff --git a/source/designs/files/rkt/005788.rkt b/source/designs/files/rkt/005788.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e4bd6ec5f7360a831189dcd268b1b530048e94d2 --- /dev/null +++ b/source/designs/files/rkt/005788.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:045794fc80f2b52b526a90b349c2ed8acfbb0c8cdb8e5fdf18f0216b740f7cc9 +size 22245 diff --git a/source/designs/files/rkt/005789.rkt b/source/designs/files/rkt/005789.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7d47441ccd0cd02994c03550dbe2da3a7d0caf98 --- /dev/null +++ b/source/designs/files/rkt/005789.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e861458ebde632e48c1356c62a4f3ac2dcc299bb4466dcd49564590806df26a8 +size 52920 diff --git a/source/designs/files/rkt/005790.rkt b/source/designs/files/rkt/005790.rkt new file mode 100644 index 0000000000000000000000000000000000000000..42794e13079b2cdbb6c8d635aadffb5d5e77d2d1 --- /dev/null +++ b/source/designs/files/rkt/005790.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade06ec000bf3a246fb5e6f527e623ba6dba0e0b055ded0882a2106314d59827 +size 120818 diff --git a/source/designs/files/rkt/005791.rkt b/source/designs/files/rkt/005791.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2ee090f3f21450cffe414a02a16258f3870db03b --- /dev/null +++ b/source/designs/files/rkt/005791.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5dc2fb2e4ac8ac0f8ada396a41bd2c04f37838eb91fa2f485301a72a215629 +size 55953 diff --git a/source/designs/files/rkt/005792.rkt b/source/designs/files/rkt/005792.rkt new file mode 100644 index 0000000000000000000000000000000000000000..191fa76b43ec6349687e0043558330b8fec091e6 --- /dev/null +++ b/source/designs/files/rkt/005792.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7aeba00a134cc4f9dedf5900a5b38459f3fd05228085c58e3f4453911a3c135e +size 146836 diff --git a/source/designs/files/rkt/005793.rkt b/source/designs/files/rkt/005793.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8719761d27cae1bc6de7c671ab5e60c4c76a4788 --- /dev/null +++ b/source/designs/files/rkt/005793.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf86fbe6ed4260f26b8039ebcc02b2a47697e58a37a16dbf7e24115014edc85 +size 134389 diff --git a/source/designs/files/rkt/005794.rkt b/source/designs/files/rkt/005794.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9fa673b516d1f95028ad99960fba3f501ef0e8a7 --- /dev/null +++ b/source/designs/files/rkt/005794.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b860983d848df34a062bf2f874cd4a9fed4e7fe28d82ab3688f15545e2fcd0bc +size 121957 diff --git a/source/designs/files/rkt/005795.rkt b/source/designs/files/rkt/005795.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e92ef61640c234f0efaad2db5ffc2dc2c7f277fc --- /dev/null +++ b/source/designs/files/rkt/005795.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c152163c6e65515aabb181d8c6b4b5b768a312cfd413e79fb57f66ba779f45 +size 161739 diff --git a/source/designs/files/rkt/005796.rkt b/source/designs/files/rkt/005796.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ec40d2c9747adc7de89a641272a29abeadf98488 --- /dev/null +++ b/source/designs/files/rkt/005796.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c32b612e953bf9c194ed4bbdf6c0fa3331266155a77dec9dca515fbd8ee243f +size 154325 diff --git a/source/designs/files/rkt/005797.rkt b/source/designs/files/rkt/005797.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b74c36b660e06f8d0f7208bac80b1a8b5207787c --- /dev/null +++ b/source/designs/files/rkt/005797.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f2729ac3bfaea400c869e0f56c84d1eec1fb948fe3b0f32e17b5ebb59aee31c +size 96601 diff --git a/source/designs/files/rkt/005798.rkt b/source/designs/files/rkt/005798.rkt new file mode 100644 index 0000000000000000000000000000000000000000..13f17fe5ef4734531606223c9ecdf0b7831abd90 --- /dev/null +++ b/source/designs/files/rkt/005798.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4e358d49d9a8191587f292bbf37a530830398c51f7f59a6bd78feb8e241ff6 +size 190483 diff --git a/source/designs/files/rkt/005799.rkt b/source/designs/files/rkt/005799.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9e65d3f786032b02ec063d79d8fde8fbaaa1d18b --- /dev/null +++ b/source/designs/files/rkt/005799.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:503c29158c641adfb28bf3320c08a0fded7a0310680e56bc5559127a8a592dc6 +size 97869 diff --git a/source/designs/files/rkt/005836.rkt b/source/designs/files/rkt/005836.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8df370d9687093b0dc574ee2d088f1f70f63c766 --- /dev/null +++ b/source/designs/files/rkt/005836.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7786f3921e4c02dda1788581519bd7dd3608ee5171fd8e93131e887b1871cc75 +size 175965 diff --git a/source/designs/files/rkt/005838.rkt b/source/designs/files/rkt/005838.rkt new file mode 100644 index 0000000000000000000000000000000000000000..dd71ecdf6b612056f406f97cf292da95b9ebdbec --- /dev/null +++ b/source/designs/files/rkt/005838.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c91502b5168fc279311a058f4bddd17f5bb0c465fedb51425c5ae83e783259 +size 79618 diff --git a/source/designs/files/rkt/005839.rkt b/source/designs/files/rkt/005839.rkt new file mode 100644 index 0000000000000000000000000000000000000000..be7cb7daa2113a2ad20229665e4c98cc909d67f1 --- /dev/null +++ b/source/designs/files/rkt/005839.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36fcfec758a2ca6d549ea20c9eb6d1ff6921f67eec426d182772d1afbcf04363 +size 86737 diff --git a/source/designs/files/rkt/005845.rkt b/source/designs/files/rkt/005845.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9263f467ff2ca88fa988ed5a7122f6f4915cb2e9 --- /dev/null +++ b/source/designs/files/rkt/005845.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c4b7f1557e0f3cbab916330e510a14f91cf05b0b7a81969e59e604ae5c214e7 +size 87673 diff --git a/source/designs/files/rkt/005873.rkt b/source/designs/files/rkt/005873.rkt new file mode 100644 index 0000000000000000000000000000000000000000..80a9c82aa664ad6ec08b1e54942282161f4253ca --- /dev/null +++ b/source/designs/files/rkt/005873.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018df111b09ed6810dfa3f4b220949fb7237cee806d877f71d37ed2a6b880615 +size 51899 diff --git a/source/designs/files/rkt/005876.rkt b/source/designs/files/rkt/005876.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0c5a32c895c9bb532877160b547e0950b0bc81ab --- /dev/null +++ b/source/designs/files/rkt/005876.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f39b1fcfc3a52692ddd320d615c4a30ef0f74e331a22a34acc9e807525f270 +size 47663 diff --git a/source/designs/files/rkt/005890.rkt b/source/designs/files/rkt/005890.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b5a3de5e609d5961b7c6078d152f4526a5605ab4 --- /dev/null +++ b/source/designs/files/rkt/005890.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc2ae185a882d2c1ab8cf93943a8d28bb5ef949d9e0596819389de38dda1cea +size 62165 diff --git a/source/designs/files/rkt/005891.rkt b/source/designs/files/rkt/005891.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e45310172494f9f3311ae4f7359c2b782e6f16c4 --- /dev/null +++ b/source/designs/files/rkt/005891.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9d72f070e446c46ab50602a6502604b46fbb193dc207072a437485fbc5e51c +size 69289 diff --git a/source/designs/files/rkt/006398.rkt b/source/designs/files/rkt/006398.rkt new file mode 100644 index 0000000000000000000000000000000000000000..984f4b6b9ae28554313f52ceb1851ca64a818702 --- /dev/null +++ b/source/designs/files/rkt/006398.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e02e9c711268b6cf57a658c3e5932c22b46b312e98eff868d1f11e6168885b2 +size 56280 diff --git a/source/designs/files/rkt/007504.rkt b/source/designs/files/rkt/007504.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f1868107e628b500e5b678ff81dffd72b2a4e63a --- /dev/null +++ b/source/designs/files/rkt/007504.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:954cb29075a26774e34418dbdb43580c3a318be94528c4bad8d61f041425ac38 +size 227645 diff --git a/source/designs/files/rkt/007518.rkt b/source/designs/files/rkt/007518.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7adc8bb6fe58130b45b944c8b228411c803e887e --- /dev/null +++ b/source/designs/files/rkt/007518.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b90fbf5adcb9a138182557aba711a89fd6ac84cb0c1c96291d8d26254febb5 +size 21310 diff --git a/source/designs/files/rkt/007540.rkt b/source/designs/files/rkt/007540.rkt new file mode 100644 index 0000000000000000000000000000000000000000..81d648ef297bed7843fb02cde37ced315af2d9ad --- /dev/null +++ b/source/designs/files/rkt/007540.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb423ad02d6e1cbe8ab79f22e9b82cb42d478e8640571eafa33ca66934ae59cc +size 111932 diff --git a/source/designs/files/rkt/009493.rkt b/source/designs/files/rkt/009493.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1af2f3c9451bcfb22941dd76333cb62b779a8c21 --- /dev/null +++ b/source/designs/files/rkt/009493.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83e6a6a29a350ed43b1efcd41a136f29237cc78c7e3ae6e88cb13e1a5d5189a +size 105303 diff --git a/source/designs/files/rkt/009614.rkt b/source/designs/files/rkt/009614.rkt new file mode 100644 index 0000000000000000000000000000000000000000..46ee78286bf21e8f4e5a9a67a2e2924514502b06 --- /dev/null +++ b/source/designs/files/rkt/009614.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5f57cfbf5f3b7efbde852883fb24bdd60c97daf138bb0f8e34d97e53fcfe07 +size 56115 diff --git a/source/designs/files/rkt/009615.rkt b/source/designs/files/rkt/009615.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9a9cf9cc082d344f532e2b7c892f742fb650d09d --- /dev/null +++ b/source/designs/files/rkt/009615.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef91f726d8aa6aeb7f336cfcac6dc86ff60715ad49cf4acbae831e0096a13365 +size 54569 diff --git a/source/designs/files/rkt/009650.rkt b/source/designs/files/rkt/009650.rkt new file mode 100644 index 0000000000000000000000000000000000000000..722123762a52c788a84dd526e622c4973ad25890 --- /dev/null +++ b/source/designs/files/rkt/009650.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd521bf6dea1b5d992aff6a0bbec658cd81287b58bc65bc2badced1896913510 +size 80251 diff --git a/source/designs/files/rkt/010932.rkt b/source/designs/files/rkt/010932.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8fccf9f63ea5069245ed5e975f15e8f63dc89f05 --- /dev/null +++ b/source/designs/files/rkt/010932.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d723a80c303fddb3dc7b303f394d46fb353cbbcfee1dc59ee12674706dfd473 +size 69837 diff --git a/source/designs/files/rkt/010975.rkt b/source/designs/files/rkt/010975.rkt new file mode 100644 index 0000000000000000000000000000000000000000..03acc950b86fde48d807e51408e4218c78e6d211 --- /dev/null +++ b/source/designs/files/rkt/010975.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b1ba668ca5677c9b7b035ccfda03bdf7efe50766f9ccf6bf980f1fe67880e6 +size 57485 diff --git a/source/designs/files/rkt/010977.rkt b/source/designs/files/rkt/010977.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d3b88348f8f35d29a3ac258d86f083d10ee448c6 --- /dev/null +++ b/source/designs/files/rkt/010977.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538dbf57ddf923ceaaf53b285641ccaaf9330eb51a6033d94d286ac6300c4485 +size 56057 diff --git a/source/designs/files/rkt/010981.rkt b/source/designs/files/rkt/010981.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2b6c42142256af5a2890750544b0954e8fa755fc --- /dev/null +++ b/source/designs/files/rkt/010981.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f08d3709501e9b8f22333e524bbcc92c1a8c7a6a7e2585f24e048f3b9db67a28 +size 55164 diff --git a/source/designs/files/rkt/011007.rkt b/source/designs/files/rkt/011007.rkt new file mode 100644 index 0000000000000000000000000000000000000000..86f6d3cb0dff36e15201beb405f68791a20383e7 --- /dev/null +++ b/source/designs/files/rkt/011007.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0993e3f575dfb7cd50a08c1eba95a4ebb5060415c6b74da78ab0221ac6976b45 +size 41527 diff --git a/source/designs/files/rkt/011008.rkt b/source/designs/files/rkt/011008.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3db17800bfaab7cf26690e45f813703df03fffeb --- /dev/null +++ b/source/designs/files/rkt/011008.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e45d4912c69cb688c47d27cedefa1b1d460705783084df4dd5e0f2481cec52 +size 39116 diff --git a/source/designs/files/rkt/011071.rkt b/source/designs/files/rkt/011071.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7135c862bf5d9e1b267adc7139655fd2fc282e35 --- /dev/null +++ b/source/designs/files/rkt/011071.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b039c0d3fdeb999812af284c91ee10378d1646fa9e0997c29323868077adcbf +size 93389 diff --git a/source/designs/files/rkt/011348.rkt b/source/designs/files/rkt/011348.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c91798bd0a0d31fb3222c9fd6db393a5ed6159fe --- /dev/null +++ b/source/designs/files/rkt/011348.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d1ca84da251e7a355d2f54194b8dd6b4671a60bd0bdd41a8773a9d053c3033 +size 96117 diff --git a/source/designs/files/rkt/011350.rkt b/source/designs/files/rkt/011350.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4b755a21924351797a1ab5915f20740b6a14d0e3 --- /dev/null +++ b/source/designs/files/rkt/011350.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a3279b67966f76ae1dda551adbb15c7c24995fcb4aa9bb1b870a975b69f579 +size 171584 diff --git a/source/designs/files/rkt/011351.rkt b/source/designs/files/rkt/011351.rkt new file mode 100644 index 0000000000000000000000000000000000000000..87e056684aafc6f6690e4f910df87f347ffeb931 --- /dev/null +++ b/source/designs/files/rkt/011351.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adcb026109f37a45abb2d1fbf5f9089b80688b2b24ffa5db332fcbeb0b747588 +size 98808 diff --git a/source/designs/files/rkt/012839.rkt b/source/designs/files/rkt/012839.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea586c04ad8ceb20d430c4e9d2974660d9bbf599 --- /dev/null +++ b/source/designs/files/rkt/012839.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8f4d3eacb54f0646cefa44feebb73a5ae83a11d07ccf57c1f1b67bbda952011 +size 75244 diff --git a/source/designs/files/rkt/015513.rkt b/source/designs/files/rkt/015513.rkt new file mode 100644 index 0000000000000000000000000000000000000000..be1f998c0e4496de913bf0f74ae8494deeeb25f1 --- /dev/null +++ b/source/designs/files/rkt/015513.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6fdfbf5e10838fd1aab619888e7e61337b13ad48a32995c8f3be1456eac5c5c +size 55511 diff --git a/source/designs/files/rkt/015655.rkt b/source/designs/files/rkt/015655.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f605f2a9b6d4caad481dcb48e30908f1e7bf1cab --- /dev/null +++ b/source/designs/files/rkt/015655.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d93e0ad5a4c16d9730824dbd514c1ff4c4adcd340787ee5b7b3b45bfae6cfe98 +size 72515 diff --git a/source/designs/files/rkt/021092.rkt b/source/designs/files/rkt/021092.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e2d762c0df07bb4ada583b46d70fe528b90f4a95 --- /dev/null +++ b/source/designs/files/rkt/021092.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b09aad34d9d8cf5109c2c7313d787ad390ff59d4919fd6402354d8fdf1c892 +size 46809 diff --git a/source/designs/files/rkt/025315.rkt b/source/designs/files/rkt/025315.rkt new file mode 100644 index 0000000000000000000000000000000000000000..225dbe753a894109e90f63d79fd0fade4193744b --- /dev/null +++ b/source/designs/files/rkt/025315.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4585cc3dc37935a0194b8e359423af59bc2efc89ab18e6e4236e35c14dd26f +size 124115 diff --git a/source/designs/files/rkt/025932.rkt b/source/designs/files/rkt/025932.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2ef9fdaaf90ef737b185bd81799518b5050e5afe --- /dev/null +++ b/source/designs/files/rkt/025932.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af1577e5ae0fc76da59c3114ee955fbd7a83d77081152ed208ecc2a27cfaea6 +size 54842 diff --git a/source/designs/files/rkt/026850.rkt b/source/designs/files/rkt/026850.rkt new file mode 100644 index 0000000000000000000000000000000000000000..27b508e7836ae5666047fa58ed4e68c6363e52c3 --- /dev/null +++ b/source/designs/files/rkt/026850.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bd67ef63dd40dfcd71be04efa601a2f197fb3f8ae5db98518790a888818685 +size 78163 diff --git a/source/designs/files/rkt/026852.rkt b/source/designs/files/rkt/026852.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e227d4e8704b5634173fa2216b9e71a682a91ec8 --- /dev/null +++ b/source/designs/files/rkt/026852.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb4d88a16641d3fd7d06071cacef651ba1d88c8b8f4c353d6de72df385ef8f1 +size 66058 diff --git a/source/designs/files/rkt/026853.rkt b/source/designs/files/rkt/026853.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0ada99ce3ad2bf875db2244265a42475b647e695 --- /dev/null +++ b/source/designs/files/rkt/026853.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0255d5016a5ccf1cd6ee6983fa4eb61d7d932246c8a0572c6b18da2aaf6fe3e3 +size 44840 diff --git a/source/designs/files/rkt/026906.rkt b/source/designs/files/rkt/026906.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bd6c43aaa2fbe652d4a0ca02bbde110d9cca8abf --- /dev/null +++ b/source/designs/files/rkt/026906.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b792b27e2ac499ce2cb03cff3c2ffea491846b20878a6b8d6d1277e7d027c22 +size 41867 diff --git a/source/designs/files/rkt/026907.rkt b/source/designs/files/rkt/026907.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1639498b795860574e092cbad1d2a1221539f7e6 --- /dev/null +++ b/source/designs/files/rkt/026907.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89e20d400fe0426ae9ebae14dca6b589ef676092843f44e883c7c2ab248ed59c +size 41194 diff --git a/source/designs/files/rkt/026968.rkt b/source/designs/files/rkt/026968.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f6a2f7cc495bb3a58218d202c3295114deea6a06 --- /dev/null +++ b/source/designs/files/rkt/026968.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470d49ecf80b76d816232e97ff125311be60da073a02cc90589721eac36a0dd8 +size 421272 diff --git a/source/designs/files/rkt/026969.rkt b/source/designs/files/rkt/026969.rkt new file mode 100644 index 0000000000000000000000000000000000000000..10f98d721bbd0a8f751c61a91a0202d3560f1cd9 --- /dev/null +++ b/source/designs/files/rkt/026969.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d5ac347d396b06aedb83a538fb7e2201bd76e52b6565792a1b97e986b6b088 +size 202904 diff --git a/source/designs/files/rkt/026970.rkt b/source/designs/files/rkt/026970.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9ade68df427fc8941fcb54b00d1e0014a4674d70 --- /dev/null +++ b/source/designs/files/rkt/026970.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c94814b3fbb14b7230ebe0fd60520cf756c1966a2b89bfcbf4c887e53f802a4 +size 325674 diff --git a/source/designs/files/rkt/027068.rkt b/source/designs/files/rkt/027068.rkt new file mode 100644 index 0000000000000000000000000000000000000000..303be218351cc77a2601ba4ef11e995e75337c4b --- /dev/null +++ b/source/designs/files/rkt/027068.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ab2d6e1fa8d0bb20f92f17aa238e90b5d1ceded2994ef2ebe2d096d85c6146 +size 22139 diff --git a/source/designs/files/rkt/027069.rkt b/source/designs/files/rkt/027069.rkt new file mode 100644 index 0000000000000000000000000000000000000000..24452b24465216df664ea0b340415ea25841de60 --- /dev/null +++ b/source/designs/files/rkt/027069.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6346f00beb8f07af2f5d3449a88a8b1aa23f165fe957506b56ce8b6c0b7496a +size 73925 diff --git a/source/designs/files/rkt/027070.rkt b/source/designs/files/rkt/027070.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f530905158016a29560e94d3f5e8bd1332f08d28 --- /dev/null +++ b/source/designs/files/rkt/027070.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5380f7307fc94ab12475801cc55a8383e110bb2ef76c8736826b3392fb889c +size 84092 diff --git a/source/designs/files/rkt/027071.rkt b/source/designs/files/rkt/027071.rkt new file mode 100644 index 0000000000000000000000000000000000000000..396b5ee2d711e9f13b8420e61d646b1b0a547f50 --- /dev/null +++ b/source/designs/files/rkt/027071.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60a083d723e7167516b345be6d61934f0de87f6b7fdfa9b452dd045633a8a5c +size 59917 diff --git a/source/designs/files/rkt/027072.rkt b/source/designs/files/rkt/027072.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c08b6dbfe44036a7e6969319ee049295af763aef --- /dev/null +++ b/source/designs/files/rkt/027072.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85ddaae8e63691934459e3937e3de4b01731d742d32a033ffb6dfea613692b24 +size 47479 diff --git a/source/designs/files/rkt/027073.rkt b/source/designs/files/rkt/027073.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d7a90f705d294abedcf4eb284d130026e3a4846b --- /dev/null +++ b/source/designs/files/rkt/027073.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f146cf0fc332824b359f041e9a59f7d0c7c9dfe17415fa21783c4e5fc686061 +size 75956 diff --git a/source/designs/files/rkt/027074.rkt b/source/designs/files/rkt/027074.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7458efd0446b5f043e5c06543b490b2952255be8 --- /dev/null +++ b/source/designs/files/rkt/027074.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f84a2fbeb3b5d5c855889ead5605575fc3e6b1646d725e7131b07ec6a5486bf8 +size 56951 diff --git a/source/designs/files/rkt/027076.rkt b/source/designs/files/rkt/027076.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d67e846fdd18e6b61695ea9a009d6aeefa212492 --- /dev/null +++ b/source/designs/files/rkt/027076.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af93ee2b477cb2148e5ea8bcd14edb57aa5e2d7d0d4ce43eede24322c2aeb550 +size 141593 diff --git a/source/designs/files/rkt/027077.rkt b/source/designs/files/rkt/027077.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ae83d085902d187f0c4a19817d1650f6dca2c074 --- /dev/null +++ b/source/designs/files/rkt/027077.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbd3345c0248bf4f226edb7307b26888c1101ac282fd77c12057b1623f0bb34 +size 47068 diff --git a/source/designs/files/rkt/027078.rkt b/source/designs/files/rkt/027078.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1de7e49459b9079829eeb78539fd117a24728892 --- /dev/null +++ b/source/designs/files/rkt/027078.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d21bc66b431c700e02ff2fdabeb2789173f3cd0c40d9389166d80dcefb96bce2 +size 33589 diff --git a/source/designs/files/rkt/027079.rkt b/source/designs/files/rkt/027079.rkt new file mode 100644 index 0000000000000000000000000000000000000000..075754f3de3677f9804beb0c27f3fbbaeff316e5 --- /dev/null +++ b/source/designs/files/rkt/027079.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae8c913dd43ee392a01e16cb85ab5efc124c6efac3e44ba1ab4ad32f268080a1 +size 67001 diff --git a/source/designs/files/rkt/027080.rkt b/source/designs/files/rkt/027080.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4441fb0c9537158b2e1c09813e1c85a774f7630d --- /dev/null +++ b/source/designs/files/rkt/027080.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc558098203993c46dd89401eb46e21aea5bf301213065d902cc011a0541f6b0 +size 64770 diff --git a/source/designs/files/rkt/027081.rkt b/source/designs/files/rkt/027081.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5a8c318865a7afc46adfe4a25a2bb77be19a01bd --- /dev/null +++ b/source/designs/files/rkt/027081.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3892da073ed5f91ca11edd806b47902e35fe79aea0ba40ff877dc26074ce8a7d +size 45573 diff --git a/source/designs/files/rkt/027082.rkt b/source/designs/files/rkt/027082.rkt new file mode 100644 index 0000000000000000000000000000000000000000..530fae66ba855e859082ec84777e01a39fcf00fd --- /dev/null +++ b/source/designs/files/rkt/027082.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee1a20c7ba8c3cf049df5974181450f009333c8189fcba6f8ef9ce5f0023f0e +size 155477 diff --git a/source/designs/files/rkt/027083.rkt b/source/designs/files/rkt/027083.rkt new file mode 100644 index 0000000000000000000000000000000000000000..60a26291f166529b60c23ea1a41efee7722fbb7d --- /dev/null +++ b/source/designs/files/rkt/027083.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ed0fe53929796453c46b7f4c10d49c879dde83bf13a48b9c8ad827e5d25c8b8 +size 28128 diff --git a/source/designs/files/rkt/027084.rkt b/source/designs/files/rkt/027084.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6e9edd1289f881522485906c2907b0eda2e02142 --- /dev/null +++ b/source/designs/files/rkt/027084.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd5494fd115a3d65858585770b89a15c87658c46fe6cb34fd1fa39f7dc55432a +size 39863 diff --git a/source/designs/files/rkt/027085.rkt b/source/designs/files/rkt/027085.rkt new file mode 100644 index 0000000000000000000000000000000000000000..adaa0026a56fde97eedddfa8ca723e7851ed72ce --- /dev/null +++ b/source/designs/files/rkt/027085.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad89a5011f2a0317ff9726dbfff25bec6eb8d5916b807032894fc37b4d49eaf7 +size 75309 diff --git a/source/designs/files/rkt/027086.rkt b/source/designs/files/rkt/027086.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ae3bea131dc49963de37d4f537b805e8bc21cf48 --- /dev/null +++ b/source/designs/files/rkt/027086.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7b96257f922f0eb17aa4ca45d30f3fc409e60ed74e608f0a9a339c512de6db +size 64368 diff --git a/source/designs/files/rkt/027087.rkt b/source/designs/files/rkt/027087.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8949e55cf635feed85025fef5f00113f9435f182 --- /dev/null +++ b/source/designs/files/rkt/027087.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f80cd446535cffa812c679d5391038814a48c645fe640d8700cecfada96a24f +size 73799 diff --git a/source/designs/files/rkt/027088.rkt b/source/designs/files/rkt/027088.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0f8b85f48412aa6de464e4e7c2608b1bf8789bb0 --- /dev/null +++ b/source/designs/files/rkt/027088.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:450287774894c371cf65f54373a7f9dbd36a691332ce93c3a23c8a1ea8e9b310 +size 30477 diff --git a/source/designs/files/rkt/027089.rkt b/source/designs/files/rkt/027089.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7a6f408e598228bc1f403da56bb4b510fa657eb1 --- /dev/null +++ b/source/designs/files/rkt/027089.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e5adea25ee814b81929d9707941de9b6890d1caa9409cff024e8e6181c95f24 +size 26331 diff --git a/source/designs/files/rkt/027090.rkt b/source/designs/files/rkt/027090.rkt new file mode 100644 index 0000000000000000000000000000000000000000..90edaa1568e5370e894c105902a0b1c2e2b98aa3 --- /dev/null +++ b/source/designs/files/rkt/027090.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737f61a1e5df9d104a577009daf7b44249edf6b9226cc5bf041febf532b6e3f7 +size 49097 diff --git a/source/designs/files/rkt/027091.rkt b/source/designs/files/rkt/027091.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9bb56e57e83d07bd2864156afadfd74ecb9829f8 --- /dev/null +++ b/source/designs/files/rkt/027091.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccddddf44e3eb9aea4c9f38fa4fea69d510b24bc65b912046b4a559344f1f5a4 +size 39289 diff --git a/source/designs/files/rkt/027092.rkt b/source/designs/files/rkt/027092.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0592998763b19b37a4dca66ce3ce09a712b8b6e9 --- /dev/null +++ b/source/designs/files/rkt/027092.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b25b60ad90a7aca9b5fa113d4c3ae9797e3c50c8c371999b2fee196956dbb1a +size 22721 diff --git a/source/designs/files/rkt/027093.rkt b/source/designs/files/rkt/027093.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f030f48c00189056ca75567042286a9f5f13cd79 --- /dev/null +++ b/source/designs/files/rkt/027093.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081648a9a29d056d5a11ad592b6698153fa6064f625b21f31aaf97360705256d +size 30883 diff --git a/source/designs/files/rkt/027094.rkt b/source/designs/files/rkt/027094.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7a04035721feb260b0cb12a09e8be2a2e686f8fc --- /dev/null +++ b/source/designs/files/rkt/027094.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e44e39307383e4abb02032faaef79da3390c7d86d19887f3b20d458d7d3c180 +size 95761 diff --git a/source/designs/files/rkt/027095.rkt b/source/designs/files/rkt/027095.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5883ebe79dde1ca63f25cbeb74a2706ed8eabff3 --- /dev/null +++ b/source/designs/files/rkt/027095.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:705a5842d323dda9f77c5142da386b4246fb4d29b49e38aec12d1912ff6a4f31 +size 81075 diff --git a/source/designs/files/rkt/027096.rkt b/source/designs/files/rkt/027096.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b662867323d54e2c7a605c500f8b8e5da76189f0 --- /dev/null +++ b/source/designs/files/rkt/027096.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98b5df8faeb915978df0e162e93d755accd99d375e57cf26c9e268acd001f18 +size 25211 diff --git a/source/designs/files/rkt/027097.rkt b/source/designs/files/rkt/027097.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0829c76e9f66638658ad0e83a920fd091f196ea0 --- /dev/null +++ b/source/designs/files/rkt/027097.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d29949e961c3e15b29e97467d95c20eca62e5e8eff4e1dec02de0bd4baacc21d +size 27825 diff --git a/source/designs/files/rkt/027098.rkt b/source/designs/files/rkt/027098.rkt new file mode 100644 index 0000000000000000000000000000000000000000..490c0b049f843953614130c6c8df24b0dae55378 --- /dev/null +++ b/source/designs/files/rkt/027098.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cadb52f3c7add4c81fd86b6adc8e714997f878590c20acbdbc0dfe94dd27aea4 +size 37627 diff --git a/source/designs/files/rkt/027099.rkt b/source/designs/files/rkt/027099.rkt new file mode 100644 index 0000000000000000000000000000000000000000..50579013690bcfef7645dce6378c3f413f255ceb --- /dev/null +++ b/source/designs/files/rkt/027099.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fcda3216717e1c9f92d2eb401ed9bc19c1b8b1e314cb4368f7d851bf1a59320 +size 52119 diff --git a/source/designs/files/rkt/027100.rkt b/source/designs/files/rkt/027100.rkt new file mode 100644 index 0000000000000000000000000000000000000000..04a6b8f3df7a2cb9cab5d974e3f2650f0c99923f --- /dev/null +++ b/source/designs/files/rkt/027100.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a26d4044ee88b4b7f890c669944b763fc1722db5b94bc0363d074833be9997ba +size 38910 diff --git a/source/designs/files/rkt/027101.rkt b/source/designs/files/rkt/027101.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9c5cdc5b686c3906544da28fceb5c039bbd4cb10 --- /dev/null +++ b/source/designs/files/rkt/027101.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04431318289e81747f84f31c3fb038f38add8d1c2ec839ca3d8018f6a7cd2b83 +size 128916 diff --git a/source/designs/files/rkt/027102.rkt b/source/designs/files/rkt/027102.rkt new file mode 100644 index 0000000000000000000000000000000000000000..33060aa7dd31733e579f0afeeaf440dfe99913fe --- /dev/null +++ b/source/designs/files/rkt/027102.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d045f3972e508c3afe164cdbdb4951bc529183ac344e7489e727508dafef64 +size 117898 diff --git a/source/designs/files/rkt/027104.rkt b/source/designs/files/rkt/027104.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8fee14fb09273b54560832db7fed3bff73060c85 --- /dev/null +++ b/source/designs/files/rkt/027104.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e103f70f831f5128af0863a4826e89536142746e314b21940eb7e99ba0ece7e2 +size 54179 diff --git a/source/designs/files/rkt/027105.rkt b/source/designs/files/rkt/027105.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1f112c5b23fcc8adaee6056579e2498a6b53a414 --- /dev/null +++ b/source/designs/files/rkt/027105.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542996f51edd95da66e2d85c0f16122dd8d3dbc1c0c1ee94b7e459568be3a2fb +size 48612 diff --git a/source/designs/files/rkt/027106.rkt b/source/designs/files/rkt/027106.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bb360d5855ab1eb95afa604f115a0ed4d0a48bee --- /dev/null +++ b/source/designs/files/rkt/027106.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6fd9141f98e567532a25a759e13cabe47c2a2fe0df0c89cdcdafa3e862a153f +size 64952 diff --git a/source/designs/files/rkt/027107.rkt b/source/designs/files/rkt/027107.rkt new file mode 100644 index 0000000000000000000000000000000000000000..98fba982a1e8292cd3c3160150cd9e5aca5c1425 --- /dev/null +++ b/source/designs/files/rkt/027107.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3487f6b87a5028b17e720c7ee264032dc5302d6cd947759dc414626ff96ae76 +size 86215 diff --git a/source/designs/files/rkt/027109.rkt b/source/designs/files/rkt/027109.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0a92e6ce22079e77b245bf5675d0f32d7e6b828e --- /dev/null +++ b/source/designs/files/rkt/027109.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc7989a6e8a60bac37ded22a2be98293b1603facac3b382bac728808ddfba521 +size 167780 diff --git a/source/designs/files/rkt/027110.rkt b/source/designs/files/rkt/027110.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6e79b26fe325883612e5eafe42b3fd04ba86cd2f --- /dev/null +++ b/source/designs/files/rkt/027110.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a47cb76a86ed9178d1fdf050a299a2a832bdc459f4a9d73c21b716a979c934 +size 26620 diff --git a/source/designs/files/rkt/027111.rkt b/source/designs/files/rkt/027111.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4b7a73f7caeb02b7d1401c88b59ebe5597d6deb5 --- /dev/null +++ b/source/designs/files/rkt/027111.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef926c322120f2fb19e3ad497e9008629cd56e43986425f4abb7abf3ca15d5c2 +size 33852 diff --git a/source/designs/files/rkt/027112.rkt b/source/designs/files/rkt/027112.rkt new file mode 100644 index 0000000000000000000000000000000000000000..71276c5119a0eb10e145e0a58feeecc2bb3a7ee1 --- /dev/null +++ b/source/designs/files/rkt/027112.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3067266c0b3487173cb89c0f6eed6d686f825e88d16e4973418ca882fe214a52 +size 142122 diff --git a/source/designs/files/rkt/027113.rkt b/source/designs/files/rkt/027113.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f47617a68e7c5089621cfb653f3afee600e29445 --- /dev/null +++ b/source/designs/files/rkt/027113.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e3c54398db4b4c7f7678cfc17aabf4296baa660de8ddd0df187f6612105233c +size 33264 diff --git a/source/designs/files/rkt/027114.rkt b/source/designs/files/rkt/027114.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8129954ba9be5a9f3ee01d6a6c6a3fc8ff8ce434 --- /dev/null +++ b/source/designs/files/rkt/027114.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5c9a291791e086957b89e23c6d4cb6f05d3e1d3216f24fd3f1c743fb3484109 +size 186951 diff --git a/source/designs/files/rkt/027115.rkt b/source/designs/files/rkt/027115.rkt new file mode 100644 index 0000000000000000000000000000000000000000..446a4b33c5c77ef027d731763b513af9c0ee9e47 --- /dev/null +++ b/source/designs/files/rkt/027115.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174e6ceae18a466c368648bd761b4dd1d18d8a26cab23c34bbdac10980a4865f +size 48587 diff --git a/source/designs/files/rkt/027116.rkt b/source/designs/files/rkt/027116.rkt new file mode 100644 index 0000000000000000000000000000000000000000..421434412e2240d1655b11a03ca0042f055cb0c7 --- /dev/null +++ b/source/designs/files/rkt/027116.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0167a8704a824f27c7729c7b53e385055db75fc3e571936435c2e3723167e3f6 +size 145250 diff --git a/source/designs/files/rkt/027117.rkt b/source/designs/files/rkt/027117.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6f8cd72bc136fab7fe8c954cb5ee7d96ef319b12 --- /dev/null +++ b/source/designs/files/rkt/027117.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8ecdc26e3279505de15f5a416a79cecd40f16996f70179cc5ce5a001e0cd28 +size 31243 diff --git a/source/designs/files/rkt/027118.rkt b/source/designs/files/rkt/027118.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e6634ce06fcecd309771170f6fb2942171da8555 --- /dev/null +++ b/source/designs/files/rkt/027118.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70ce0ddd4d410ca66b8e0a001b5d3689a7466da46b1ec58b2acc77ce9da1cce5 +size 63860 diff --git a/source/designs/files/rkt/027119.rkt b/source/designs/files/rkt/027119.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c8f6e00367280ef1fb2dc33561464b1556f1fffe --- /dev/null +++ b/source/designs/files/rkt/027119.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4baa83f8d45ed68dbea7b06c81a25340e51543969f3511b5cd7602ef06175da +size 82572 diff --git a/source/designs/files/rkt/027120.rkt b/source/designs/files/rkt/027120.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5496220fa372e54ac1d3c81e4441fbb4c5fc46d5 --- /dev/null +++ b/source/designs/files/rkt/027120.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:285298ad94b8a6ac363801daac879abc3ffd84d2ac3c872d4113a7a4c093aff2 +size 152883 diff --git a/source/designs/files/rkt/027121.rkt b/source/designs/files/rkt/027121.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8ef5fae41899ee85a3c30a5fb6fbdd5f5110af22 --- /dev/null +++ b/source/designs/files/rkt/027121.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8843271f829e13fdb2b0cfb094beabb058159d5cbf3128ec63ffdd2e1f0020 +size 60654 diff --git a/source/designs/files/rkt/027122.rkt b/source/designs/files/rkt/027122.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e60acbba3ee01c39bbfceaa8ab858b209385f31a --- /dev/null +++ b/source/designs/files/rkt/027122.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0d11dab7003a99c866984987ff465133225470894b72816e0df258bc6e2301 +size 51147 diff --git a/source/designs/files/rkt/027123.rkt b/source/designs/files/rkt/027123.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea8501b4124b5f361c30a00f028ea3d664b06c04 --- /dev/null +++ b/source/designs/files/rkt/027123.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5fd3c3b60e4942a8b648a08cd80dcb1ceac8bddb7093e24cb06c88e10f6dc54 +size 51447 diff --git a/source/designs/files/rkt/027124.rkt b/source/designs/files/rkt/027124.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63281edb4115f3c91ac46cb23c7d4cbe558dfb33 --- /dev/null +++ b/source/designs/files/rkt/027124.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4064d5d438dc36f3d893ea6358216bb73b882f5352cb5ec5b398615fdcf5034d +size 67763 diff --git a/source/designs/files/rkt/027127.rkt b/source/designs/files/rkt/027127.rkt new file mode 100644 index 0000000000000000000000000000000000000000..46e01138cce5bacebcb39438ac6ca4f37c8c566b --- /dev/null +++ b/source/designs/files/rkt/027127.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac19a395c8dcdc17a50e97f11b60cd22971060f5cb6a4d4e2072e82a411ef3e +size 68366 diff --git a/source/designs/files/rkt/027128.rkt b/source/designs/files/rkt/027128.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8d9b1a52289683d4a7dfdc928dd0d564767abb10 --- /dev/null +++ b/source/designs/files/rkt/027128.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c1fd9ae6c994bb340092406dc9b87efcb5299306699a40ac9ccf2bb8239940a +size 28879 diff --git a/source/designs/files/rkt/027129.rkt b/source/designs/files/rkt/027129.rkt new file mode 100644 index 0000000000000000000000000000000000000000..67a2f5db5133a506231cc2b47113337c46ccf98f --- /dev/null +++ b/source/designs/files/rkt/027129.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b5426fa432acb6268cb7c61c149e7407878ce8a5d2165862568e7eb8bf7a68 +size 92380 diff --git a/source/designs/files/rkt/027131.rkt b/source/designs/files/rkt/027131.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4d770930f0b913aef76f8dae8b2ea29f281666f2 --- /dev/null +++ b/source/designs/files/rkt/027131.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b51d1fcf82d067eee29b65cb56474c4d96c8731740b5237f8fe8299c9b4cb2e4 +size 112129 diff --git a/source/designs/files/rkt/027132.rkt b/source/designs/files/rkt/027132.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6af0847583716b163d9c4253a97fb643bd495bc3 --- /dev/null +++ b/source/designs/files/rkt/027132.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15431b6a604ab4374f6a9a8373486852eaf8b346209bca8a9cadcca8fa837445 +size 124655 diff --git a/source/designs/files/rkt/027133.rkt b/source/designs/files/rkt/027133.rkt new file mode 100644 index 0000000000000000000000000000000000000000..99318713c8b635e5336821a0301c165bc1fc18ef --- /dev/null +++ b/source/designs/files/rkt/027133.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a35ec8a3f05f8252944b428bfbdefd990e1c39519d6f48c00deb374a0470cef +size 190593 diff --git a/source/designs/files/rkt/027134.rkt b/source/designs/files/rkt/027134.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63c63e8ec6511042fb8e1ff43c6c53167346f9ed --- /dev/null +++ b/source/designs/files/rkt/027134.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e921e62e2c91a2d40d6884519e3f45e14771bb27c8e4db90f1d0ac665dc31fe5 +size 147899 diff --git a/source/designs/files/rkt/027135.rkt b/source/designs/files/rkt/027135.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fc04430574c75320e60ac1a102db4579554f642c --- /dev/null +++ b/source/designs/files/rkt/027135.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ccd18ddd1c38eb63ee14a55c98b54d8cd6a2e41df4f7853910c21bbb53f8766 +size 63943 diff --git a/source/designs/files/rkt/027136.rkt b/source/designs/files/rkt/027136.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1f090b1244868a18c5574fbe96ff974e39c9de6e --- /dev/null +++ b/source/designs/files/rkt/027136.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f44743b9cb996c96e786c1aaa4d7d9ce74e0b0803d4a50b7bfea16b8e9a8876 +size 114381 diff --git a/source/designs/files/rkt/027137.rkt b/source/designs/files/rkt/027137.rkt new file mode 100644 index 0000000000000000000000000000000000000000..406c006a609a56d49166290f626d3b77ac334952 --- /dev/null +++ b/source/designs/files/rkt/027137.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49cddbcf26e0050229861ef62e8241f8d12cf1368b7ffdeceecc1d84b45ee3c5 +size 127663 diff --git a/source/designs/files/rkt/027139.rkt b/source/designs/files/rkt/027139.rkt new file mode 100644 index 0000000000000000000000000000000000000000..36887910a7f6e3f148947161db584ca1bb0a6a54 --- /dev/null +++ b/source/designs/files/rkt/027139.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16b821f0a61dffc458dadde0807dd88ff8d2c3f928582c7a56cb13adbe222ae +size 104391 diff --git a/source/designs/files/rkt/027140.rkt b/source/designs/files/rkt/027140.rkt new file mode 100644 index 0000000000000000000000000000000000000000..695f7ed7b9dd3bcafb4e0da86f1844c88d58fe0b --- /dev/null +++ b/source/designs/files/rkt/027140.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:466ee0953d31d3cff71e0508ddad7ff6f0e7aa98b7c46dec2ecdc009b8689593 +size 85226 diff --git a/source/designs/files/rkt/027141.rkt b/source/designs/files/rkt/027141.rkt new file mode 100644 index 0000000000000000000000000000000000000000..baf00a6ab4f7e6eb14ecc510f69773e01e29a69b --- /dev/null +++ b/source/designs/files/rkt/027141.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f4800fd7707f5f5a530758fe36ba1533df208430ca90fc2928a7c95c387626f +size 86944 diff --git a/source/designs/files/rkt/027142.rkt b/source/designs/files/rkt/027142.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2534706b76e7fa2578613b712f84e928df9bcd3c --- /dev/null +++ b/source/designs/files/rkt/027142.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f7687d956fe5b668889e82c612ebbc78feaf29f66f4652bf546ba5286d7537 +size 84595 diff --git a/source/designs/files/rkt/027143.rkt b/source/designs/files/rkt/027143.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0888c887dc620a50da326548204fad23bb3d23b6 --- /dev/null +++ b/source/designs/files/rkt/027143.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15a8870fcba951616c13dbb1ac634af05803c66e26245988fec430e631404d0f +size 32470 diff --git a/source/designs/files/rkt/027144.rkt b/source/designs/files/rkt/027144.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7c4fc39d82e244f0858b745dec0a32e91137248d --- /dev/null +++ b/source/designs/files/rkt/027144.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46f9c8fc732d2ea20e1bb95e1e64e9ceab04f9832effc80322e3dbda66b72e6c +size 47439 diff --git a/source/designs/files/rkt/027145.rkt b/source/designs/files/rkt/027145.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1dedf130fd5c806b46e1cc7013c2f592cb0a6fbb --- /dev/null +++ b/source/designs/files/rkt/027145.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f694cd797bb6aaa2f885c5c3550e1d753d37e5bd4a4dced748f69b375870c260 +size 47386 diff --git a/source/designs/files/rkt/027148.rkt b/source/designs/files/rkt/027148.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a9d47515fbdca0549c6f1c74b636eb3832972d74 --- /dev/null +++ b/source/designs/files/rkt/027148.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5673e17bb35af13c47c3d6b0f06ef3e0351c1089a6d862c11d5f6c15b51129aa +size 331987 diff --git a/source/designs/files/rkt/027149.rkt b/source/designs/files/rkt/027149.rkt new file mode 100644 index 0000000000000000000000000000000000000000..77b048ef308942716dff81952bcad4b04fc288e3 --- /dev/null +++ b/source/designs/files/rkt/027149.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30b23c716cf76965d0b3866a4385ac4a7e207589f760f6013041b148f6f3e496 +size 142664 diff --git a/source/designs/files/rkt/027150.rkt b/source/designs/files/rkt/027150.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8c30d310717acfced6db25498077b427b0cfc384 --- /dev/null +++ b/source/designs/files/rkt/027150.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee9de6ed93e8b79fb73bb1e216fca93c58bec963590cda5ceea5c8c1dee3837 +size 55057 diff --git a/source/designs/files/rkt/027157.rkt b/source/designs/files/rkt/027157.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3aa1ddf8fc8091d75edb0e274a281d319c22465e --- /dev/null +++ b/source/designs/files/rkt/027157.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8089ed7a93d218dcecab153c21be699a9d67d38e64538177fef7cec69cfd5896 +size 18800 diff --git a/source/designs/files/rkt/027160.rkt b/source/designs/files/rkt/027160.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0e4fc561702dd824cbc9061c5f16266cba2d7acd --- /dev/null +++ b/source/designs/files/rkt/027160.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:932ee3c4e2a87bd7bd9e22e6f90975451c72322d248ef17c33411d9492012822 +size 83054 diff --git a/source/designs/files/rkt/027179.rkt b/source/designs/files/rkt/027179.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c02448e98707186e5b0ddd99fac29d2665de4c3c --- /dev/null +++ b/source/designs/files/rkt/027179.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edf0cb4e3cf966cfc5b1a73a12d8044b820180d5f50c7241e8b33edadac0d971 +size 53177 diff --git a/source/designs/files/rkt/027181.rkt b/source/designs/files/rkt/027181.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6f9c841a7bc07f15bbad72f8e1b5cef77a619a5f --- /dev/null +++ b/source/designs/files/rkt/027181.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73b8bc95a533d95511545b7fa3cd6816ded96a0ed5505c1c49325735fa5062cb +size 37451 diff --git a/source/designs/files/rkt/027182.rkt b/source/designs/files/rkt/027182.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e0e11bb2292142fd0b52dda45523d314df36569b --- /dev/null +++ b/source/designs/files/rkt/027182.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5064d9a4f1e014aaf190e0e5de781bfeaa027c657715967a317915089dbf6f0 +size 34266 diff --git a/source/designs/files/rkt/027184.rkt b/source/designs/files/rkt/027184.rkt new file mode 100644 index 0000000000000000000000000000000000000000..87a3d7a8e784e1de26ae910d0cc1996f5020ef48 --- /dev/null +++ b/source/designs/files/rkt/027184.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fe5832f2b51d783bdaa77e7e4c3b3afe189d83159e5699b9594509b1000c8d6 +size 72635 diff --git a/source/designs/files/rkt/027185.rkt b/source/designs/files/rkt/027185.rkt new file mode 100644 index 0000000000000000000000000000000000000000..16f379b380028b3f71c18e76667c79225be5b435 --- /dev/null +++ b/source/designs/files/rkt/027185.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498561aa61278ab4d0d202dd6919cbfb1a205242628df12113ae1ead8ebbdc31 +size 53162 diff --git a/source/designs/files/rkt/027186.rkt b/source/designs/files/rkt/027186.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a93afa42c19dbb0fa7308c6e36605d916645d519 --- /dev/null +++ b/source/designs/files/rkt/027186.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ad1786a0e82e69dfb077ae4bf7d9323b6655472acf38c38fce87b7bc9069f8f +size 76740 diff --git a/source/designs/files/rkt/027187.rkt b/source/designs/files/rkt/027187.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d3d0b9325783b5a206e9305b775eb45e583c10bf --- /dev/null +++ b/source/designs/files/rkt/027187.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f5cac6c3fb813719f53b56ca7b9693561c729ec7956c5f1101b6b871972339 +size 172187 diff --git a/source/designs/files/rkt/027188.rkt b/source/designs/files/rkt/027188.rkt new file mode 100644 index 0000000000000000000000000000000000000000..16c90b4f7457f9564b8b3984911db2fb8afe8183 --- /dev/null +++ b/source/designs/files/rkt/027188.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5191d2015fd90180f4b4ead3d9069b91bcd6fc6cbcf231daa8812354f1f395f6 +size 54941 diff --git a/source/designs/files/rkt/027189.rkt b/source/designs/files/rkt/027189.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6cb5b1f68a80bc9df6f22057307cfcaa831420dd --- /dev/null +++ b/source/designs/files/rkt/027189.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9415d1c99a9eb2593debe65720dafadbbbe06aae1c42b041e253e2df9580b2 +size 37289 diff --git a/source/designs/files/rkt/027190.rkt b/source/designs/files/rkt/027190.rkt new file mode 100644 index 0000000000000000000000000000000000000000..69bbb61243a87845c890d6ae457050a3871d841a --- /dev/null +++ b/source/designs/files/rkt/027190.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f391940cef96e49ac5f303cadfd4051e77036a5bbd3dea008afa18c4100b51b +size 64206 diff --git a/source/designs/files/rkt/027191.rkt b/source/designs/files/rkt/027191.rkt new file mode 100644 index 0000000000000000000000000000000000000000..49b56602a18a9fb987a1ff8cf00b7c042baff858 --- /dev/null +++ b/source/designs/files/rkt/027191.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be095e3faf894c754532442b98d402332db6775961f89e7a4768fc8bd10e0ac2 +size 83999 diff --git a/source/designs/files/rkt/027192.rkt b/source/designs/files/rkt/027192.rkt new file mode 100644 index 0000000000000000000000000000000000000000..aa9057b29ced0c4c2909a543e3a307edbc98f8da --- /dev/null +++ b/source/designs/files/rkt/027192.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f51fb016a1d35e6ff0a796becd829b0ed22cf9ce8de73761de1a76230dbe9de +size 41924 diff --git a/source/designs/files/rkt/027193.rkt b/source/designs/files/rkt/027193.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7a4a369e754c07a1827f72098ad37abdce731f31 --- /dev/null +++ b/source/designs/files/rkt/027193.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c214b0ca969121935f465dd723570cd2fcb6077e6fc33624f25056a1211cd416 +size 49050 diff --git a/source/designs/files/rkt/027194.rkt b/source/designs/files/rkt/027194.rkt new file mode 100644 index 0000000000000000000000000000000000000000..17d3b22a72af3909b0bf36f1ae7dfe5d8d18f447 --- /dev/null +++ b/source/designs/files/rkt/027194.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f55f72136c39044bf7036ec9ea466f07007d0d99193950c2ba2edad540991d6 +size 91257 diff --git a/source/designs/files/rkt/027195.rkt b/source/designs/files/rkt/027195.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1401084a69a8306cb9d4dda96e4d9b9e2517543d --- /dev/null +++ b/source/designs/files/rkt/027195.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bc907798be48e5a050a6fcab9d8737280d57749c8f8dad3270d48f300c3cd3 +size 43187 diff --git a/source/designs/files/rkt/027196.rkt b/source/designs/files/rkt/027196.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fbd6ee322aa0c68da3064b71de9da74e5cebed6d --- /dev/null +++ b/source/designs/files/rkt/027196.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1c52afdc96631930f2dba22b02963d31a182bf3d1b11e041abf0fe4760dae4 +size 53126 diff --git a/source/designs/files/rkt/027197.rkt b/source/designs/files/rkt/027197.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fc39a17c57b919f69beac765d49ab80a3959a278 --- /dev/null +++ b/source/designs/files/rkt/027197.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7c1c1ae6a908ea00bb65cc69b9646371fa997278cc2f2ef8c90b0bbf59201f +size 51659 diff --git a/source/designs/files/rkt/027200.rkt b/source/designs/files/rkt/027200.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f44a13191740e55886289f5f39be1d8ce5654398 --- /dev/null +++ b/source/designs/files/rkt/027200.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10e4d8fe1214f267082b8436fbd6b79a8e9398005250af57489773bf4e08479 +size 35785 diff --git a/source/designs/files/rkt/027201.rkt b/source/designs/files/rkt/027201.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fdbd9cce736ef7174cd903e22aeb9b25bb116112 --- /dev/null +++ b/source/designs/files/rkt/027201.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4238e3fc38370f158d24493f6459b073a7712c33631602dcd5901b81ea995971 +size 205093 diff --git a/source/designs/files/rkt/027204.rkt b/source/designs/files/rkt/027204.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a3ea76abe4d96737c9ab221e2553bd6407bb2c12 --- /dev/null +++ b/source/designs/files/rkt/027204.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ca33a70d2b663b9131b438d26f339eb9f4ed70f3d1eb30e955c473d6c623f6a +size 63091 diff --git a/source/designs/files/rkt/027205.rkt b/source/designs/files/rkt/027205.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7ef5c00e9356c50761d532b2e15086fd27e7a717 --- /dev/null +++ b/source/designs/files/rkt/027205.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef9d5d389d2468ee323399ccb0155dfa6c6867577aa951e0118079c08f6d337 +size 51392 diff --git a/source/designs/files/rkt/027206.rkt b/source/designs/files/rkt/027206.rkt new file mode 100644 index 0000000000000000000000000000000000000000..119c0160191f61ace70e6ca8c9d439822a82cf80 --- /dev/null +++ b/source/designs/files/rkt/027206.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea345ffec34e0d37c2aa0caca61fc76a780fc871993cd61136fbdaba87e20e4b +size 87046 diff --git a/source/designs/files/rkt/027207.rkt b/source/designs/files/rkt/027207.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d1a4337fa5e458704b2833a6e792dfa56c1e5469 --- /dev/null +++ b/source/designs/files/rkt/027207.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8162ce31ea83d03c9f62e9389aedf42208a26eeb1ab45edc9e0ed15aebc3d438 +size 52585 diff --git a/source/designs/files/rkt/027209.rkt b/source/designs/files/rkt/027209.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7ba59fded1bfd98728fcfd2302671e4f819b2721 --- /dev/null +++ b/source/designs/files/rkt/027209.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc63048ff39d1487397b28df9e5aa9a476b61ec4144a7162d1db134433a43953 +size 53298 diff --git a/source/designs/files/rkt/027210.rkt b/source/designs/files/rkt/027210.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d5f00915e89186d2bd62aa79164a81063cb41a07 --- /dev/null +++ b/source/designs/files/rkt/027210.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399b5de3f980bffcde98d96c19b60b3d86dc5ae1962bcb28ea830f4b697af8b6 +size 38929 diff --git a/source/designs/files/rkt/027211.rkt b/source/designs/files/rkt/027211.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cafd9fe04341268189a3371aab4dbf2a66982d67 --- /dev/null +++ b/source/designs/files/rkt/027211.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa3e1886ec58c4fb40fd7437ca6f7ea64c41af08cec47e9b4df54c1fc5232073 +size 21909 diff --git a/source/designs/files/rkt/027212.rkt b/source/designs/files/rkt/027212.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7fcbad3f3f8e72bf0c1f14e3e5af7c67f9488207 --- /dev/null +++ b/source/designs/files/rkt/027212.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708163cd032b10296d15e2e998463de5e2c9de26ba224b49c314e9dbee71d225 +size 51134 diff --git a/source/designs/files/rkt/027213.rkt b/source/designs/files/rkt/027213.rkt new file mode 100644 index 0000000000000000000000000000000000000000..761b2223e37a482602e73ba7c8dd4a8b4be530a4 --- /dev/null +++ b/source/designs/files/rkt/027213.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f921aa4209862c3cc891b8e95297bc1c4ac709f8965248bb3e970a8e46e08ff +size 46846 diff --git a/source/designs/files/rkt/027214.rkt b/source/designs/files/rkt/027214.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c0abb6b8a2b6f7a6229151f347abc3068ff621aa --- /dev/null +++ b/source/designs/files/rkt/027214.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec094fe002bd4a94f752102671537f48824d6d07b8b973d9d6a04904c7848cf +size 28761 diff --git a/source/designs/files/rkt/027265.rkt b/source/designs/files/rkt/027265.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6389a51b11459ac7d6799e5c51a5cfee1ec70cb3 --- /dev/null +++ b/source/designs/files/rkt/027265.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f6e7dde36ed69657a722a175a1c993386005343cf6e560656afcfc5166fd7c +size 29790 diff --git a/source/designs/files/rkt/027290.rkt b/source/designs/files/rkt/027290.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d1f2881bf1c1108ce33488fbc0e2f4ddfc83f3c6 --- /dev/null +++ b/source/designs/files/rkt/027290.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f691475d465d954b60371c40f20b95126f15a2a87d760932181739ccc66cd4e1 +size 92215 diff --git a/source/designs/files/rkt/027329.rkt b/source/designs/files/rkt/027329.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c16f002af5cb12f53d4af9932f1874bf7b91d1fb --- /dev/null +++ b/source/designs/files/rkt/027329.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c961600cb6e52eabe174ab3dd5d3b30e4e74bc430f2bfa67ebf548404f29786b +size 34321 diff --git a/source/designs/files/rkt/027330.rkt b/source/designs/files/rkt/027330.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e2d9b797b058886085d11f8e1e04349e19a18a18 --- /dev/null +++ b/source/designs/files/rkt/027330.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90603823e6da4d3bbcab7abfc9e543c6447814cda8c0179bad062be799bf0033 +size 22983 diff --git a/source/designs/files/rkt/027331.rkt b/source/designs/files/rkt/027331.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6fd6d54c9bff8c08432363c51154cbc256771a0d --- /dev/null +++ b/source/designs/files/rkt/027331.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d7b0186a47a47eca3286a3dfdb71f80a5457c429e2219efcca553004197091 +size 39521 diff --git a/source/designs/files/rkt/027332.rkt b/source/designs/files/rkt/027332.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1ea749977f5c5be8618a5633000aade6b79f1b7b --- /dev/null +++ b/source/designs/files/rkt/027332.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0ac08420187f98adbb114b8ab4d5ef3734eb799d00bf2d310ba0cb2e628828 +size 24581 diff --git a/source/designs/files/rkt/027333.rkt b/source/designs/files/rkt/027333.rkt new file mode 100644 index 0000000000000000000000000000000000000000..748dd624ee0b9c65e751ce2ea22ae4e8372fa625 --- /dev/null +++ b/source/designs/files/rkt/027333.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c4111b204957aeced0a2efde55ca8a5aad7414778732da4ad2ca3dc5c881f74 +size 55353 diff --git a/source/designs/files/rkt/027334.rkt b/source/designs/files/rkt/027334.rkt new file mode 100644 index 0000000000000000000000000000000000000000..01429086ffd53df32005b8f4e369f49f00423662 --- /dev/null +++ b/source/designs/files/rkt/027334.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74d1dfd5ebcb438a8e23e25afbaa9fe8b8385410ccb5bd879f4c1165ab2d750 +size 34362 diff --git a/source/designs/files/rkt/027335.rkt b/source/designs/files/rkt/027335.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7283d5c9e74034efc2b4cfaeb7f7fca69f7b7802 --- /dev/null +++ b/source/designs/files/rkt/027335.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d10d9544ba3d97f1b8e67ec8c9486b1230d25898378f36eef48e2f2e83b0ef94 +size 30815 diff --git a/source/designs/files/rkt/027336.rkt b/source/designs/files/rkt/027336.rkt new file mode 100644 index 0000000000000000000000000000000000000000..434bc6afb938644a732716524b079d85f759a471 --- /dev/null +++ b/source/designs/files/rkt/027336.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d17e59b7294bc9ac5a743a37840bdcd9448a8188340752f45cc2200ac5131fe2 +size 29931 diff --git a/source/designs/files/rkt/027337.rkt b/source/designs/files/rkt/027337.rkt new file mode 100644 index 0000000000000000000000000000000000000000..165292caa58b492618d9ee37228835c9574e356e --- /dev/null +++ b/source/designs/files/rkt/027337.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d71a3fac1c6345f90c2aaa99733da615090324e4678f821ea0fb06ccdd6dba +size 68734 diff --git a/source/designs/files/rkt/027338.rkt b/source/designs/files/rkt/027338.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4cc76b731294e4b15291e355dc1d8521e4fd7c46 --- /dev/null +++ b/source/designs/files/rkt/027338.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5f878718c449ca43389a46b1e488558a20cc95ef07786b593aa5b07bbee454 +size 41941 diff --git a/source/designs/files/rkt/027339.rkt b/source/designs/files/rkt/027339.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2f7bfd6fe64165c3ed5b21ed66054c9eb5a17845 --- /dev/null +++ b/source/designs/files/rkt/027339.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:055c2fa68048b57450d5a18729a37706b91dbbbecc97fc78e9763167ee9df723 +size 63258 diff --git a/source/designs/files/rkt/027340.rkt b/source/designs/files/rkt/027340.rkt new file mode 100644 index 0000000000000000000000000000000000000000..de5926e61668fcc2756f87e37da24ce5065d2734 --- /dev/null +++ b/source/designs/files/rkt/027340.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb11bb4177689fe5f32632f38b2695fdc49896e69312fc4cea12c28734cfbd8e +size 52239 diff --git a/source/designs/files/rkt/027341.rkt b/source/designs/files/rkt/027341.rkt new file mode 100644 index 0000000000000000000000000000000000000000..129ad8466c3a37c82f44269e3ffb19ba75abbc7d --- /dev/null +++ b/source/designs/files/rkt/027341.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b2875eb3d4e251840c6c0b02977815f7e14c1a18d779b7b6a041109a4e8c54 +size 29896 diff --git a/source/designs/files/rkt/027342.rkt b/source/designs/files/rkt/027342.rkt new file mode 100644 index 0000000000000000000000000000000000000000..34a30be75dee2f179c1727999ae0538194e64a42 --- /dev/null +++ b/source/designs/files/rkt/027342.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a983e8fab6b575e826ee308f4f6e24618f9a3336245804720d6d27066b219e +size 40344 diff --git a/source/designs/files/rkt/027343.rkt b/source/designs/files/rkt/027343.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8e292f194344126a24e11a2e19b865a2ebcd4a8f --- /dev/null +++ b/source/designs/files/rkt/027343.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e44b779341bc3e941913aecb0dba2e472be95e990b564b05c3d5410f5b79ea7 +size 34671 diff --git a/source/designs/files/rkt/027344.rkt b/source/designs/files/rkt/027344.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6666f7fc9673ca366c2695e560db5ca07b0bcc79 --- /dev/null +++ b/source/designs/files/rkt/027344.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03e0cd8ec4a2b9296934169c5e1386f3c184463fdd28d44a380a2f3df049b82 +size 22417 diff --git a/source/designs/files/rkt/027345.rkt b/source/designs/files/rkt/027345.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1799cb3abb63146ca5572e1914172d8c28424b39 --- /dev/null +++ b/source/designs/files/rkt/027345.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55004afe45a7c669f6037402d5c040b10f53d5088e75e58907d47209c85a8c85 +size 41192 diff --git a/source/designs/files/rkt/027346.rkt b/source/designs/files/rkt/027346.rkt new file mode 100644 index 0000000000000000000000000000000000000000..87e669cec09892106810f7ac21f3ae22c846e332 --- /dev/null +++ b/source/designs/files/rkt/027346.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77bfa4e5e614c9ceeea93b5a58367aa16191905a3e75eefc4d9d43f6719767a9 +size 47845 diff --git a/source/designs/files/rkt/027347.rkt b/source/designs/files/rkt/027347.rkt new file mode 100644 index 0000000000000000000000000000000000000000..518b90052050b1ff661aea0056ef3ea8addddbbc --- /dev/null +++ b/source/designs/files/rkt/027347.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f1574362eb3a030c755418476048e5f2fdd8a270d91d4e07506c030bdf1bad +size 36022 diff --git a/source/designs/files/rkt/027348.rkt b/source/designs/files/rkt/027348.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c7534e99bfbdf50c45769a69f41e7d3a542fbc15 --- /dev/null +++ b/source/designs/files/rkt/027348.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a904e98e76de9c70d035a29bf7307d4d297d015f21ea0341abee762b54ae0d +size 36313 diff --git a/source/designs/files/rkt/027349.rkt b/source/designs/files/rkt/027349.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e8ff7175c96e89e6e50c47e82479a0e32eb5f0a3 --- /dev/null +++ b/source/designs/files/rkt/027349.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f667b2e24a7e82b09e8e91cb497dede28cac1cbf9163c275a655ba66725058a +size 30872 diff --git a/source/designs/files/rkt/027350.rkt b/source/designs/files/rkt/027350.rkt new file mode 100644 index 0000000000000000000000000000000000000000..85496b888cc505d45367555e7b7df82a1abdb170 --- /dev/null +++ b/source/designs/files/rkt/027350.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f8b62699d90a15f2515ab46ec2e0ff540ee4ba85f4b433e9086dd6ca937098 +size 35207 diff --git a/source/designs/files/rkt/027351.rkt b/source/designs/files/rkt/027351.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2fdd57d52a6358b8c8edde95535ebc544a385f94 --- /dev/null +++ b/source/designs/files/rkt/027351.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d797c84c4ed525f7601b6519beb345ec13da19867b38f9c1e83bf847cf917f +size 27995 diff --git a/source/designs/files/rkt/027352.rkt b/source/designs/files/rkt/027352.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5ab3182b5be57ac72e797b08607219e8d2b00934 --- /dev/null +++ b/source/designs/files/rkt/027352.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b993f92d74de40d168f7177a1dff98d95bab964f25f47cda87c63cd33847bc +size 55700 diff --git a/source/designs/files/rkt/027353.rkt b/source/designs/files/rkt/027353.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6a9a40db18069a50c751fbf2e61a228fc52b2ecf --- /dev/null +++ b/source/designs/files/rkt/027353.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d95a02890da6ef4b92bece21545bc2d97bc776d3e586e0b8a68d2b39236ba8b +size 45622 diff --git a/source/designs/files/rkt/027354.rkt b/source/designs/files/rkt/027354.rkt new file mode 100644 index 0000000000000000000000000000000000000000..49f3d61d4e15741910528aa48c6e639e41c85a4d --- /dev/null +++ b/source/designs/files/rkt/027354.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26b96cb891b8ddbcb29deb0ab626949dc6091dcb609f7861c2e51c9f06608f1 +size 81356 diff --git a/source/designs/files/rkt/027355.rkt b/source/designs/files/rkt/027355.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c1f809e88a1efd6bf6a9d0096d988811bd100048 --- /dev/null +++ b/source/designs/files/rkt/027355.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7ed5f6250b4375b3502e9e50a740b22f9c4fc858a03bc7e9ab7fae119d5407 +size 80180 diff --git a/source/designs/files/rkt/027356.rkt b/source/designs/files/rkt/027356.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2ec2badba8d047e19e5550904ef44d7a02400187 --- /dev/null +++ b/source/designs/files/rkt/027356.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51fd60468c39ba2720a0dc28932b582fd4794bc11408c0530270c17db68b3882 +size 49992 diff --git a/source/designs/files/rkt/027357.rkt b/source/designs/files/rkt/027357.rkt new file mode 100644 index 0000000000000000000000000000000000000000..48abf7167ecdd12a6290cc77508abddbbfd691bb --- /dev/null +++ b/source/designs/files/rkt/027357.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f361e1d3c420b9c076301a91044d33631dd4c8836d09c8e662f0cc8b10b4fcb +size 28004 diff --git a/source/designs/files/rkt/027358.rkt b/source/designs/files/rkt/027358.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a51ed31add80a47d9b67f55dc48e34ec035651e7 --- /dev/null +++ b/source/designs/files/rkt/027358.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c7100e9131be3fd49bbb961d31f1c9f861416cf592c044f0608bf8e6136aded +size 83779 diff --git a/source/designs/files/rkt/027359.rkt b/source/designs/files/rkt/027359.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b04903121a8f700585ba126643f12dd54900f7fc --- /dev/null +++ b/source/designs/files/rkt/027359.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52209cfb2e52b9ef698f356b3e3e1efad77e3c03086c7c20a4041a9127e3f066 +size 64325 diff --git a/source/designs/files/rkt/027360.rkt b/source/designs/files/rkt/027360.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2782f98097816a0b3ff8ba0d009f4969378bf539 --- /dev/null +++ b/source/designs/files/rkt/027360.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76cccefcc2dcfd643a792180c36082bc75cf2863b35576f70625cc976ecf3b0c +size 40438 diff --git a/source/designs/files/rkt/027361.rkt b/source/designs/files/rkt/027361.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5dd6351b32ed317ed27c36afcd0685156206f37c --- /dev/null +++ b/source/designs/files/rkt/027361.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b7c52cf00cbd505c1553eacf49368d0220e880df28cad49755a5312504dd1b +size 21561 diff --git a/source/designs/files/rkt/027362.rkt b/source/designs/files/rkt/027362.rkt new file mode 100644 index 0000000000000000000000000000000000000000..74e28e884529d18d01f76e9f8a8490d7edfd1857 --- /dev/null +++ b/source/designs/files/rkt/027362.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6559b178308dfb51e60ee03fa911731634dc6c525daf4fc16380244828cf84cd +size 79126 diff --git a/source/designs/files/rkt/027363.rkt b/source/designs/files/rkt/027363.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c85fb38ea66dc5710d19ad38ff70956e44047cda --- /dev/null +++ b/source/designs/files/rkt/027363.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6d8a52edd872840bc133c9d6d1e981ca31d717c8f8206565fdbbb67e750046 +size 88269 diff --git a/source/designs/files/rkt/027364.rkt b/source/designs/files/rkt/027364.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b1d10fa59abb0107d0e9ba07af20df56c05ccefd --- /dev/null +++ b/source/designs/files/rkt/027364.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72f26669f1aeee38c433444f02ffb2487cbfc358c3190b27e6f1dcfdc6d65f9e +size 46333 diff --git a/source/designs/files/rkt/027365.rkt b/source/designs/files/rkt/027365.rkt new file mode 100644 index 0000000000000000000000000000000000000000..02c0a6195ed3dabdd27392eac9c389113c68997b --- /dev/null +++ b/source/designs/files/rkt/027365.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe47bd9620373474d66ce953ae2d7eb7ffe2c66739eab09bff2a47d985448d4 +size 27141 diff --git a/source/designs/files/rkt/027366.rkt b/source/designs/files/rkt/027366.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4f8c61c20dca7c9922bb9764bdd5bca0059fa438 --- /dev/null +++ b/source/designs/files/rkt/027366.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40ea44ff6068375ef191d81271896b27aa7511225a417d922b369a85b29711f2 +size 46716 diff --git a/source/designs/files/rkt/027367.rkt b/source/designs/files/rkt/027367.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e4e1c836ae967bd5885960b9cf7b334f3c8e6d80 --- /dev/null +++ b/source/designs/files/rkt/027367.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce3840aed802ba5792371dcf65e3f600f6288ccfaeb1c4f631e981b895af354 +size 53580 diff --git a/source/designs/files/rkt/027368.rkt b/source/designs/files/rkt/027368.rkt new file mode 100644 index 0000000000000000000000000000000000000000..696b1a8a1b587c42636faa1323f8e2cb7ef53ee4 --- /dev/null +++ b/source/designs/files/rkt/027368.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555dc154a292bd7415378d7dca05799d015879b4091b29b5e379a6890c101440 +size 59633 diff --git a/source/designs/files/rkt/027369.rkt b/source/designs/files/rkt/027369.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d5a2243670539f3cf7082f4211e47315e9a79b53 --- /dev/null +++ b/source/designs/files/rkt/027369.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:106cc40d8063bfe5326523d475500a2e3e38f00c24ebe2f9ca952e2c3fcc9e27 +size 45698 diff --git a/source/designs/files/rkt/027370.rkt b/source/designs/files/rkt/027370.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3a9343d01ce129ff03ca7ca05b99524fd8156be2 --- /dev/null +++ b/source/designs/files/rkt/027370.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15fc0d4572297623851b58cb2febb3f582ac1a6a6297708320d05e03783c5bca +size 26448 diff --git a/source/designs/files/rkt/027371.rkt b/source/designs/files/rkt/027371.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9c85f0d4b80fe7087761bab69f89c5e7f27309f8 --- /dev/null +++ b/source/designs/files/rkt/027371.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45070bf1da5fd80903cfa1d80e5cf76516e373521b23f24cc5d69c5a06963f48 +size 21642 diff --git a/source/designs/files/rkt/027372.rkt b/source/designs/files/rkt/027372.rkt new file mode 100644 index 0000000000000000000000000000000000000000..618d2dc47503c802e14f71579d2be0719389b180 --- /dev/null +++ b/source/designs/files/rkt/027372.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5dbcf20415f9679f05332ac314c8f6596fea37e2efdebc203ea73695fdb847 +size 63712 diff --git a/source/designs/files/rkt/027373.rkt b/source/designs/files/rkt/027373.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1c38fce136bbe226ab5235b27ae72c6dc8706a5c --- /dev/null +++ b/source/designs/files/rkt/027373.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169cce18c791e02720838a633ba1d99c0dafd2fec0806cab7f90a48201a0a08c +size 35335 diff --git a/source/designs/files/rkt/027374.rkt b/source/designs/files/rkt/027374.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f8de34ebb4bd1278bff308e4c983cd1135f4507e --- /dev/null +++ b/source/designs/files/rkt/027374.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a2e9397434a080859b25f1c024685b7790fa021f424425994cd15453ac4fe3 +size 46855 diff --git a/source/designs/files/rkt/027375.rkt b/source/designs/files/rkt/027375.rkt new file mode 100644 index 0000000000000000000000000000000000000000..175c8aaccf7797703f98235c7c05fc161febe41d --- /dev/null +++ b/source/designs/files/rkt/027375.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e37b5e85d0dba3b8c7598201d45a82b1382ed31716c17424fcac750acc40ee +size 50318 diff --git a/source/designs/files/rkt/027376.rkt b/source/designs/files/rkt/027376.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a760f9b58b835b14f1fd93302885f19727ffb50b --- /dev/null +++ b/source/designs/files/rkt/027376.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5679fe93aeb59fe4a423dcea44daa0126dc21d8dbf50ffedf9074b298d9afb6b +size 89108 diff --git a/source/designs/files/rkt/027377.rkt b/source/designs/files/rkt/027377.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bc53a98cefaa64ca5c7cb14bcab29cc89d3bc408 --- /dev/null +++ b/source/designs/files/rkt/027377.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a791d95775e564d68690709fa62e871cbe93ef434c77333ee48a4d111a6b0343 +size 130423 diff --git a/source/designs/files/rkt/027378.rkt b/source/designs/files/rkt/027378.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4a8e1f7726c47d1f2e4ac107c1b82e34ea6815ad --- /dev/null +++ b/source/designs/files/rkt/027378.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd426651bf67401c08cf202498f29b7e3dac752886f6279c4ebbaf11aeba821a +size 139128 diff --git a/source/designs/files/rkt/027379.rkt b/source/designs/files/rkt/027379.rkt new file mode 100644 index 0000000000000000000000000000000000000000..71e615760d7c211e22e371d0a31a406a9053ced8 --- /dev/null +++ b/source/designs/files/rkt/027379.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96a3017c94944e6f027118b65b715bfd66f8f3dd5c56c46b2f493343be28715e +size 106840 diff --git a/source/designs/files/rkt/027380.rkt b/source/designs/files/rkt/027380.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f99023df41f00dd0aa06e4a7375f0b9bc7513c72 --- /dev/null +++ b/source/designs/files/rkt/027380.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3bcbf35f0f60c94e3445b003fb0436d922e3b101653b0983309f050837d4664 +size 133006 diff --git a/source/designs/files/rkt/027381.rkt b/source/designs/files/rkt/027381.rkt new file mode 100644 index 0000000000000000000000000000000000000000..568fe15c28194a7b9c29ae00f2ca9e2bffe6d753 --- /dev/null +++ b/source/designs/files/rkt/027381.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb68f24b19b2348eca4c2eefb2e915934be5ce78d644b9a60f9c685be0816d96 +size 69445 diff --git a/source/designs/files/rkt/027382.rkt b/source/designs/files/rkt/027382.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4828e1f5c710c3106b4b4ec1ad47cfb90e7e10a5 --- /dev/null +++ b/source/designs/files/rkt/027382.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b86ec9ad46982473a74add0aa2889c1eb90d78b415d818a98e15440c523878b2 +size 99107 diff --git a/source/designs/files/rkt/027383.rkt b/source/designs/files/rkt/027383.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bdb40a33c4da489340fc44cd987f81a005e5b52d --- /dev/null +++ b/source/designs/files/rkt/027383.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0edca7f99b2c808ecfadfb9043cef13b1dedb9cd40fa58f793e38f365622be11 +size 101232 diff --git a/source/designs/files/rkt/027384.rkt b/source/designs/files/rkt/027384.rkt new file mode 100644 index 0000000000000000000000000000000000000000..42f429b0c0298ece0aa1a5f11964daff7442fd21 --- /dev/null +++ b/source/designs/files/rkt/027384.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4552b0881d6e3eb17c9952496219f3e910e6667da314fbde2d30c09bdaf6a512 +size 136063 diff --git a/source/designs/files/rkt/027385.rkt b/source/designs/files/rkt/027385.rkt new file mode 100644 index 0000000000000000000000000000000000000000..137582b8145072d5bcdbf2d77a68ca218ec133ea --- /dev/null +++ b/source/designs/files/rkt/027385.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d66a9493c969e877cd6ac75704e0e6810eeb01cc0a66aaaf274d831be01e155 +size 128340 diff --git a/source/designs/files/rkt/027386.rkt b/source/designs/files/rkt/027386.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c2f6b729c88db713d5dad31987292eb28766b666 --- /dev/null +++ b/source/designs/files/rkt/027386.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f09dff46963948174ac1e5afc6111b45ecea9f35d439784a0d4ed2f7c48814b +size 81293 diff --git a/source/designs/files/rkt/027387.rkt b/source/designs/files/rkt/027387.rkt new file mode 100644 index 0000000000000000000000000000000000000000..08a6343ce8d71d8dff9796737ba015ca4de93de9 --- /dev/null +++ b/source/designs/files/rkt/027387.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf151e8d35a9dba2f8ddc2737cd7467056af49f323cb25896c61b54cdd32ea1 +size 43857 diff --git a/source/designs/files/rkt/027388.rkt b/source/designs/files/rkt/027388.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c6c28f0dd4a0f49160f7862b2517f6eca4257222 --- /dev/null +++ b/source/designs/files/rkt/027388.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c55a679c153284bb3092ee2b701111c518514108362fe825002f71d0258cf054 +size 22473 diff --git a/source/designs/files/rkt/027389.rkt b/source/designs/files/rkt/027389.rkt new file mode 100644 index 0000000000000000000000000000000000000000..223820d600d29742141dab043cb4f82b30d4fa4f --- /dev/null +++ b/source/designs/files/rkt/027389.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74fc25e6281e5d46c256a217da2ea7e78dde10f622b4333aef4320fc1d617128 +size 106195 diff --git a/source/designs/files/rkt/027390.rkt b/source/designs/files/rkt/027390.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f2ddd8966274284335355ad854729ab942d57b6b --- /dev/null +++ b/source/designs/files/rkt/027390.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a622e873c03f036ca12c6e9235f0fbd406935fa17cd6f3cf820b232e93ccb975 +size 29074 diff --git a/source/designs/files/rkt/027393.rkt b/source/designs/files/rkt/027393.rkt new file mode 100644 index 0000000000000000000000000000000000000000..49a567e4484d20f9d376d988199825567e50eb76 --- /dev/null +++ b/source/designs/files/rkt/027393.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e13d04823868848379bb46429308b456dc6a41f93aa693b890618123c7c42b1 +size 109224 diff --git a/source/designs/files/rkt/027394.rkt b/source/designs/files/rkt/027394.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6efa35f15ea27aa975ceba7dc65b9107d1560b19 --- /dev/null +++ b/source/designs/files/rkt/027394.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36cfd89c73549aacded50216b83668994081cd64965c4e78d8e60400f101755f +size 68215 diff --git a/source/designs/files/rkt/027395.rkt b/source/designs/files/rkt/027395.rkt new file mode 100644 index 0000000000000000000000000000000000000000..847debe1087db8dafc3b521294873bb2b0c20bd2 --- /dev/null +++ b/source/designs/files/rkt/027395.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d08d21ac1513c1b4cd93e9489629261189e057635bf3c388057ebc81fe15066f +size 62560 diff --git a/source/designs/files/rkt/027396.rkt b/source/designs/files/rkt/027396.rkt new file mode 100644 index 0000000000000000000000000000000000000000..10434ce5c304f759b02a146461d6ea533a90dd48 --- /dev/null +++ b/source/designs/files/rkt/027396.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f2e2e06dc7b9cd6e63ece4b435128c3032678523ca38e0144e925f1f769689 +size 61723 diff --git a/source/designs/files/rkt/027397.rkt b/source/designs/files/rkt/027397.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7305921246ccec042e8300eeeb576490d83b47cc --- /dev/null +++ b/source/designs/files/rkt/027397.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079503897e49c3476e04966750fc5428e11a104be1612ff9796f105361cd2eb2 +size 37182 diff --git a/source/designs/files/rkt/027398.rkt b/source/designs/files/rkt/027398.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f05a0c93175fc9934551cda0ec38e1f5fa1832f0 --- /dev/null +++ b/source/designs/files/rkt/027398.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bfcfc26828468a06da4ab43138eddd0177c7b7783f697aaa45bb0966a12427a +size 63821 diff --git a/source/designs/files/rkt/027399.rkt b/source/designs/files/rkt/027399.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d117be165efe9a9a0fd9d4f8a9a030bc6991bda1 --- /dev/null +++ b/source/designs/files/rkt/027399.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d93f0116a4f747ea9042493396db47a7cd0c96a396e6553b835cbfa763afa92 +size 84069 diff --git a/source/designs/files/rkt/027400.rkt b/source/designs/files/rkt/027400.rkt new file mode 100644 index 0000000000000000000000000000000000000000..837327685a3338f706e471e035fb5b5e0eb11e43 --- /dev/null +++ b/source/designs/files/rkt/027400.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a16a312f727707cc5e60c5ed46ced98acae822435ca18e8f6b3abc84345716f +size 20580 diff --git a/source/designs/files/rkt/027401.rkt b/source/designs/files/rkt/027401.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7b575b314d5ac68dfdc0cdb5cdf6d2b031703da7 --- /dev/null +++ b/source/designs/files/rkt/027401.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c113eb6c797bbd2e3d39ef9d6104e4e4dc31dd51ec4de1672b11be389b6967db +size 33851 diff --git a/source/designs/files/rkt/027402.rkt b/source/designs/files/rkt/027402.rkt new file mode 100644 index 0000000000000000000000000000000000000000..51c0400c76104b8e0b71dc5ada7dbca43e05c27a --- /dev/null +++ b/source/designs/files/rkt/027402.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c243fbc0c1386476baa1eaf9898f2703b3dd99e66b3f3af88c2627de63772c +size 18586 diff --git a/source/designs/files/rkt/027403.rkt b/source/designs/files/rkt/027403.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3500c76823bfc8af04db74440298f1c9ff31b45f --- /dev/null +++ b/source/designs/files/rkt/027403.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe9223f6c3d5d227bd4539b9d3b91e2aeaf2c18f9cd273bd7806de426cde716 +size 53912 diff --git a/source/designs/files/rkt/027404.rkt b/source/designs/files/rkt/027404.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d8ef6ffcdefb910e4a7174b73173d2d6bfd5a6df --- /dev/null +++ b/source/designs/files/rkt/027404.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c988b8f3d2b27f86b05d84235c5dd59a5a4964006876357e7a7ad5e4db3fc8f1 +size 27315 diff --git a/source/designs/files/rkt/027405.rkt b/source/designs/files/rkt/027405.rkt new file mode 100644 index 0000000000000000000000000000000000000000..674be9cd226c6921d78ee785647131af53f5ac6e --- /dev/null +++ b/source/designs/files/rkt/027405.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8aff708371174b18aa3605d5c054744348d732528244afeef038c6c7a39f399 +size 62264 diff --git a/source/designs/files/rkt/027406.rkt b/source/designs/files/rkt/027406.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e2c992bb5a2a6a4e5a864b126a7a07a4aeb52a83 --- /dev/null +++ b/source/designs/files/rkt/027406.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c015d0a0f60e4febbaad844699335d4010a94788f3d2b9d12e2ea1aecb90be +size 75745 diff --git a/source/designs/files/rkt/027407.rkt b/source/designs/files/rkt/027407.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c86440894497fd49e9f2d0df294d0593623ac3d2 --- /dev/null +++ b/source/designs/files/rkt/027407.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf6cdb6b577d178ab6279da3e3c566eaf82cb5c86b431ac0b708105ff1fad7f +size 37426 diff --git a/source/designs/files/rkt/027408.rkt b/source/designs/files/rkt/027408.rkt new file mode 100644 index 0000000000000000000000000000000000000000..977d45a8d5e02572395f292e48d4267952db670e --- /dev/null +++ b/source/designs/files/rkt/027408.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dc462c35fe1412ab7ba318839ea062e28aa0fe62add046c708be2623a1a8376 +size 17493 diff --git a/source/designs/files/rkt/027409.rkt b/source/designs/files/rkt/027409.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3da3b34eff82be1df111bd2cf0157b03f45e95ed --- /dev/null +++ b/source/designs/files/rkt/027409.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75c388d21d2dedc1ee2c6f1bc4da8ba2758476b75d0f8c5fb45d43310c845ed +size 82831 diff --git a/source/designs/files/rkt/027410.rkt b/source/designs/files/rkt/027410.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1ffd79be513a3cb9e7f287fb9e15ef13be956a44 --- /dev/null +++ b/source/designs/files/rkt/027410.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:000344314ba089f6569f6e71cb39c892d474a6e2113dc982059a144425b6a8ef +size 83263 diff --git a/source/designs/files/rkt/027411.rkt b/source/designs/files/rkt/027411.rkt new file mode 100644 index 0000000000000000000000000000000000000000..900c60f134802523d28d56564918841a556d9b88 --- /dev/null +++ b/source/designs/files/rkt/027411.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cac3e7a3f5e12000e67f92eadaa43487614d99213a444e14be28c65ca07210f4 +size 84144 diff --git a/source/designs/files/rkt/027412.rkt b/source/designs/files/rkt/027412.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6c738203f2c6cb7ca545c4c47ea429dceee70046 --- /dev/null +++ b/source/designs/files/rkt/027412.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9fe0b465eb7d28f881836265a310b76b14f8b9e8754a7db36435876e019c93 +size 78806 diff --git a/source/designs/files/rkt/027413.rkt b/source/designs/files/rkt/027413.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bc41d9823335ac212cb3b8cbc21010a880fd710a --- /dev/null +++ b/source/designs/files/rkt/027413.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22664ac3f6e97e77a8ca5d8b9e06f4073de3c0337dafd3286ff4dc4bd532ad14 +size 84468 diff --git a/source/designs/files/rkt/027414.rkt b/source/designs/files/rkt/027414.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c6196c8431c2be9076f7ebad82ac0e6cedb606db --- /dev/null +++ b/source/designs/files/rkt/027414.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd63bc6e9163c4a491e66b5cebffce60e04a05c539b810e9f042d3126e3eaf5e +size 57205 diff --git a/source/designs/files/rkt/027415.rkt b/source/designs/files/rkt/027415.rkt new file mode 100644 index 0000000000000000000000000000000000000000..894d9e692e2a7840f8d811f1bd2adeb16d98f801 --- /dev/null +++ b/source/designs/files/rkt/027415.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0e6f1b15375cddcc21e11a27abae5f971e9a33a2316d70821935f90e530659 +size 98788 diff --git a/source/designs/files/rkt/027416.rkt b/source/designs/files/rkt/027416.rkt new file mode 100644 index 0000000000000000000000000000000000000000..17e9d201be4955a5ca810a99c5be7991a4fcaef2 --- /dev/null +++ b/source/designs/files/rkt/027416.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eab65b1c1b4127cd3ae2e476deb63c0b3a57d001d445a95a5eed8ea77eee32c +size 79350 diff --git a/source/designs/files/rkt/027418.rkt b/source/designs/files/rkt/027418.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f3fef85c9b9635db12f1af4a6d933827fd2ce432 --- /dev/null +++ b/source/designs/files/rkt/027418.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a5066d02c68455f4f141dd46d860f3a3f90844261ee645076137041d1c8c9eb +size 81173 diff --git a/source/designs/files/rkt/027419.rkt b/source/designs/files/rkt/027419.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b85b56c2030bda1b20efd0dfa5ed05107c578dfa --- /dev/null +++ b/source/designs/files/rkt/027419.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a545611bcddaf7ba43a8f7227b2bab2acea30a537f042fe150adb1f677725531 +size 116488 diff --git a/source/designs/files/rkt/027420.rkt b/source/designs/files/rkt/027420.rkt new file mode 100644 index 0000000000000000000000000000000000000000..18f56daa1f512adc06b4089aaf2c68b325a77b3e --- /dev/null +++ b/source/designs/files/rkt/027420.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8174445b53c62ff40ef89775aa38a66c453c8020e3a0a3d068c8595beac9b47a +size 41200 diff --git a/source/designs/files/rkt/027421.rkt b/source/designs/files/rkt/027421.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2cc7730615d4d7596143e631b8d51c3e80a68af7 --- /dev/null +++ b/source/designs/files/rkt/027421.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97de977c83dcaca4203c46ee4f161b540e8200dba76ccd6529dd1a1eb24383a8 +size 98915 diff --git a/source/designs/files/rkt/027422.rkt b/source/designs/files/rkt/027422.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0bbc2f30705b94c68f67f4787c639b664a28bc1b --- /dev/null +++ b/source/designs/files/rkt/027422.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58131065a40c87d8d263ec4a9667a3b89e9020f6a7aa4bada6a988afde8a8e5b +size 53492 diff --git a/source/designs/files/rkt/027423.rkt b/source/designs/files/rkt/027423.rkt new file mode 100644 index 0000000000000000000000000000000000000000..106ae26c9f6552a1b43296612776132aee0b4b69 --- /dev/null +++ b/source/designs/files/rkt/027423.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10e320d4b2bd14119b886a3e4087453f376a8f5358b115abb65d8a3cedbcb019 +size 56209 diff --git a/source/designs/files/rkt/027424.rkt b/source/designs/files/rkt/027424.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9b98e5243277b68414e97827c441a14452d60012 --- /dev/null +++ b/source/designs/files/rkt/027424.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3eaeead973c7f9b01e652d923d16d448ba78793886aedc5d2279deecf5d128c +size 35252 diff --git a/source/designs/files/rkt/027425.rkt b/source/designs/files/rkt/027425.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0b1b69aaac56d2205dcfa1f6a080e7032f633e87 --- /dev/null +++ b/source/designs/files/rkt/027425.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a913e6cfdad44a8a3b8e284836e4fc14eb647e6eaa9fd24fd67112e7f31207 +size 46036 diff --git a/source/designs/files/rkt/027426.rkt b/source/designs/files/rkt/027426.rkt new file mode 100644 index 0000000000000000000000000000000000000000..faa7b44c8ea01f09ed94ed2bd41b07b805d778c3 --- /dev/null +++ b/source/designs/files/rkt/027426.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c8cb8c763cc260afbe371e1e834e4c6d1cc14bea3905d7222d7199955bf773 +size 54348 diff --git a/source/designs/files/rkt/027427.rkt b/source/designs/files/rkt/027427.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1392ce47c2655e6581274ad85ca14c7a094c10db --- /dev/null +++ b/source/designs/files/rkt/027427.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c928a93e32580be2798a1f146b3eb3231a3aad7c5cd53e8bcb4520d9ccfb3de +size 48643 diff --git a/source/designs/files/rkt/027428.rkt b/source/designs/files/rkt/027428.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2041fedc5f0a91d80f40c1e8a43abc326f3879e9 --- /dev/null +++ b/source/designs/files/rkt/027428.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da718a9056d87e428202096b3dc592c2905b09616484687997491c31801ecad +size 42627 diff --git a/source/designs/files/rkt/027430.rkt b/source/designs/files/rkt/027430.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c70abf35ea3be47c66b5168fd987c36c58b744de --- /dev/null +++ b/source/designs/files/rkt/027430.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1af5a7e012b25715ec2fec1ba600ededc3cfed829b4ac75fe2b0811bc3d8e68 +size 61566 diff --git a/source/designs/files/rkt/027431.rkt b/source/designs/files/rkt/027431.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b0f2a3ac8f1b79c2625fe4d24971bfddd256588f --- /dev/null +++ b/source/designs/files/rkt/027431.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b57ccb3ef4b75bd11a94583ec4c164d526352ae4c656fb42ed11e12bac3d6ef +size 54504 diff --git a/source/designs/files/rkt/027432.rkt b/source/designs/files/rkt/027432.rkt new file mode 100644 index 0000000000000000000000000000000000000000..479981b5d37acbc101763b0e3465e650770fa772 --- /dev/null +++ b/source/designs/files/rkt/027432.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe18fc049bb5647a8d4735711e764a4501e9c61a25732ac7f519aa09ea0c3607 +size 37806 diff --git a/source/designs/files/rkt/027433.rkt b/source/designs/files/rkt/027433.rkt new file mode 100644 index 0000000000000000000000000000000000000000..78f0e6234ed956142966b722896e18d8016e4bfc --- /dev/null +++ b/source/designs/files/rkt/027433.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a7f51b54142269abab6dc1bfcf20846756d2767a265dfbc12ecc8cc2c43fa7f +size 41140 diff --git a/source/designs/files/rkt/027434.rkt b/source/designs/files/rkt/027434.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d7843efa83f68f8b55658181979d685aa8e183f7 --- /dev/null +++ b/source/designs/files/rkt/027434.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f4001d943663e39c6fad2e0e86ddab9f691ec0f846384bd9cdf4a683ed555a8 +size 69878 diff --git a/source/designs/files/rkt/027435.rkt b/source/designs/files/rkt/027435.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8025b97c2f26583706f1c4f3d54a10d2491f6a78 --- /dev/null +++ b/source/designs/files/rkt/027435.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f7726bc572a597d56854ce120f968e4004996404cc44ade896e938be10f419 +size 77190 diff --git a/source/designs/files/rkt/027436.rkt b/source/designs/files/rkt/027436.rkt new file mode 100644 index 0000000000000000000000000000000000000000..345220b70091131e2246b48e9aa4bba4e81f184c --- /dev/null +++ b/source/designs/files/rkt/027436.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d99d2a998203e40d1ad2a09003e6cc0ab47813418e5a496ba797a60aa61a7aa +size 95402 diff --git a/source/designs/files/rkt/027437.rkt b/source/designs/files/rkt/027437.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9423f53ff0378e6cd7869f59d9c2ae312f24e47d --- /dev/null +++ b/source/designs/files/rkt/027437.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f3a1ae99e7289998d2e41dc92cc6e7935e6e6febd43d921fda5a551cb828c7 +size 67467 diff --git a/source/designs/files/rkt/027438.rkt b/source/designs/files/rkt/027438.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e30a10082799dece2f2c3a643b1f1e67f3f598c0 --- /dev/null +++ b/source/designs/files/rkt/027438.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0896a2f0abcd520cac2904af2491dee1e5390c7c3a4bbc117b2e086910c115 +size 84621 diff --git a/source/designs/files/rkt/027439.rkt b/source/designs/files/rkt/027439.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d357afa1bd9cdad57c78b3473290d5be6cb7bdac --- /dev/null +++ b/source/designs/files/rkt/027439.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966759c0db09ba29bea41ded78db920d2e3dc2f59063617d7b40d2a397264c89 +size 40752 diff --git a/source/designs/files/rkt/027440.rkt b/source/designs/files/rkt/027440.rkt new file mode 100644 index 0000000000000000000000000000000000000000..30ea3de0ee19709e82d9e6a496ab4832416edb4b --- /dev/null +++ b/source/designs/files/rkt/027440.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8803bd8a6c778b0269473eda50e718929a40ce42b211f90f990151cebf6a3d3 +size 163150 diff --git a/source/designs/files/rkt/027441.rkt b/source/designs/files/rkt/027441.rkt new file mode 100644 index 0000000000000000000000000000000000000000..00dfdb65fbcd172968cfbcceec7f996d2476dec9 --- /dev/null +++ b/source/designs/files/rkt/027441.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698a39d51f9da97c9f82afb01229dff971b3f33b192964dc11165ff75e895ef9 +size 66622 diff --git a/source/designs/files/rkt/027442.rkt b/source/designs/files/rkt/027442.rkt new file mode 100644 index 0000000000000000000000000000000000000000..61cb636ff988ecf3bcd148aaac5c32f9dee1d9da --- /dev/null +++ b/source/designs/files/rkt/027442.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e233ace9ab4f3d92a86c49fe321de46102e8c32720bfca7fe41329cc9cca273f +size 78908 diff --git a/source/designs/files/rkt/027443.rkt b/source/designs/files/rkt/027443.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c30431688a23f87ee2ecb3b0ee6982c2c476c695 --- /dev/null +++ b/source/designs/files/rkt/027443.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1e567fb3c2e30664e2f969e7dd3bdd3e4ccd3e2b9374f94034b002f3f84bf4 +size 22981 diff --git a/source/designs/files/rkt/027444.rkt b/source/designs/files/rkt/027444.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1d85e05df709c10e4da8926a49a3d35d2c8f7350 --- /dev/null +++ b/source/designs/files/rkt/027444.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4278cfa73eee1f959913b73bd875f8a77beabf82da990b205c856d382778ef +size 82068 diff --git a/source/designs/files/rkt/027445.rkt b/source/designs/files/rkt/027445.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1c3e7f3ba69d0a00b971fc01a7cad3e6b3b25ce0 --- /dev/null +++ b/source/designs/files/rkt/027445.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc30e332102eb8e2eb7108db53748e41929e3eef8d68213085d34ecd67b73cf +size 121551 diff --git a/source/designs/files/rkt/027446.rkt b/source/designs/files/rkt/027446.rkt new file mode 100644 index 0000000000000000000000000000000000000000..edad2fdea4b42c35133a990ecd28996037e487dc --- /dev/null +++ b/source/designs/files/rkt/027446.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3388382eb0f05fa2cb89bb2db83548ecfdbf30f62dea573232bc24ba074c80 +size 57532 diff --git a/source/designs/files/rkt/027447.rkt b/source/designs/files/rkt/027447.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6dcb12f1d8636e412f28b9afe2319f5b2d7acfa3 --- /dev/null +++ b/source/designs/files/rkt/027447.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b514befe4327d0857b137c1679065d8470d4ea5843a2bf3fc1d773df9d34e0 +size 56372 diff --git a/source/designs/files/rkt/027448.rkt b/source/designs/files/rkt/027448.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d62b13a1b93801331105aa8b3338396f49b9ad1e --- /dev/null +++ b/source/designs/files/rkt/027448.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d3d0ae656ba7fd7444034083fe006b7168e24fed7b81a30393b055c90960f1 +size 45485 diff --git a/source/designs/files/rkt/027449.rkt b/source/designs/files/rkt/027449.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4db691cfc990987aaffb9672d8669f501ed915c3 --- /dev/null +++ b/source/designs/files/rkt/027449.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb63029377ded2a89c3cc254c1fcb5e55ef0e8a8807160102213497ab78d0e1 +size 68514 diff --git a/source/designs/files/rkt/027450.rkt b/source/designs/files/rkt/027450.rkt new file mode 100644 index 0000000000000000000000000000000000000000..279fc2452dcbc24256d38c3415b8bd6bf166e92e --- /dev/null +++ b/source/designs/files/rkt/027450.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a8a481aac9659e561451a1ca0f154b2e3675730b998d30ecb0ef4d1b2b56e6 +size 40951 diff --git a/source/designs/files/rkt/027451.rkt b/source/designs/files/rkt/027451.rkt new file mode 100644 index 0000000000000000000000000000000000000000..04a128d0b57f0a0d1d447aad471dd1d5ee1a9936 --- /dev/null +++ b/source/designs/files/rkt/027451.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48d0b61da371c154226b19145e331e89c071df4a6bcaecbedede82bceeb9923b +size 41207 diff --git a/source/designs/files/rkt/027452.rkt b/source/designs/files/rkt/027452.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f3e78d36ab8ff4d4239ad9a51ad0178e04d129c2 --- /dev/null +++ b/source/designs/files/rkt/027452.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43cd83855580ba843f7d61403077e695842e00a42fe6d86c6a4925ce03fa3356 +size 80105 diff --git a/source/designs/files/rkt/027453.rkt b/source/designs/files/rkt/027453.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cc1b5fec29418e5a447bf6d9642977168ad8818b --- /dev/null +++ b/source/designs/files/rkt/027453.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f7c47a42fa48704900d59df68fe7c9d4e148c32369e45e80c449bc72b601624 +size 43803 diff --git a/source/designs/files/rkt/027454.rkt b/source/designs/files/rkt/027454.rkt new file mode 100644 index 0000000000000000000000000000000000000000..23bbe3fae8ba6bb56f76ada784ce866e7c2dcb38 --- /dev/null +++ b/source/designs/files/rkt/027454.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7d7425d78d38083f38be757b454a606b1692785d840efd7c1c638a5277e262 +size 70893 diff --git a/source/designs/files/rkt/027455.rkt b/source/designs/files/rkt/027455.rkt new file mode 100644 index 0000000000000000000000000000000000000000..814cd9490c30395151a8c23e861b14e07a26dd7e --- /dev/null +++ b/source/designs/files/rkt/027455.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ba97544afcf8c38e428e0cc01a339816cdf696b5f819629bb0633345a4287f6 +size 57420 diff --git a/source/designs/files/rkt/027456.rkt b/source/designs/files/rkt/027456.rkt new file mode 100644 index 0000000000000000000000000000000000000000..751c3d9139064e3ba91a382bab258c3c85eb9286 --- /dev/null +++ b/source/designs/files/rkt/027456.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0e9735b4ef31447cd02289a5ba8210f3fd14002a34b9612ab5b53641cb2d64 +size 42489 diff --git a/source/designs/files/rkt/027458.rkt b/source/designs/files/rkt/027458.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ff073325fd16820a3468445f4e27d32f28e26892 --- /dev/null +++ b/source/designs/files/rkt/027458.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbfd223b18bf2cf4d130a666a0cc1c281db50d8b03588ad3254a1578a808093 +size 29483 diff --git a/source/designs/files/rkt/027460.rkt b/source/designs/files/rkt/027460.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7830201ab12af7f01b3d4ef47d2123bc29422f1b --- /dev/null +++ b/source/designs/files/rkt/027460.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737d9500545b73e30a86a099cd90a4f9de17b9637e3db7c74f48c33f41f38049 +size 63818 diff --git a/source/designs/files/rkt/027461.rkt b/source/designs/files/rkt/027461.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f315477ccef11e0782be9f050a8934c7059be651 --- /dev/null +++ b/source/designs/files/rkt/027461.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f500669a4f11850a4f4a5d75bb62268eb3f9f5675146bf57e5210cdbbfd52d8 +size 51452 diff --git a/source/designs/files/rkt/027462.rkt b/source/designs/files/rkt/027462.rkt new file mode 100644 index 0000000000000000000000000000000000000000..72d7484f3d40ffc063da30324c5c991624effd95 --- /dev/null +++ b/source/designs/files/rkt/027462.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01310f891c34674b210021a04aa4bbc69df882b4a2e4f8944a02affe01f8c9d5 +size 53071 diff --git a/source/designs/files/rkt/027463.rkt b/source/designs/files/rkt/027463.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a1df8b1096476c42793d3e9ccedf048070bd65b9 --- /dev/null +++ b/source/designs/files/rkt/027463.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51e81edc2cadee66dbbfe7e99195d873052a9c0639d57fdf325170bd21fa6c14 +size 67986 diff --git a/source/designs/files/rkt/027464.rkt b/source/designs/files/rkt/027464.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2f5db3bfd7a5557375ae5d9b17627315afeaa2c2 --- /dev/null +++ b/source/designs/files/rkt/027464.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b0c32afb14d6c6f9273f75a202cf912b8f0a3c9846915e1a3745c2908118892 +size 37585 diff --git a/source/designs/files/rkt/027465.rkt b/source/designs/files/rkt/027465.rkt new file mode 100644 index 0000000000000000000000000000000000000000..edbda0c5af2bea8e98beb13752adbb1d4398eabf --- /dev/null +++ b/source/designs/files/rkt/027465.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccee5a1dba21969b02c296d0a0654c2b984db11d0684a191d6876bfb75574bc4 +size 44627 diff --git a/source/designs/files/rkt/027466.rkt b/source/designs/files/rkt/027466.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d4e5d644985489472e30b551db7c26cd5353b245 --- /dev/null +++ b/source/designs/files/rkt/027466.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d9ff6f5b7f49a901f8d75e95add26666716469c02b4a19e483cd487932e2ebb +size 56838 diff --git a/source/designs/files/rkt/027467.rkt b/source/designs/files/rkt/027467.rkt new file mode 100644 index 0000000000000000000000000000000000000000..795e5046f116f07703821c861ae598db3b2d25ad --- /dev/null +++ b/source/designs/files/rkt/027467.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356445b278ead1ca2cdff9756ef4569d7ca2220a09ea9822a855a7f10ac99189 +size 23224 diff --git a/source/designs/files/rkt/027468.rkt b/source/designs/files/rkt/027468.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9c18d70cd612fdb377423c285318d4a5d9b1df6e --- /dev/null +++ b/source/designs/files/rkt/027468.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac61a4d72b1d6c0d647a587756da3210ba05a384b59f412f5ccbeca860cafc64 +size 35268 diff --git a/source/designs/files/rkt/027471.rkt b/source/designs/files/rkt/027471.rkt new file mode 100644 index 0000000000000000000000000000000000000000..67da68d8685ea64b08317a80f950d12461294211 --- /dev/null +++ b/source/designs/files/rkt/027471.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd2012a1fb004e8c9bda85b1f9caaf8eb916eb520ff1c86a86cd3aa85f0344a1 +size 50099 diff --git a/source/designs/files/rkt/027472.rkt b/source/designs/files/rkt/027472.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f8fb18dbd387a1d2945d045ec35c4713d33b839b --- /dev/null +++ b/source/designs/files/rkt/027472.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba5674c036e53022716fef657c5add3bb5115d7922b83083890c7f630ecdaa8 +size 55792 diff --git a/source/designs/files/rkt/027473.rkt b/source/designs/files/rkt/027473.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8aac345184b8f6efe5378d6e7654266eb475cb02 --- /dev/null +++ b/source/designs/files/rkt/027473.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7c0ee0b62f824d1f09132d64a61bb34499d7384868cb8a02b4dd2001cb0ce7 +size 62657 diff --git a/source/designs/files/rkt/027474.rkt b/source/designs/files/rkt/027474.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5d0f2116bdb69628f0cfbd10fdfa95255fba0977 --- /dev/null +++ b/source/designs/files/rkt/027474.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e29d28d5b20603387b9e9b0ba85a9e6244b5495baf52b57ed1fb598cefee0d7d +size 32111 diff --git a/source/designs/files/rkt/027475.rkt b/source/designs/files/rkt/027475.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2c87a0362cbb6f0f1d0237699316c8805b5f36d5 --- /dev/null +++ b/source/designs/files/rkt/027475.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145f68893951cdb8e0ba2354478df7e79c0d811c1d0393ce9ee72206e96e66b9 +size 57935 diff --git a/source/designs/files/rkt/027476.rkt b/source/designs/files/rkt/027476.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9ca6ef9764f843dc8516db021a50cd31345b5f4f --- /dev/null +++ b/source/designs/files/rkt/027476.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d805e99f34155134ee6e3705d1ebd56d3e78f22283f2e3a6f300836aa4efaf7c +size 53457 diff --git a/source/designs/files/rkt/027478.rkt b/source/designs/files/rkt/027478.rkt new file mode 100644 index 0000000000000000000000000000000000000000..428e22e513aee9120c17c8035fad22c7b97f5725 --- /dev/null +++ b/source/designs/files/rkt/027478.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a39afc9f678ec924f2a5e8803ae59108d0a8de33fc202e87d28bd5ce6294c68 +size 333192 diff --git a/source/designs/files/rkt/027479.rkt b/source/designs/files/rkt/027479.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1ae1ef2917d9e797c18153d61f7fac8626c9d40d --- /dev/null +++ b/source/designs/files/rkt/027479.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc920c1e2ee5c91927390e2eada88859e23a68c96aec29552171ed06906ee78 +size 15899 diff --git a/source/designs/files/rkt/027480.rkt b/source/designs/files/rkt/027480.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ce106e40f2e331339e1bb6b1a643f177d8635770 --- /dev/null +++ b/source/designs/files/rkt/027480.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c49cf9fb081351b68513265319d9bf495b952d24c31bf93120adb0fa5d1972 +size 38826 diff --git a/source/designs/files/rkt/027481.rkt b/source/designs/files/rkt/027481.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d798afd89b985364630196940d30a94b942e6dc1 --- /dev/null +++ b/source/designs/files/rkt/027481.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1be593af987015d21f827269dbd126390654e9b24e516086704c1a74f1c27d2 +size 43833 diff --git a/source/designs/files/rkt/027483.rkt b/source/designs/files/rkt/027483.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d152145906dc47cb0e439218c6934bd896fd42d1 --- /dev/null +++ b/source/designs/files/rkt/027483.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3743ea16e7fdd6c5062f37d6d94a06583e38d9fe0c1353e78a2775eb4ac6137e +size 53517 diff --git a/source/designs/files/rkt/027484.rkt b/source/designs/files/rkt/027484.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c59a188269238d669f868ca98568964831976b3f --- /dev/null +++ b/source/designs/files/rkt/027484.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be29f68f2f324b35010ff664c645fd358d58ce16625cc7531f250a4658a3a61 +size 28490 diff --git a/source/designs/files/rkt/027485.rkt b/source/designs/files/rkt/027485.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b5c10e452e794e75a9c96f3c6f9caa0f6ee6a37b --- /dev/null +++ b/source/designs/files/rkt/027485.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35431d5733d631f7661a8227ac28553130e4769483e587febfc53b63add620f0 +size 157803 diff --git a/source/designs/files/rkt/027486.rkt b/source/designs/files/rkt/027486.rkt new file mode 100644 index 0000000000000000000000000000000000000000..875b247c761dfb79ab3c9b043db5e44f6e31b4e3 --- /dev/null +++ b/source/designs/files/rkt/027486.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2db2b461ce6bb1d0528c73404673d505a895e412bd2f1f6067ecaf67f0324dd +size 74582 diff --git a/source/designs/files/rkt/027487.rkt b/source/designs/files/rkt/027487.rkt new file mode 100644 index 0000000000000000000000000000000000000000..58cbb1cb6161a236c870aa8ae6e2a15933dc8dc0 --- /dev/null +++ b/source/designs/files/rkt/027487.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5e563efeb0bfc14ec7510998402527d08471dcc2b2358ff171743a73613b92 +size 51134 diff --git a/source/designs/files/rkt/027488.rkt b/source/designs/files/rkt/027488.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0fe16974e3ca5c7f7d451d71e0d06b0cd1dbcdf4 --- /dev/null +++ b/source/designs/files/rkt/027488.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3653caf5233739f743c4ea88eecc520af1465c8ba641829ec83c9bf855c4be0a +size 38931 diff --git a/source/designs/files/rkt/027489.rkt b/source/designs/files/rkt/027489.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3297ae3e4f0a95fb923f6e036f7e8e25719c62cd --- /dev/null +++ b/source/designs/files/rkt/027489.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8266b56516bd0985049730a31a3794fde1649654c0e60ac8b721f841eafdc2 +size 50493 diff --git a/source/designs/files/rkt/027490.rkt b/source/designs/files/rkt/027490.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e836a416bd03fb599f25fbbbd154db1ee1c1764a --- /dev/null +++ b/source/designs/files/rkt/027490.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27cb2df2ed7eb85a07c2fe1c815b5e5050fd8352a4ce207f586f0c604b975a37 +size 42648 diff --git a/source/designs/files/rkt/027491.rkt b/source/designs/files/rkt/027491.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea6f3062c699dd626ab84f7dc6b984e48ecfb3ac --- /dev/null +++ b/source/designs/files/rkt/027491.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9909ad0fddf6862e4aa369d78d94bcea258894d275444ec38b36fc0ae7c2a5bf +size 70667 diff --git a/source/designs/files/rkt/027492.rkt b/source/designs/files/rkt/027492.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3586f9257ab20f5f8398d8dc795fda19b5de6e53 --- /dev/null +++ b/source/designs/files/rkt/027492.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d11edbbec0422d34ede53cffbe53b5b9de4c43bcac71f348a986669ff071d1d +size 45730 diff --git a/source/designs/files/rkt/027493.rkt b/source/designs/files/rkt/027493.rkt new file mode 100644 index 0000000000000000000000000000000000000000..af52c717b7d29137bce59741e0aad60e4f4ae837 --- /dev/null +++ b/source/designs/files/rkt/027493.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945f0594513db59035ff2f66b9fed445a4d929156feb525be785d46d0d59d1ce +size 81054 diff --git a/source/designs/files/rkt/027494.rkt b/source/designs/files/rkt/027494.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a52f6c5a7010b3ac56c4ccf68b5d56a1df145c6c --- /dev/null +++ b/source/designs/files/rkt/027494.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b799ebe61038f5c3e38677b9607ae89f575fc48bdcf9c66bf06056424b74c95 +size 56648 diff --git a/source/designs/files/rkt/027495.rkt b/source/designs/files/rkt/027495.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3a91de716d867bba009a0a59c0427c2624e0c800 --- /dev/null +++ b/source/designs/files/rkt/027495.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4366bfaa6faebf1de04244753fd1ec2c6d02b64287d9e37a64775267e902638 +size 44971 diff --git a/source/designs/files/rkt/027496.rkt b/source/designs/files/rkt/027496.rkt new file mode 100644 index 0000000000000000000000000000000000000000..48faea7c1ab45ca218173e96013e37b591fe9f46 --- /dev/null +++ b/source/designs/files/rkt/027496.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:138eee56565983440f5145c00551b94a4f8c1fbf74d83a14533f769792a886b0 +size 31222 diff --git a/source/designs/files/rkt/027497.rkt b/source/designs/files/rkt/027497.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9d47ece76c769a103d32106219cfe98a9506075d --- /dev/null +++ b/source/designs/files/rkt/027497.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66d6248906a4c2ad812b724c008a9cad7b393b38cd50782de3f20e73d91bc9b +size 56804 diff --git a/source/designs/files/rkt/027498.rkt b/source/designs/files/rkt/027498.rkt new file mode 100644 index 0000000000000000000000000000000000000000..03ff55867728077abca3669281aee159eccba2b0 --- /dev/null +++ b/source/designs/files/rkt/027498.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93ff84e1e48eec824d4d0c9ba8e8cc068d6757b517bd8b12aa4922e2a39c94ad +size 80101 diff --git a/source/designs/files/rkt/027499.rkt b/source/designs/files/rkt/027499.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d68fd55a6993da9ccb8370fa07d15aeb6b80321b --- /dev/null +++ b/source/designs/files/rkt/027499.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb5e5bb1dc092f59e6148eea076ef56c6a97b66150cdd1448562b0f71bb5989 +size 151867 diff --git a/source/designs/files/rkt/027500.rkt b/source/designs/files/rkt/027500.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6fd900e916d039dda1089ae233b2bada193db072 --- /dev/null +++ b/source/designs/files/rkt/027500.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94c72a77831381b0cbaa1b831b28e649973a0fe4b94a4c01b52f36438b06a56 +size 44612 diff --git a/source/designs/files/rkt/027501.rkt b/source/designs/files/rkt/027501.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1de5eb1b74b565853d65a18447229b3469a46b86 --- /dev/null +++ b/source/designs/files/rkt/027501.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4fe15e6853d6a9cb41cc7b34e940abf36420533fdac97267d6583e5dfcd7ba +size 58908 diff --git a/source/designs/files/rkt/027502.rkt b/source/designs/files/rkt/027502.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2477f03fe5f172d79bc5eae4e0db646210e775bb --- /dev/null +++ b/source/designs/files/rkt/027502.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a146298d86f6e5351d034d6becd0f07e9eae38b23ed621694b49ab5aa1a511a +size 74758 diff --git a/source/designs/files/rkt/027503.rkt b/source/designs/files/rkt/027503.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f9798a218312e2c7c7eea349806b92c1636542f6 --- /dev/null +++ b/source/designs/files/rkt/027503.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a7ddd9f007ec7e09906d3f835cfe692b8529f148b16f54b6da555e62a14a0b +size 76086 diff --git a/source/designs/files/rkt/027504.rkt b/source/designs/files/rkt/027504.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e8d0b5f3ab3923c1a48c26c19ed1af986df3d086 --- /dev/null +++ b/source/designs/files/rkt/027504.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703f59f319ad7d533c26e6979cd99dc51c4fab6c106dba439475c1540eb9518b +size 70906 diff --git a/source/designs/files/rkt/027505.rkt b/source/designs/files/rkt/027505.rkt new file mode 100644 index 0000000000000000000000000000000000000000..efa2f33a1d3814eec83db0df896cdeb790d96220 --- /dev/null +++ b/source/designs/files/rkt/027505.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b60575b27c5652ba8457cb05894f9c6b0f807695e2b6a5437e751594c6b548 +size 57904 diff --git a/source/designs/files/rkt/027506.rkt b/source/designs/files/rkt/027506.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1a17fced684f107e41a5c4008b84b9cd406318a0 --- /dev/null +++ b/source/designs/files/rkt/027506.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893d53ab213ecc00d35ff9c3bc048e02c6d3d2e77ef999f7b659f1cb0c135f42 +size 101006 diff --git a/source/designs/files/rkt/027507.rkt b/source/designs/files/rkt/027507.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1ca6404f401d0c90e6de5e3df378f0e680cf13a4 --- /dev/null +++ b/source/designs/files/rkt/027507.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27db3597b6d79683fde4659cb74c7125835a5fca7f6427ae9c6b8cdc3e15b5af +size 39484 diff --git a/source/designs/files/rkt/027508.rkt b/source/designs/files/rkt/027508.rkt new file mode 100644 index 0000000000000000000000000000000000000000..793cc97012840cb3eb3649ca0d8a1ee247cc6f96 --- /dev/null +++ b/source/designs/files/rkt/027508.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2cb8c265627def413d47625f8682fb3ec2ebce9aa087f66032ea859eaeb293f +size 70214 diff --git a/source/designs/files/rkt/027509.rkt b/source/designs/files/rkt/027509.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cbfd0609dff9709efceda28dd6c85db4264f32d3 --- /dev/null +++ b/source/designs/files/rkt/027509.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e310ae92ed10904dff140a5492edcfe357e82a51701390793d02f4c5762f3090 +size 92570 diff --git a/source/designs/files/rkt/027511.rkt b/source/designs/files/rkt/027511.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f3f62b61237c606297f2e710bbbbc6e5b73f2407 --- /dev/null +++ b/source/designs/files/rkt/027511.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31de2aa28251f6f4e138132ad117fdcc25c11c7a1ef5cad6e50587894c12364a +size 223425 diff --git a/source/designs/files/rkt/027512.rkt b/source/designs/files/rkt/027512.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0544f92d4c329f0a28bde155dfa50d40491cf266 --- /dev/null +++ b/source/designs/files/rkt/027512.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7c78432d6d73675cbf1684e54493e478a1c76f244040356295f1f084133e99 +size 43413 diff --git a/source/designs/files/rkt/027513.rkt b/source/designs/files/rkt/027513.rkt new file mode 100644 index 0000000000000000000000000000000000000000..be380c8fc8ad286776b308f4d35210dfbc2dbc93 --- /dev/null +++ b/source/designs/files/rkt/027513.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f160918f17c5d492e594fb18c441e627f6106274e570a9df5913130fe36f60f6 +size 171179 diff --git a/source/designs/files/rkt/027514.rkt b/source/designs/files/rkt/027514.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b77a5edcb07f9653a7c449ce9bc2bd76c3631359 --- /dev/null +++ b/source/designs/files/rkt/027514.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42bbe72606149d2d96749285d5f1fd80b87890432a1c3f8d43acf181fa394fa0 +size 60947 diff --git a/source/designs/files/rkt/027515.rkt b/source/designs/files/rkt/027515.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f5ddea1f5f540e48cb0b47ba77442317a5b3ce98 --- /dev/null +++ b/source/designs/files/rkt/027515.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d9f57f32e3058bc55d6796a85565490ea8bacaefe40e3f77f551fb96594c28 +size 44719 diff --git a/source/designs/files/rkt/027516.rkt b/source/designs/files/rkt/027516.rkt new file mode 100644 index 0000000000000000000000000000000000000000..812a58ba5d6c21f6a911e0f9a233112a8150f3b7 --- /dev/null +++ b/source/designs/files/rkt/027516.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d126f6d464a06d92e937f37244c1eb418aebbe7364d4479b98058ad69fd9368 +size 21169 diff --git a/source/designs/files/rkt/027517.rkt b/source/designs/files/rkt/027517.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3bd486fe4257db7139139a088dbe412ca96b7675 --- /dev/null +++ b/source/designs/files/rkt/027517.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056cb38bc3fc322193e0eaacff6ac644ebe137ddd3e3f7349088eef3ca47660a +size 56726 diff --git a/source/designs/files/rkt/027518.rkt b/source/designs/files/rkt/027518.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a650a4693be236dd1d898d5368e9f8128e6588e5 --- /dev/null +++ b/source/designs/files/rkt/027518.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c65b0acf73e2ef008b538a039c494ac64615315b03ab7c188ea92aaeaba63d +size 82037 diff --git a/source/designs/files/rkt/027519.rkt b/source/designs/files/rkt/027519.rkt new file mode 100644 index 0000000000000000000000000000000000000000..53fdb9294fc25f54127aa407eeea4e7911c23475 --- /dev/null +++ b/source/designs/files/rkt/027519.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787ea6653b04b632d8f1f63fb1c40ca7b60b99bd1c7f169019403b08a2722991 +size 86943 diff --git a/source/designs/files/rkt/027520.rkt b/source/designs/files/rkt/027520.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ed4065b8a50e0059b1e22be2b7660294d84278b7 --- /dev/null +++ b/source/designs/files/rkt/027520.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c4dfb6e17fec2e4a763006bced23341f2239e7b707ac3f6023f4ee9e13ecfe +size 47125 diff --git a/source/designs/files/rkt/027523.rkt b/source/designs/files/rkt/027523.rkt new file mode 100644 index 0000000000000000000000000000000000000000..847d4924d143b7bc9f065aaa9e41533d9def8b80 --- /dev/null +++ b/source/designs/files/rkt/027523.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:151adc36041c60aa96dfce9051dc2cfc06995700d821595e90168392cf35a2c9 +size 24447 diff --git a/source/designs/files/rkt/027524.rkt b/source/designs/files/rkt/027524.rkt new file mode 100644 index 0000000000000000000000000000000000000000..333f9a9a0f8baae6c810b8acfcd2f06eec44ae32 --- /dev/null +++ b/source/designs/files/rkt/027524.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68813debb42ce684f00af5cb99614c11a5f1bd94eb44f63583c36097ada21301 +size 98354 diff --git a/source/designs/files/rkt/027525.rkt b/source/designs/files/rkt/027525.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c5f2ae895194a8d227f074118fe387ec3256d919 --- /dev/null +++ b/source/designs/files/rkt/027525.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a9f92c19f8b5308f214fdf88171ff5e746c736c385098202c37d7b7faf37942 +size 126509 diff --git a/source/designs/files/rkt/027526.rkt b/source/designs/files/rkt/027526.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c6fe5f2ac62cd91b0e176c6c5eabd56ef4912dcb --- /dev/null +++ b/source/designs/files/rkt/027526.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe957df61ff5ca5e79a216fed38fe017bc2bd7e85f042f48fdfc29095991907e +size 28467 diff --git a/source/designs/files/rkt/027527.rkt b/source/designs/files/rkt/027527.rkt new file mode 100644 index 0000000000000000000000000000000000000000..69d0bd5d95d4b7906cdc78cb8e2ca0e4b94c5a38 --- /dev/null +++ b/source/designs/files/rkt/027527.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5864569145e3c9e3a51fdeb85e29136167fc8bb55c5785df59adbfe3772a78ca +size 38986 diff --git a/source/designs/files/rkt/027528.rkt b/source/designs/files/rkt/027528.rkt new file mode 100644 index 0000000000000000000000000000000000000000..df7b085ecd5b1cdc0db42ee96f0ae70ab8be2321 --- /dev/null +++ b/source/designs/files/rkt/027528.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81f73bd9bdada16419e54bb6976e6d724a9b166894cb72d378add586a152e870 +size 66867 diff --git a/source/designs/files/rkt/027529.rkt b/source/designs/files/rkt/027529.rkt new file mode 100644 index 0000000000000000000000000000000000000000..16f7df063df4ac17686a00e6596b0a7fadc49128 --- /dev/null +++ b/source/designs/files/rkt/027529.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d866291097c06cba97135ba087f72a7f98c025db9353cfaa8b1a0202a66bbd0b +size 114447 diff --git a/source/designs/files/rkt/027530.rkt b/source/designs/files/rkt/027530.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1dba79146ce19de6ca3cd4d3bf31bd74f0cc1813 --- /dev/null +++ b/source/designs/files/rkt/027530.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe4d515844a36e771b3c85242ddc8dd8fd776e6360cc76baf4e894438727737d +size 75888 diff --git a/source/designs/files/rkt/027531.rkt b/source/designs/files/rkt/027531.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fb8e354938e2be50b4f75d1106c0afdfa4adfbca --- /dev/null +++ b/source/designs/files/rkt/027531.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c32352ced828d4840ebb55d8ffa454385bb364f5a769188da31a5451434d14e +size 29765 diff --git a/source/designs/files/rkt/027532.rkt b/source/designs/files/rkt/027532.rkt new file mode 100644 index 0000000000000000000000000000000000000000..32b365652e8ca680c2e67d2ce36587f3a559d8c0 --- /dev/null +++ b/source/designs/files/rkt/027532.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f85534bec91a9896d96f96ee41d4cc571baad0f17f944669e23fe710fffeb6d +size 55124 diff --git a/source/designs/files/rkt/027533.rkt b/source/designs/files/rkt/027533.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fe719a689bc0b07a4454df4ee6752a351f9dfa6c --- /dev/null +++ b/source/designs/files/rkt/027533.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36fd5fe273dd3840eae1981938c71c6c49c128f8634f744655b86f985718d70d +size 46011 diff --git a/source/designs/files/rkt/027534.rkt b/source/designs/files/rkt/027534.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eff34f8476eccd0203e369e142b85471ec1a2927 --- /dev/null +++ b/source/designs/files/rkt/027534.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9abc385f5e8af3c7678b9e3abc9b31535b39a818e956bbd134e54519564a5d01 +size 59888 diff --git a/source/designs/files/rkt/027535.rkt b/source/designs/files/rkt/027535.rkt new file mode 100644 index 0000000000000000000000000000000000000000..03775a16567a58794e69fc2cf343fdde18addb89 --- /dev/null +++ b/source/designs/files/rkt/027535.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5218c0f3606cc17b9279633001b3dfbdd0cc1c842f8b36d5b54df62297ff3c3 +size 87188 diff --git a/source/designs/files/rkt/027536.rkt b/source/designs/files/rkt/027536.rkt new file mode 100644 index 0000000000000000000000000000000000000000..35879e7ed0d77dddd15af3474297ae08b19ed0a0 --- /dev/null +++ b/source/designs/files/rkt/027536.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865a8befb3a8d5ed7a8defebf087406c8b557a0ed8017e030dc45e4ad9d969ed +size 33099 diff --git a/source/designs/files/rkt/027537.rkt b/source/designs/files/rkt/027537.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a64856eb3a3c8ddae3c75f83ace4282f11f3dfd1 --- /dev/null +++ b/source/designs/files/rkt/027537.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4a826b1e3236cce9354cf81b66afc891ba35d0379d4f70c79a24c30c82af735 +size 35097 diff --git a/source/designs/files/rkt/027538.rkt b/source/designs/files/rkt/027538.rkt new file mode 100644 index 0000000000000000000000000000000000000000..85631322b02ccbb7f478a672e2d889e0cf2d826c --- /dev/null +++ b/source/designs/files/rkt/027538.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ceccd64835ba69fbbce7ee3596236b5952d23f34a315d001fa2e3d298ec7fb +size 73013 diff --git a/source/designs/files/rkt/027539.rkt b/source/designs/files/rkt/027539.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d430731e7b24ea56a38e27f7d07b9deab17dfc05 --- /dev/null +++ b/source/designs/files/rkt/027539.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4705f4747f3e8cfdb0f8ebc80a65e2d3674536f48da80680c3936818f46ed4c +size 70520 diff --git a/source/designs/files/rkt/027540.rkt b/source/designs/files/rkt/027540.rkt new file mode 100644 index 0000000000000000000000000000000000000000..dfb85a41adca487872756910c3ef3ab52b515b70 --- /dev/null +++ b/source/designs/files/rkt/027540.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64752d8211cd61553b7d19a57871115eda8b143248a9d8deda156b38b5e67c36 +size 111964 diff --git a/source/designs/files/rkt/027541.rkt b/source/designs/files/rkt/027541.rkt new file mode 100644 index 0000000000000000000000000000000000000000..708c13b2d71559dfcc7af7fd226c4bc0af9cb1bc --- /dev/null +++ b/source/designs/files/rkt/027541.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f7569c853c904ab0b1daf0494a4fef29d1c844fd8faeec50d0b999780d20e8 +size 108365 diff --git a/source/designs/files/rkt/027542.rkt b/source/designs/files/rkt/027542.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0b9a2587f4b60eae814191ecf80eb2c83e68ab33 --- /dev/null +++ b/source/designs/files/rkt/027542.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ccf0d3ae0ea746c5a944ef78f9730008006d2ec33c7c48d73a64fe6d5954043 +size 109226 diff --git a/source/designs/files/rkt/027543.rkt b/source/designs/files/rkt/027543.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9881b43875e35decec26bf68aff1975d1ac76121 --- /dev/null +++ b/source/designs/files/rkt/027543.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622e5a0a25a2a055a52ff3882f10c1c010874046c0d33c31c70ecf73d69c3bff +size 59428 diff --git a/source/designs/files/rkt/027544.rkt b/source/designs/files/rkt/027544.rkt new file mode 100644 index 0000000000000000000000000000000000000000..86ba886b34a54d2cfef88660f45c4f35cc6ff605 --- /dev/null +++ b/source/designs/files/rkt/027544.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b205452f747615badd3c16e2d5528abdb3605417bdb75fabd1ea3cfa409252 +size 39083 diff --git a/source/designs/files/rkt/027545.rkt b/source/designs/files/rkt/027545.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fae61d4da0743d718e73cde4668fe3769213a113 --- /dev/null +++ b/source/designs/files/rkt/027545.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3faacf5c0c2fad4188491fbeb4ecd72ca411f367c12ca3f53c194d99afce4a +size 75443 diff --git a/source/designs/files/rkt/027546.rkt b/source/designs/files/rkt/027546.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e55b011eb27e5b4695ed879287bbda6c3ad8dbb5 --- /dev/null +++ b/source/designs/files/rkt/027546.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e761e2d00f1f475b2712b91b1d31678d9b5b082faf681d99a3b462fbdf6f0f1c +size 130266 diff --git a/source/designs/files/rkt/027547.rkt b/source/designs/files/rkt/027547.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cbc4e4fd66fcfed8d59d6525180ea476d9fdf0e9 --- /dev/null +++ b/source/designs/files/rkt/027547.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa329d0a9a3a9155311f888610dfdfef3135a40862231c7e59f36eb0f64721e8 +size 20951 diff --git a/source/designs/files/rkt/027548.rkt b/source/designs/files/rkt/027548.rkt new file mode 100644 index 0000000000000000000000000000000000000000..15cebcb83d028b7aee292f6cfcd0d95b11ab27c3 --- /dev/null +++ b/source/designs/files/rkt/027548.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3366d7c1a659f8e2f8cee152cb0f8659be09594df6aa1c398f53bc252b8014 +size 43635 diff --git a/source/designs/files/rkt/027549.rkt b/source/designs/files/rkt/027549.rkt new file mode 100644 index 0000000000000000000000000000000000000000..64e7da7188c94e897c4c4e6131b374d1982d1b3b --- /dev/null +++ b/source/designs/files/rkt/027549.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8cdaa5f81def758289b31663187ae20a1320579fadabac219512163e0172e70 +size 25719 diff --git a/source/designs/files/rkt/027550.rkt b/source/designs/files/rkt/027550.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4afa985d17114524046de6d85c5f658ab1471d8e --- /dev/null +++ b/source/designs/files/rkt/027550.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4bd14a0cbffd8e389d360faa8384fb912822651bee79a34f4b6af582a03791d +size 239267 diff --git a/source/designs/files/rkt/027551.rkt b/source/designs/files/rkt/027551.rkt new file mode 100644 index 0000000000000000000000000000000000000000..aa4b56dd4a048b4ba9418e61890a5a0ea37266da --- /dev/null +++ b/source/designs/files/rkt/027551.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae75c54b8deabe33ee42c1a6fa7711271be4c69d971dbfeec2ad4aac35ba59f +size 37357 diff --git a/source/designs/files/rkt/027552.rkt b/source/designs/files/rkt/027552.rkt new file mode 100644 index 0000000000000000000000000000000000000000..da2e11363965ac0d93d6c6e09576f94401022bb0 --- /dev/null +++ b/source/designs/files/rkt/027552.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d062bb96391e40b1421eb875e85d7c97a08955bc988bd1291398b09b2fa87af5 +size 52661 diff --git a/source/designs/files/rkt/027553.rkt b/source/designs/files/rkt/027553.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6357800a78dd308a174650f5dd427a862fefb6e5 --- /dev/null +++ b/source/designs/files/rkt/027553.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd135dbaefa7cbfefb081be639f2eb482dbcdb07d9ca4d841a9529ff70fd64a2 +size 77160 diff --git a/source/designs/files/rkt/027556.rkt b/source/designs/files/rkt/027556.rkt new file mode 100644 index 0000000000000000000000000000000000000000..05e80159e312c275aa4a75816e3498324639212e --- /dev/null +++ b/source/designs/files/rkt/027556.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86a78f4ab4b8716d711c4760abb4e722fac0ea058e0c7b676e2bf267e8dc6e5 +size 23959 diff --git a/source/designs/files/rkt/027557.rkt b/source/designs/files/rkt/027557.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0f0690e9110a2e29b35c8119958a445c817bb95d --- /dev/null +++ b/source/designs/files/rkt/027557.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31eaa4085251279166e8463c1f0d03320b8b8fe9ba0777f0c2bc4aed4df87b0c +size 60988 diff --git a/source/designs/files/rkt/027558.rkt b/source/designs/files/rkt/027558.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f509bbfb75d032783c4d4e5147b2a5a66d59424d --- /dev/null +++ b/source/designs/files/rkt/027558.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7e8500faf72fe0691c5284f7935c6aa3b3619a4dcb7ae804b521fe80caca9d5 +size 24049 diff --git a/source/designs/files/rkt/027559.rkt b/source/designs/files/rkt/027559.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d28911d3610954180e715cbe01ef41181f94cb60 --- /dev/null +++ b/source/designs/files/rkt/027559.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f49204f8054ec8cec321314152e3911432fa3a54fddd60b2ae87d2321e338c0 +size 60601 diff --git a/source/designs/files/rkt/027560.rkt b/source/designs/files/rkt/027560.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4bb9f53a33928d914dd3ed9aeb9dde33dc4d6d0a --- /dev/null +++ b/source/designs/files/rkt/027560.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d6e1b09b702c09ce6590ed8a2677012a96a6db51e7a45d3de5637e2434f9a5 +size 28769 diff --git a/source/designs/files/rkt/027561.rkt b/source/designs/files/rkt/027561.rkt new file mode 100644 index 0000000000000000000000000000000000000000..12b432c2c09eea56726b06c83116a39ca56cb0ea --- /dev/null +++ b/source/designs/files/rkt/027561.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20c2aa113f8a16bee8b02a93515562b30f4912e3b79e2793584231f0bd9e910c +size 32736 diff --git a/source/designs/files/rkt/027562.rkt b/source/designs/files/rkt/027562.rkt new file mode 100644 index 0000000000000000000000000000000000000000..455b35533cdca3cc027b6d85f863b6580faaa0e1 --- /dev/null +++ b/source/designs/files/rkt/027562.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cc561c6f52a53ef577580f6082c0eb1137589dce6f2cb14b4bb08d519931e7 +size 134504 diff --git a/source/designs/files/rkt/027563.rkt b/source/designs/files/rkt/027563.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4a14aed26b3385dd61ac450012e6c85a91aeb62c --- /dev/null +++ b/source/designs/files/rkt/027563.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c277e3b39dcdc95f34f37bbcdfdb4abe158d1cb4a81cc3625a1d900ba7c3345c +size 122982 diff --git a/source/designs/files/rkt/027564.rkt b/source/designs/files/rkt/027564.rkt new file mode 100644 index 0000000000000000000000000000000000000000..10e47848b4513263c3034ca92a840f48b714caff --- /dev/null +++ b/source/designs/files/rkt/027564.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1ffc5c0a9d85d349bf3e6c05717b8cc060451e95f1a11730d64214e50aed9c +size 53692 diff --git a/source/designs/files/rkt/027565.rkt b/source/designs/files/rkt/027565.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3a664da976fc03be29493de15bca2b2d8ef3451b --- /dev/null +++ b/source/designs/files/rkt/027565.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e052ead3e1786ae9f33b6e8b939d4a45fa228c24ec7cc0a536e3b20b7bef74 +size 57245 diff --git a/source/designs/files/rkt/027566.rkt b/source/designs/files/rkt/027566.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3460732811ae151f6e1215f9d34a41db33cb3b77 --- /dev/null +++ b/source/designs/files/rkt/027566.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22a174cbfaf7da2adbe1b5917b1ed987b362a5be2f667510d6d267e0d33d087 +size 53893 diff --git a/source/designs/files/rkt/027567.rkt b/source/designs/files/rkt/027567.rkt new file mode 100644 index 0000000000000000000000000000000000000000..94353ff9b34e20d9b6a00c972aae26d21b81caaa --- /dev/null +++ b/source/designs/files/rkt/027567.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a02732f47b7339c570a100e5ff31e4c8eff31446b71cc4227f81001d6716dc8 +size 82269 diff --git a/source/designs/files/rkt/027568.rkt b/source/designs/files/rkt/027568.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1ecebd7f5e44782b7015640affe36686c86ec1ba --- /dev/null +++ b/source/designs/files/rkt/027568.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87c326ac853c7559074e99a6bc3b88fb1771acdf686550f1f6bd55ca3cd6dde +size 57970 diff --git a/source/designs/files/rkt/027569.rkt b/source/designs/files/rkt/027569.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1b0e30da80a1d16f3d662d74de3668e8f4cb5b3f --- /dev/null +++ b/source/designs/files/rkt/027569.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0546153411b686e19160491e4f8e0c6186115781975da5fe2027bbfda0562a89 +size 43833 diff --git a/source/designs/files/rkt/027570.rkt b/source/designs/files/rkt/027570.rkt new file mode 100644 index 0000000000000000000000000000000000000000..917b4cd13e6ca115252720ada25526e4b71cd18d --- /dev/null +++ b/source/designs/files/rkt/027570.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a253bc3298b9a38f961665beb305475409e7c75650081db82aceeb39b9e8d280 +size 73723 diff --git a/source/designs/files/rkt/027571.rkt b/source/designs/files/rkt/027571.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f797881b3a82be801a8fe5c0cfde1b7a2c6f8b41 --- /dev/null +++ b/source/designs/files/rkt/027571.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a68bf83cef1ed805a3d25ef6bc7090a50fd0e1783dbebc53373de78ded03057a +size 38538 diff --git a/source/designs/files/rkt/027572.rkt b/source/designs/files/rkt/027572.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fe426234d9cc0470e79f60b2649a11873914f5a6 --- /dev/null +++ b/source/designs/files/rkt/027572.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:792a9356f51e63ff0fd858904f39cfc7ed3c99f65a802de9730dd837bd33127e +size 50694 diff --git a/source/designs/files/rkt/027573.rkt b/source/designs/files/rkt/027573.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bae50960311be7ac2d6fa7aaf8bc20b819227477 --- /dev/null +++ b/source/designs/files/rkt/027573.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52096baae716149a6529b27eeb4034c881a0be73b2b049418be474dfdbcf0087 +size 41732 diff --git a/source/designs/files/rkt/027574.rkt b/source/designs/files/rkt/027574.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b9562522a897dc1b4a3ff3009feea85f63fe089f --- /dev/null +++ b/source/designs/files/rkt/027574.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14a868ee91a4e8213e1556de81277387ac59edf43969bed8ba32c783dc8fb7b +size 25253 diff --git a/source/designs/files/rkt/027575.rkt b/source/designs/files/rkt/027575.rkt new file mode 100644 index 0000000000000000000000000000000000000000..41d53074f52326a63b62dceb0bfc5cdb943e60d3 --- /dev/null +++ b/source/designs/files/rkt/027575.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5197b5f40e02dd84178818eba1109e93b1b90a7116a390ba4fac4dd7772b814 +size 65468 diff --git a/source/designs/files/rkt/027576.rkt b/source/designs/files/rkt/027576.rkt new file mode 100644 index 0000000000000000000000000000000000000000..379d0f8ebc200accebc44396775d5b8327cf9e84 --- /dev/null +++ b/source/designs/files/rkt/027576.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f7e7c6355180b06bb9c4121bf7014ae593a692e7a0eac52473b7560f5a14d04 +size 67146 diff --git a/source/designs/files/rkt/027577.rkt b/source/designs/files/rkt/027577.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f6bf322094c6c1adf0013f8afaa618d6b4cab68c --- /dev/null +++ b/source/designs/files/rkt/027577.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8dd1d2f6a9b9426244a9994887247e82523cddd0a55920de9953aa928230bf +size 78881 diff --git a/source/designs/files/rkt/027578.rkt b/source/designs/files/rkt/027578.rkt new file mode 100644 index 0000000000000000000000000000000000000000..944016812643dd921fcbf255d94f811ecb845e69 --- /dev/null +++ b/source/designs/files/rkt/027578.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ac91ff9c823832832cb2ecf0cd7c0d626b29fb806f099d1163bdef5736952d +size 44109 diff --git a/source/designs/files/rkt/027579.rkt b/source/designs/files/rkt/027579.rkt new file mode 100644 index 0000000000000000000000000000000000000000..273fb14f98979f761c4903f701874175ad155f8c --- /dev/null +++ b/source/designs/files/rkt/027579.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e2bcbfa072268317c76a45c37cfb59c1a8bb23be8abfd7aab8af5c0f5df7d7 +size 58752 diff --git a/source/designs/files/rkt/027580.rkt b/source/designs/files/rkt/027580.rkt new file mode 100644 index 0000000000000000000000000000000000000000..019b3794a304bb1f5c7ccde18653c479d3aafecb --- /dev/null +++ b/source/designs/files/rkt/027580.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3c9642746704d9a1abaeef20f6bc42918682e95fef66c7d3d227706cf1b914 +size 88226 diff --git a/source/designs/files/rkt/027581.rkt b/source/designs/files/rkt/027581.rkt new file mode 100644 index 0000000000000000000000000000000000000000..097a7d97f295f969c4ed4fed05f9861b0d490920 --- /dev/null +++ b/source/designs/files/rkt/027581.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9356f0fc9bacd58543b72d42843ccb48472cfbeb367b340a9e1a3d072e489e +size 70894 diff --git a/source/designs/files/rkt/027582.rkt b/source/designs/files/rkt/027582.rkt new file mode 100644 index 0000000000000000000000000000000000000000..27675006aa38fe72760de3eedd7f2020a8501a23 --- /dev/null +++ b/source/designs/files/rkt/027582.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f34416dc03b0d9139f7e4e6ea97c01a0b24e5cd4a2d5cbaba9c81cc19d732e +size 56838 diff --git a/source/designs/files/rkt/027583.rkt b/source/designs/files/rkt/027583.rkt new file mode 100644 index 0000000000000000000000000000000000000000..97e474abc7660611d6049bb7894a40b0ba06864e --- /dev/null +++ b/source/designs/files/rkt/027583.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdfb13ee6218d02296de72e9a73dd027919dff1b8b9a022a6724b9faf250455 +size 48382 diff --git a/source/designs/files/rkt/027584.rkt b/source/designs/files/rkt/027584.rkt new file mode 100644 index 0000000000000000000000000000000000000000..190f252ab062158536d412fd1021518a4b2aace8 --- /dev/null +++ b/source/designs/files/rkt/027584.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ee64fea424da27ced0fd7db728b35e557218e3825cc1b7b801400c1f7d93a3 +size 21994 diff --git a/source/designs/files/rkt/027585.rkt b/source/designs/files/rkt/027585.rkt new file mode 100644 index 0000000000000000000000000000000000000000..28a622dfa11a0135e3f3dd37a3cbea00d81adc18 --- /dev/null +++ b/source/designs/files/rkt/027585.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59f31e935114d9bda479176c7f55cb2f4300eed644d00de0ee0c5aad3108893a +size 13566 diff --git a/source/designs/files/rkt/027586.rkt b/source/designs/files/rkt/027586.rkt new file mode 100644 index 0000000000000000000000000000000000000000..83c74cb7edaabb3e33e9f3686a388f5b29f21b53 --- /dev/null +++ b/source/designs/files/rkt/027586.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54b67aded4049a5df58b7020245f7e6d7404669ad9f3d7e2f9005c979a22d4d0 +size 21552 diff --git a/source/designs/files/rkt/027587.rkt b/source/designs/files/rkt/027587.rkt new file mode 100644 index 0000000000000000000000000000000000000000..14df74c3ef452a16d5394309a2d4619edb4fa36d --- /dev/null +++ b/source/designs/files/rkt/027587.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c366c52e5d7c424da1571d5f08816b17058816756891580fcb906b4acac894a +size 21661 diff --git a/source/designs/files/rkt/027588.rkt b/source/designs/files/rkt/027588.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0df2f69ab693534259daf88de2ef045f7f4ba33e --- /dev/null +++ b/source/designs/files/rkt/027588.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f090bcae293630031ae4cefbdaab802c218269dbc9881a8f35b8000e8757a0f9 +size 42082 diff --git a/source/designs/files/rkt/027589.rkt b/source/designs/files/rkt/027589.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eea4084bebebff19fa79f3d7bf3f51096d6f72df --- /dev/null +++ b/source/designs/files/rkt/027589.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7880c971e24f572033833226a1d32d38d17134ee78e04a3f3183bbb38fcc7c67 +size 44546 diff --git a/source/designs/files/rkt/027590.rkt b/source/designs/files/rkt/027590.rkt new file mode 100644 index 0000000000000000000000000000000000000000..379ee843b6f71cd2fffdeba709f4eb503531883b --- /dev/null +++ b/source/designs/files/rkt/027590.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1684335adde40dcff1fcc7963ece11b3bfbffb0875477749f993a3b74a268987 +size 53903 diff --git a/source/designs/files/rkt/027591.rkt b/source/designs/files/rkt/027591.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7cd436e0284257fb70694a9913834d9b5d92c9f5 --- /dev/null +++ b/source/designs/files/rkt/027591.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44710117be66f9ba2c58056aad479fc71049072a2040533866e238f5aa89b890 +size 45700 diff --git a/source/designs/files/rkt/027593.rkt b/source/designs/files/rkt/027593.rkt new file mode 100644 index 0000000000000000000000000000000000000000..510e7da4495c49bc32184ef452938d7bc098aaf7 --- /dev/null +++ b/source/designs/files/rkt/027593.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ebb4f0c2a7f0c88336d4aa8e9d1968ecc87591f4317e57efaaba134a1ce7bab +size 39261 diff --git a/source/designs/files/rkt/027594.rkt b/source/designs/files/rkt/027594.rkt new file mode 100644 index 0000000000000000000000000000000000000000..725dd919ad7456d9bd8a71e76e446751141ffde8 --- /dev/null +++ b/source/designs/files/rkt/027594.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a130618c9521c4523eb4888048ea1ea52113a26feea0611f08da2154124b0d0 +size 58124 diff --git a/source/designs/files/rkt/027595.rkt b/source/designs/files/rkt/027595.rkt new file mode 100644 index 0000000000000000000000000000000000000000..796157b2805d97897601488106f5e66dcc7dc9be --- /dev/null +++ b/source/designs/files/rkt/027595.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e846601649d418ef068f7c628ce6dfb002035818cbf28c2feb1586c73e480f +size 24354 diff --git a/source/designs/files/rkt/027596.rkt b/source/designs/files/rkt/027596.rkt new file mode 100644 index 0000000000000000000000000000000000000000..387d51a23e086b6db64f7f922e465ecfc58aa834 --- /dev/null +++ b/source/designs/files/rkt/027596.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf3c87c2b43c6608afefd5e1a6a481e8eda3c17d2694284c85f4bb158b816e4a +size 77620 diff --git a/source/designs/files/rkt/027597.rkt b/source/designs/files/rkt/027597.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b2972dd3ff35893106dce1d9eccf6bb9888540a4 --- /dev/null +++ b/source/designs/files/rkt/027597.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521042c732605ac48ff7f123ab25facb2ee31fcc59af3bd2792d64f419f03b8a +size 26043 diff --git a/source/designs/files/rkt/027598.rkt b/source/designs/files/rkt/027598.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6fab5c0206de68f8ad8d19825e8092e706ac7a92 --- /dev/null +++ b/source/designs/files/rkt/027598.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a97a7bdcc6b6193b1a9d920a414f63c0b1b155b5344e79102f9ecfd26d7d93 +size 137008 diff --git a/source/designs/files/rkt/027599.rkt b/source/designs/files/rkt/027599.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bc9fe7746131a21b88dfff1d8004e156c47a26c0 --- /dev/null +++ b/source/designs/files/rkt/027599.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0d0e466a97e342d0795bc1ced64005a368c009a5813363a7a02b037c27be42 +size 90852 diff --git a/source/designs/files/rkt/027600.rkt b/source/designs/files/rkt/027600.rkt new file mode 100644 index 0000000000000000000000000000000000000000..38c0891fb73e54a7c1e02f23c9b9765767c02e9e --- /dev/null +++ b/source/designs/files/rkt/027600.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20d2f39c49f9864a64d447c0b15c497e69c3f1089a1ca85667ed8348f820b07b +size 50749 diff --git a/source/designs/files/rkt/027601.rkt b/source/designs/files/rkt/027601.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8ef11d9a83583a3f5bcedfd012b5ecbf5b1c72ee --- /dev/null +++ b/source/designs/files/rkt/027601.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a677693b457c445b7338cece29c2056f431e45c7e5c485283a3218346879ea9 +size 49818 diff --git a/source/designs/files/rkt/027603.rkt b/source/designs/files/rkt/027603.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ba8837d985d2a74188b99e4652e822fddbac4843 --- /dev/null +++ b/source/designs/files/rkt/027603.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c98526e05085b2cefed2f9f8ddeeb0c81d075419d6c2b9fbcd56ab973cf14a2 +size 46881 diff --git a/source/designs/files/rkt/027604.rkt b/source/designs/files/rkt/027604.rkt new file mode 100644 index 0000000000000000000000000000000000000000..babf877a618084c3aa8108f5d43e1e23008e1589 --- /dev/null +++ b/source/designs/files/rkt/027604.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b424d9e028378460108bb780d1295067ade7d0ec03300183f9d27d8218d2527 +size 100381 diff --git a/source/designs/files/rkt/027605.rkt b/source/designs/files/rkt/027605.rkt new file mode 100644 index 0000000000000000000000000000000000000000..220e9293a0b9c0ecad675d70515af1826b7b7d80 --- /dev/null +++ b/source/designs/files/rkt/027605.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985ff002e987051acd77b69cde445ee8eeafe1cc5ebaf8476a5c42738d8c3438 +size 58512 diff --git a/source/designs/files/rkt/027606.rkt b/source/designs/files/rkt/027606.rkt new file mode 100644 index 0000000000000000000000000000000000000000..50dc90b2208ad23818bd52945f2e5a93ac1b9d20 --- /dev/null +++ b/source/designs/files/rkt/027606.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2b47f753b37976aab027b407f4bac22b622eadc4ec6f8a8220ceac9958e0cc6 +size 48265 diff --git a/source/designs/files/rkt/027607.rkt b/source/designs/files/rkt/027607.rkt new file mode 100644 index 0000000000000000000000000000000000000000..054d7933fde2441726b43eacfe16ca7425b95061 --- /dev/null +++ b/source/designs/files/rkt/027607.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bcd5b3024e157134506f2bb3460cc55028ffb4c3942f4870a4301d3e576970a +size 81404 diff --git a/source/designs/files/rkt/027608.rkt b/source/designs/files/rkt/027608.rkt new file mode 100644 index 0000000000000000000000000000000000000000..931262fb9406f9503d44ac56e815300d4ad0511c --- /dev/null +++ b/source/designs/files/rkt/027608.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65fd281dfe654038f5a53983bb9f0d81c4a1f054aa8b47992c53310c65b1a90 +size 34470 diff --git a/source/designs/files/rkt/027609.rkt b/source/designs/files/rkt/027609.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fb88a088b2b173de918e53af7bd4c5c6bddbfc43 --- /dev/null +++ b/source/designs/files/rkt/027609.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54a845c74ce71e87a9fbac23accee84c1f203184f0dcbdb379ddb41026188ae9 +size 73115 diff --git a/source/designs/files/rkt/027610.rkt b/source/designs/files/rkt/027610.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5566d872d35e80b0bc96b5758bf62ef6b0a6530d --- /dev/null +++ b/source/designs/files/rkt/027610.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc997318be41da85d02b6bbd3844d36560332d1f58efc0f11a5d641d5a4018d0 +size 102059 diff --git a/source/designs/files/rkt/027611.rkt b/source/designs/files/rkt/027611.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bce3d67140f9402a70ffc36c32167c17031ba627 --- /dev/null +++ b/source/designs/files/rkt/027611.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c865b1f27fdd8fe33bf4feaefa71f83f4eaf5cf3e43e851dc4ca6cdb007e38f +size 44313 diff --git a/source/designs/files/rkt/027612.rkt b/source/designs/files/rkt/027612.rkt new file mode 100644 index 0000000000000000000000000000000000000000..953e760cd48c5303102c40aa199ba8a6123afb92 --- /dev/null +++ b/source/designs/files/rkt/027612.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23fb758ae7f271ec1d93481a369b70dd9b873e6e4441c3246a22e998974f26cd +size 69805 diff --git a/source/designs/files/rkt/027613.rkt b/source/designs/files/rkt/027613.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c17cd02f403039c63bec1e7cc3c68bf6b7572812 --- /dev/null +++ b/source/designs/files/rkt/027613.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d554101068a26641b38980f96cc79414577082ec2ce9c7b83bc88a9cc44ca95 +size 55914 diff --git a/source/designs/files/rkt/027614.rkt b/source/designs/files/rkt/027614.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f58716ff14b3b9bf99c826bb0d129b6a15964067 --- /dev/null +++ b/source/designs/files/rkt/027614.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0591f0a5e10849994a7af295c42d4c60cc00f7a99331bf81602f9791200958f1 +size 40538 diff --git a/source/designs/files/rkt/027615.rkt b/source/designs/files/rkt/027615.rkt new file mode 100644 index 0000000000000000000000000000000000000000..acbf241e49dfd8469537728c038e67d60096095e --- /dev/null +++ b/source/designs/files/rkt/027615.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a65ff86f945fa7d08a5fbbcb7ce24d90e9eafb222406e26a3e7255641eeb74f9 +size 82289 diff --git a/source/designs/files/rkt/027617.rkt b/source/designs/files/rkt/027617.rkt new file mode 100644 index 0000000000000000000000000000000000000000..04c5a80221e8ad6d70410afd243863cb41a35102 --- /dev/null +++ b/source/designs/files/rkt/027617.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc43a756e5f6b41c44b37a587482e484e692b8e9ca31fcf40a4a8934dd7890b +size 19651 diff --git a/source/designs/files/rkt/027618.rkt b/source/designs/files/rkt/027618.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1a1b7e76742eddf0df2ee469bf4cc7ef6e68dca2 --- /dev/null +++ b/source/designs/files/rkt/027618.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:091a5db09ee91955039e867e04cc34e3f7a8363ed839f2dc8849be7de36b61f7 +size 53394 diff --git a/source/designs/files/rkt/027619.rkt b/source/designs/files/rkt/027619.rkt new file mode 100644 index 0000000000000000000000000000000000000000..aa26832458c7f54a0ccb8e388b156a4d2078f3ab --- /dev/null +++ b/source/designs/files/rkt/027619.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f062d9817264106118a32ab881734a12a17222c7e45adf9694244dd30bd7b52d +size 65237 diff --git a/source/designs/files/rkt/027620.rkt b/source/designs/files/rkt/027620.rkt new file mode 100644 index 0000000000000000000000000000000000000000..50f95cd1debba13b37f2951e18255568af2a673c --- /dev/null +++ b/source/designs/files/rkt/027620.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3c68f5c43bf5567798e7e92eeec78009475b61033673e29ed6fe8e730a5f80 +size 35809 diff --git a/source/designs/files/rkt/027621.rkt b/source/designs/files/rkt/027621.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e11636cf2a64cbde2dfc59965b4a1bd623ddbb05 --- /dev/null +++ b/source/designs/files/rkt/027621.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e731e0b50993aa6c9f7141fcf86eb372bd520741e668e174fc978906075146 +size 38282 diff --git a/source/designs/files/rkt/027622.rkt b/source/designs/files/rkt/027622.rkt new file mode 100644 index 0000000000000000000000000000000000000000..471e4e06d6a932c7dff2ba02e168fc4b3424048a --- /dev/null +++ b/source/designs/files/rkt/027622.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:742a22a0a730de7b8f52171ab4c7ecea7371488d19b822862fd3805287359ad2 +size 43588 diff --git a/source/designs/files/rkt/027623.rkt b/source/designs/files/rkt/027623.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7cf64b1d734589a9d3852657b875bfd192874c08 --- /dev/null +++ b/source/designs/files/rkt/027623.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7265979845b1668e3416a40b3738911bca53fa80e5be32230f52835068920a +size 88743 diff --git a/source/designs/files/rkt/027624.rkt b/source/designs/files/rkt/027624.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f0c1b12d5f0a4800d519d9587fa1545397ae1001 --- /dev/null +++ b/source/designs/files/rkt/027624.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ccc518627da35c767a881f0bef38c10c7aae0252719f82a9fc9ac81bcae7272 +size 22646 diff --git a/source/designs/files/rkt/027625.rkt b/source/designs/files/rkt/027625.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f140fe024ca5b5d02fe3f64fbe64f6c7aea5b3c8 --- /dev/null +++ b/source/designs/files/rkt/027625.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bad24508bc3f01cfee0daa20df3636493628239409334a9f485afd9c638debd8 +size 26914 diff --git a/source/designs/files/rkt/027626.rkt b/source/designs/files/rkt/027626.rkt new file mode 100644 index 0000000000000000000000000000000000000000..70a858366dff1e0b5a7e2a344d57bc57af5433da --- /dev/null +++ b/source/designs/files/rkt/027626.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1326cee0c008c64fdb58160183e6e6e1289ef1185a1851e92152dc1f447fc439 +size 51350 diff --git a/source/designs/files/rkt/027627.rkt b/source/designs/files/rkt/027627.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5d424ead5c7e610f1a61f4364b844ab6a2988f6b --- /dev/null +++ b/source/designs/files/rkt/027627.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95487ef2771d532d47ba466d2867eb53a5ebbb748a1eb20f3c43ed7235ff4f2c +size 42461 diff --git a/source/designs/files/rkt/027628.rkt b/source/designs/files/rkt/027628.rkt new file mode 100644 index 0000000000000000000000000000000000000000..34f14cc8fb419bb43df65c902a7bb2321b1317dc --- /dev/null +++ b/source/designs/files/rkt/027628.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddeb0d9a08199d9d48208d1e213564ea3f9277c30a6aa9f42aeda7f1fcb75af4 +size 32715 diff --git a/source/designs/files/rkt/027629.rkt b/source/designs/files/rkt/027629.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d9216fe72a3ddaab69e7f8ed7f14ca7000a67119 --- /dev/null +++ b/source/designs/files/rkt/027629.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211059aada63d33916eef7d8b37061fafadb0a7079cd891487b771a8bfc8b895 +size 148662 diff --git a/source/designs/files/rkt/027630.rkt b/source/designs/files/rkt/027630.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eba18f92baefe692c965db65aff67f915d13e803 --- /dev/null +++ b/source/designs/files/rkt/027630.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec9200ba3aa31dcbc9deae6039085d673f33cb3c346b0d92cfdee255e181f34 +size 45681 diff --git a/source/designs/files/rkt/027631.rkt b/source/designs/files/rkt/027631.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8b750b3e540576c7871be6ed7737e6dd9d703c71 --- /dev/null +++ b/source/designs/files/rkt/027631.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986c39761d8ffd564930f0ced22523faf4ddc97980fcf070a06ee6862870eb33 +size 100508 diff --git a/source/designs/files/rkt/027632.rkt b/source/designs/files/rkt/027632.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a5c72fd60d5190640a2c46d3282ac962d1d3e1f8 --- /dev/null +++ b/source/designs/files/rkt/027632.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2502c3f38ddcce5fb452136a49c66340bad295669dd39f9eb11f4a574d3a4f3e +size 48886 diff --git a/source/designs/files/rkt/027633.rkt b/source/designs/files/rkt/027633.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bbf8e36ae4a05e3683b3e28823a1e59e2403ad79 --- /dev/null +++ b/source/designs/files/rkt/027633.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f746ccdf2db0da47d94fd96a970f55bf1b9b857076e769978c809fc66f33c718 +size 47659 diff --git a/source/designs/files/rkt/027634.rkt b/source/designs/files/rkt/027634.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1c8289188b861591955ad63c90ffec47e441b434 --- /dev/null +++ b/source/designs/files/rkt/027634.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfb3f48de271996f35601b1c3ad63aecfef8417fa077cfb58d5311fea278b62 +size 124235 diff --git a/source/designs/files/rkt/027635.rkt b/source/designs/files/rkt/027635.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7a9f654ad66338bad14620d15d586021530396b8 --- /dev/null +++ b/source/designs/files/rkt/027635.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f97bf4605e46157530288a6e16bbd33ef0bc47597f1cf6e38e7b769e9d387a +size 49820 diff --git a/source/designs/files/rkt/027636.rkt b/source/designs/files/rkt/027636.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f77aee1e365e44d5888522a55f65ebda4ac34da7 --- /dev/null +++ b/source/designs/files/rkt/027636.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a067e9052556cec19c56a2ed7323413b5a766bbc52bba5c4942d7c026aeb1bf6 +size 51706 diff --git a/source/designs/files/rkt/027637.rkt b/source/designs/files/rkt/027637.rkt new file mode 100644 index 0000000000000000000000000000000000000000..23f69cbe205ea55224573f3eb10fecd88ae3a81c --- /dev/null +++ b/source/designs/files/rkt/027637.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb72f0c6907362ffc3088b20d6ac5b1239967b336ed48841b9379f878115036d +size 84161 diff --git a/source/designs/files/rkt/027638.rkt b/source/designs/files/rkt/027638.rkt new file mode 100644 index 0000000000000000000000000000000000000000..58b9342d1fc6fd8824b95d46879b4f5c97cb2b2a --- /dev/null +++ b/source/designs/files/rkt/027638.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5fd7b00c9ddcba0addb4f0063624ff5f948f7dec84d748ffd809bf5e911d7c3 +size 77599 diff --git a/source/designs/files/rkt/027639.rkt b/source/designs/files/rkt/027639.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ff7bb1e458d35fcf0ea4b3afe9e78b1269f3a21a --- /dev/null +++ b/source/designs/files/rkt/027639.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26544817ed3c52aa0adf0c95767efe5d11561e218b61e003792381e704d6af7d +size 214149 diff --git a/source/designs/files/rkt/027641.rkt b/source/designs/files/rkt/027641.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4fa5d59da9a952be47d004919024bf2bd679a047 --- /dev/null +++ b/source/designs/files/rkt/027641.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:857f8bec080e8097c3fe06ac6d3f2163013a19cc63dcd698441e38455b95c23f +size 126141 diff --git a/source/designs/files/rkt/027642.rkt b/source/designs/files/rkt/027642.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8e37e0f36bad8a9a42ef6e39981652b635860d2c --- /dev/null +++ b/source/designs/files/rkt/027642.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0697edd6f7be0ab766f3db99bf5bfd1595445010059599b42578e8eba36973a7 +size 50477 diff --git a/source/designs/files/rkt/027643.rkt b/source/designs/files/rkt/027643.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4ac45a0bef785ead52abcef5312f863141f00588 --- /dev/null +++ b/source/designs/files/rkt/027643.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b346e10a6e1ecb29c8806d3b3c611aa3282ccb43a5f30e36795503a995da538b +size 56986 diff --git a/source/designs/files/rkt/027644.rkt b/source/designs/files/rkt/027644.rkt new file mode 100644 index 0000000000000000000000000000000000000000..78f83b42a9bd77ce8f01825338d6bfe722ff028c --- /dev/null +++ b/source/designs/files/rkt/027644.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b58f33a57f330fda74ff0debe7c60cf1fa3feafc850b646073fbadd826c6f2 +size 80259 diff --git a/source/designs/files/rkt/027645.rkt b/source/designs/files/rkt/027645.rkt new file mode 100644 index 0000000000000000000000000000000000000000..585aaaf1a0daeec7f030c991f74969d49ac97937 --- /dev/null +++ b/source/designs/files/rkt/027645.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3a0c7ab4e900907cbb7b95196f7d60166b7c8d5340b035add8a4429e73475f +size 86159 diff --git a/source/designs/files/rkt/027646.rkt b/source/designs/files/rkt/027646.rkt new file mode 100644 index 0000000000000000000000000000000000000000..aa8739da4f879506ffbd4116c9fafcf4ff52a326 --- /dev/null +++ b/source/designs/files/rkt/027646.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba95c892ac1cef93687c98077bee51d65a06104a16b094d42a1542a1f908931 +size 93998 diff --git a/source/designs/files/rkt/027647.rkt b/source/designs/files/rkt/027647.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d47c90de4ddb438838933f606501dfb890f05650 --- /dev/null +++ b/source/designs/files/rkt/027647.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3cb7a9cf2ad8cc7712a3b622f5a47930207c33669e45c2ab0365137fdde6cd +size 30994 diff --git a/source/designs/files/rkt/027648.rkt b/source/designs/files/rkt/027648.rkt new file mode 100644 index 0000000000000000000000000000000000000000..184ee76bd158ed2f6adf3c09caca9fb7d1c22fc9 --- /dev/null +++ b/source/designs/files/rkt/027648.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8120e3ac41840db39a0b3ffb3760637a1468e338ff5eda4ef656c0f029dcac1 +size 35944 diff --git a/source/designs/files/rkt/027649.rkt b/source/designs/files/rkt/027649.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c0be75af151bb9f19c86d50339bed4bf46c26257 --- /dev/null +++ b/source/designs/files/rkt/027649.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c31f15ed2c30455cd2933f16ff94007511c429f22993fb557bda6d1e00625d90 +size 44160 diff --git a/source/designs/files/rkt/027650.rkt b/source/designs/files/rkt/027650.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ced8f7e9e6f1b774bfdf4a252fe8dfd4e633ddd6 --- /dev/null +++ b/source/designs/files/rkt/027650.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c31a8efa979fac6c2484245991c13ec9f7e85da649af525101721f80e4c20fa +size 34689 diff --git a/source/designs/files/rkt/027651.rkt b/source/designs/files/rkt/027651.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a3885e5f68bf636bd57eb2e681afa3896d14dae0 --- /dev/null +++ b/source/designs/files/rkt/027651.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a37eb5089f77162eb55f7c203d5a74ed554eb988d944ad5c5b32583bbd5ebe +size 59149 diff --git a/source/designs/files/rkt/027652.rkt b/source/designs/files/rkt/027652.rkt new file mode 100644 index 0000000000000000000000000000000000000000..032e83a1acced345cf5eb44afe5d4c7a66d7ee3d --- /dev/null +++ b/source/designs/files/rkt/027652.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64572ea38c7d7011c86aa5332bc5db12ca77826e133f98bddf5b33ca97da312 +size 41551 diff --git a/source/designs/files/rkt/027653.rkt b/source/designs/files/rkt/027653.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a9408b90ab5999f9887c6d19b393e46ddcf477ab --- /dev/null +++ b/source/designs/files/rkt/027653.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cedb5748322446c760051c3bce977400b2d6ad4c8da32c887ee25de638ef91e0 +size 67163 diff --git a/source/designs/files/rkt/027655.rkt b/source/designs/files/rkt/027655.rkt new file mode 100644 index 0000000000000000000000000000000000000000..16d6b0916fe54be138ad9f9f1126350b41cf48b9 --- /dev/null +++ b/source/designs/files/rkt/027655.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0a2524dfb9fd1ca34a5a0f3250602a707d13f9baeb8c08c604268047632071 +size 60769 diff --git a/source/designs/files/rkt/027656.rkt b/source/designs/files/rkt/027656.rkt new file mode 100644 index 0000000000000000000000000000000000000000..679d57c507f0c5b7f7b81d51856a434f19a7d972 --- /dev/null +++ b/source/designs/files/rkt/027656.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daaf0cda1f34fd5488f98770546e3133dca8213805509dadf5a139d2bd7cae48 +size 83220 diff --git a/source/designs/files/rkt/027657.rkt b/source/designs/files/rkt/027657.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5604d2b53195e89cc90a3f6bd8673368349a4be8 --- /dev/null +++ b/source/designs/files/rkt/027657.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbcfa53360ddcdfbfd6edea39e1b508375f288340a1005a349839e4449e3121 +size 59558 diff --git a/source/designs/files/rkt/027658.rkt b/source/designs/files/rkt/027658.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b191427551c3f19534ff63daf62f9981e6c69dc1 --- /dev/null +++ b/source/designs/files/rkt/027658.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fad37c440e0cdca4237e8f1001657d1763b62d03b66588227d9be78d5e12b17a +size 131762 diff --git a/source/designs/files/rkt/027659.rkt b/source/designs/files/rkt/027659.rkt new file mode 100644 index 0000000000000000000000000000000000000000..625671695fea49a32225d6bd1dcc45c0ac19a49f --- /dev/null +++ b/source/designs/files/rkt/027659.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c63e39b69af99b9958a4736bde7d8d4c012154c99b42cd4edfcab9d256d935 +size 51736 diff --git a/source/designs/files/rkt/027660.rkt b/source/designs/files/rkt/027660.rkt new file mode 100644 index 0000000000000000000000000000000000000000..389f4300d2df3e6f855318379a4d385457d01137 --- /dev/null +++ b/source/designs/files/rkt/027660.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95f51761e76abb981a31799670208ff81e0823a42b8d1b1b4e6e1ef282e98f61 +size 59318 diff --git a/source/designs/files/rkt/027661.rkt b/source/designs/files/rkt/027661.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e550c522557dabe4c90cc79688c5ae97a40d61f4 --- /dev/null +++ b/source/designs/files/rkt/027661.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d81f0bfc33d6b30d4adff5dfe4c6c536a7ecfb763e55c1c8d3bb04fa7e8f65 +size 89136 diff --git a/source/designs/files/rkt/027662.rkt b/source/designs/files/rkt/027662.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2bc8351865d3757b0789228010934eca9537f599 --- /dev/null +++ b/source/designs/files/rkt/027662.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b34270da265dbd1cc3d26c393aa743b0956c6a7354d39d816d48b99da5f62327 +size 121522 diff --git a/source/designs/files/rkt/027663.rkt b/source/designs/files/rkt/027663.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a76a65422c5bbe8d6258b9bf9d761f4be21249b8 --- /dev/null +++ b/source/designs/files/rkt/027663.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734181d2197e9bad8fffcb00ebf1f9b5bbc2b61c99118b3391e23de2180844a6 +size 63908 diff --git a/source/designs/files/rkt/027664.rkt b/source/designs/files/rkt/027664.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fe4af99b32533b8598cca798618fa7520ae48fbe --- /dev/null +++ b/source/designs/files/rkt/027664.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4356911878a20c98c9f92fa835d1a99529ea7005a59ab3d1b35fde1776068550 +size 32807 diff --git a/source/designs/files/rkt/027665.rkt b/source/designs/files/rkt/027665.rkt new file mode 100644 index 0000000000000000000000000000000000000000..43a40f297396b4fb3e3232042f052db46ffb87d1 --- /dev/null +++ b/source/designs/files/rkt/027665.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c5d789a1951cf24572fe1d6ebc115918ef63703e6406aa36bec60151c794b23 +size 33501 diff --git a/source/designs/files/rkt/027666.rkt b/source/designs/files/rkt/027666.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6844c8c6fa45c73edbcf3ffbf64507a8e4b71e65 --- /dev/null +++ b/source/designs/files/rkt/027666.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393b4427f6fad532f6303fd0ac1e5fd8aa0c5c4ac37f822eaccf2e0ecadb7caf +size 33741 diff --git a/source/designs/files/rkt/027667.rkt b/source/designs/files/rkt/027667.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b5574071310a46fde6afca042a2a99c1e11ac4d4 --- /dev/null +++ b/source/designs/files/rkt/027667.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd00b31d70d0e90d6608ab631cb9e0ddb94529ee9161e7446619a8e21d00d2eb +size 45607 diff --git a/source/designs/files/rkt/027668.rkt b/source/designs/files/rkt/027668.rkt new file mode 100644 index 0000000000000000000000000000000000000000..94f3f01c6742480a20c2261e57e2aa6fbd65f5ca --- /dev/null +++ b/source/designs/files/rkt/027668.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec0efe3b8f61dfde3846d9213c9aa22c61003443df7f8443c43cf90049dbe1f +size 33557 diff --git a/source/designs/files/rkt/027669.rkt b/source/designs/files/rkt/027669.rkt new file mode 100644 index 0000000000000000000000000000000000000000..499e6990a43315117f58f1248fa3138d225e75f3 --- /dev/null +++ b/source/designs/files/rkt/027669.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68654d1d80017bca0e88f7068edc4b9079e935041aa3e99cdfff196572d55fd1 +size 162254 diff --git a/source/designs/files/rkt/027670.rkt b/source/designs/files/rkt/027670.rkt new file mode 100644 index 0000000000000000000000000000000000000000..93a2bdc91cf899615ca9790a76a95e2c69c050ce --- /dev/null +++ b/source/designs/files/rkt/027670.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8451114603a1dfce1b4a83996948cb5e4dbd48888570a9a5f82e0c36e22f7b29 +size 40920 diff --git a/source/designs/files/rkt/027671.rkt b/source/designs/files/rkt/027671.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0fcb9707db842f47406e34ef5ce54478ad98f42d --- /dev/null +++ b/source/designs/files/rkt/027671.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7190a7cdb08d488bf52ecfe60ee3bfd2079bb0b559e76af77d2f6ed70a6b3a46 +size 39089 diff --git a/source/designs/files/rkt/027672.rkt b/source/designs/files/rkt/027672.rkt new file mode 100644 index 0000000000000000000000000000000000000000..43b23c16bfe3fa15a95b971f0022f87a2731bbbc --- /dev/null +++ b/source/designs/files/rkt/027672.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1997f27bc41b7b1802ed8063b89d8b633ffa2ba7e02c95b14ed06afc4df7634 +size 62937 diff --git a/source/designs/files/rkt/027673.rkt b/source/designs/files/rkt/027673.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e32ec9003788aa6329b62cddda2af6d943bcb7c9 --- /dev/null +++ b/source/designs/files/rkt/027673.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74c142babbcb4c3d352f2641844b96b9075c8e4ab8f0d01409f19cdec04b58d4 +size 56866 diff --git a/source/designs/files/rkt/027674.rkt b/source/designs/files/rkt/027674.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cf4ccd9cd24cc027956049afeacc919ee7aabd59 --- /dev/null +++ b/source/designs/files/rkt/027674.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6520ee5d9ca6096593b59c8bdd2cf9a96b510ab1bafd8313cd8fa2a7a20f34c8 +size 58754 diff --git a/source/designs/files/rkt/027675.rkt b/source/designs/files/rkt/027675.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a58277507aae17d9a56ca514b36911b0153cf126 --- /dev/null +++ b/source/designs/files/rkt/027675.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1d2788d5be28f32c80602357190cb3f06e3c6f37bb8f8d5abfd1be823064ca +size 62396 diff --git a/source/designs/files/rkt/027676.rkt b/source/designs/files/rkt/027676.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f50a68615e280b867b626c46fd2e860e8eb9ed02 --- /dev/null +++ b/source/designs/files/rkt/027676.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381802d53691ffa8963c418fe85f88736c70d1048ab393cd2553506371e0fac3 +size 24602 diff --git a/source/designs/files/rkt/027677.rkt b/source/designs/files/rkt/027677.rkt new file mode 100644 index 0000000000000000000000000000000000000000..616bb30f7d5c27c7ba9a232f24827c4d73edfe20 --- /dev/null +++ b/source/designs/files/rkt/027677.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2358793641cf7f289d35f797a004df19ea9d47cf2b0a54c76211d090a6dc3972 +size 66738 diff --git a/source/designs/files/rkt/027678.rkt b/source/designs/files/rkt/027678.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cd1ab8eddca6e5dcacc05e9e223ebdb84964fc9b --- /dev/null +++ b/source/designs/files/rkt/027678.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee0d97643b1290a8c76183c4571dbee83e2e710c92e051bfdec8e7557328c73 +size 34469 diff --git a/source/designs/files/rkt/027679.rkt b/source/designs/files/rkt/027679.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b6242480afc19faab2257b41f6fd87fe358df33c --- /dev/null +++ b/source/designs/files/rkt/027679.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:721a44a9092dcc6c8ed96eed8ccc12b515a1503ad7931868ecb196e97c4cf5a2 +size 37086 diff --git a/source/designs/files/rkt/027680.rkt b/source/designs/files/rkt/027680.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1e64e39fc04c1d6798dd7fb365d203e7fb916406 --- /dev/null +++ b/source/designs/files/rkt/027680.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2a6ce786b4d2b46dfe7d3cbe2a00a333dd8b9f71b1438d0e0b5f637fa351ec +size 57897 diff --git a/source/designs/files/rkt/027681.rkt b/source/designs/files/rkt/027681.rkt new file mode 100644 index 0000000000000000000000000000000000000000..94ed48d2e6ce19b3d65e01f85d1a497a3d846dc2 --- /dev/null +++ b/source/designs/files/rkt/027681.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c8828126019293f03a67f33c4c32210458156c0fdc7d569919789afcc2690e2 +size 36853 diff --git a/source/designs/files/rkt/027682.rkt b/source/designs/files/rkt/027682.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7b5e49e78b99b6f2320dd5c17f94774c2d0fecf8 --- /dev/null +++ b/source/designs/files/rkt/027682.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffb65c3c99a55c02a1230566632c887def785f9eef14727448b1ba11bc61d8b +size 62038 diff --git a/source/designs/files/rkt/027683.rkt b/source/designs/files/rkt/027683.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6a98d16f264b4d513de5d61d1acaf07014147c4d --- /dev/null +++ b/source/designs/files/rkt/027683.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34998a57aa7522dfdb5c977eaa6875356fd8e687c3a9f758ea48ec11c3ed734b +size 154224 diff --git a/source/designs/files/rkt/027684.rkt b/source/designs/files/rkt/027684.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ff6d6f8a89728aaad55b551c9fe9ab389efcbbdb --- /dev/null +++ b/source/designs/files/rkt/027684.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12f543ca2cbce9fbc94d02765c6316ec9937a195b16f4e4f076b7568158cff74 +size 31698 diff --git a/source/designs/files/rkt/027685.rkt b/source/designs/files/rkt/027685.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7569315c55307bb4ef959e06233f656cd092078b --- /dev/null +++ b/source/designs/files/rkt/027685.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:912273cee3a68972ec4cfda51c46d3b4cd3350a50a3fa15afa52721e0fe5d29c +size 25696 diff --git a/source/designs/files/rkt/027686.rkt b/source/designs/files/rkt/027686.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9e6bcc379131ec44b8c54bb586d043d1be04e0da --- /dev/null +++ b/source/designs/files/rkt/027686.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d7b0ac0501d087c0c18b6abf980fd68dcfd6f6cda5ee7730f39a6f8173e4d79 +size 111138 diff --git a/source/designs/files/rkt/027687.rkt b/source/designs/files/rkt/027687.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3bb4d054560d2d06868df1d917a0317aad5fc720 --- /dev/null +++ b/source/designs/files/rkt/027687.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a954c5edf05a4254f7526d48cd3c7a78d4c9687164c05083c0d400e702e4f892 +size 194981 diff --git a/source/designs/files/rkt/027689.rkt b/source/designs/files/rkt/027689.rkt new file mode 100644 index 0000000000000000000000000000000000000000..525a55b6bd19af283b9098a52c349bf9575e9694 --- /dev/null +++ b/source/designs/files/rkt/027689.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e58271d374bc091788e529466a1d24f6bbb0b034dbeca31d3d9e4597e8ebf5 +size 25651 diff --git a/source/designs/files/rkt/027690.rkt b/source/designs/files/rkt/027690.rkt new file mode 100644 index 0000000000000000000000000000000000000000..acd56f76faeaeaaea31526dca7b5345363581668 --- /dev/null +++ b/source/designs/files/rkt/027690.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3873f05b3813bc92a40e6d244f023b27063a7015556f7e218ec64a6dcf66c68 +size 81752 diff --git a/source/designs/files/rkt/027693.rkt b/source/designs/files/rkt/027693.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b8a4fd9a0dc4c381b295d392f2f9748b6dd57fd0 --- /dev/null +++ b/source/designs/files/rkt/027693.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c813f8d5f7ffb3a39d7a629f357bd99ccc7a1b254341cb7bf9638a26ffe17e +size 174548 diff --git a/source/designs/files/rkt/027694.rkt b/source/designs/files/rkt/027694.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0d3a511af2dae051b4daec9f3ec60cc9d64b474d --- /dev/null +++ b/source/designs/files/rkt/027694.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a7703f2fe0e4bbebf94bb92ca82914d278029e2c22a9e7578c5810f96befc4 +size 107498 diff --git a/source/designs/files/rkt/027695.rkt b/source/designs/files/rkt/027695.rkt new file mode 100644 index 0000000000000000000000000000000000000000..18ecdf5595ad9f7e3cd8a4062a4bef355b424838 --- /dev/null +++ b/source/designs/files/rkt/027695.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca67c348a6d45223ccdd60360e45e5bde3e42e7bf1474b43cff375191cff0309 +size 62837 diff --git a/source/designs/files/rkt/027696.rkt b/source/designs/files/rkt/027696.rkt new file mode 100644 index 0000000000000000000000000000000000000000..98dd8ce890b82c2ba8740359af1af6760e5aeb08 --- /dev/null +++ b/source/designs/files/rkt/027696.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf58e37785bc4329445f1db0916e657017d0331544d805dd21ef3e7cbe01958 +size 37775 diff --git a/source/designs/files/rkt/027697.rkt b/source/designs/files/rkt/027697.rkt new file mode 100644 index 0000000000000000000000000000000000000000..422e29944095778baeda0118c665a691ec6d6557 --- /dev/null +++ b/source/designs/files/rkt/027697.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0fba9679644582ce80553e889d8e293cba3dd4289fcd665d7c6c34bee3f63e +size 67876 diff --git a/source/designs/files/rkt/027698.rkt b/source/designs/files/rkt/027698.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3004d347112dfc3a325cf1ea60db98cf18b7a7d4 --- /dev/null +++ b/source/designs/files/rkt/027698.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43fb690e91845ab221e62741cd27a288444b03b32822ccccf5d38190e4fde118 +size 37727 diff --git a/source/designs/files/rkt/027699.rkt b/source/designs/files/rkt/027699.rkt new file mode 100644 index 0000000000000000000000000000000000000000..256508aa8a7356ce0c8db30f3c5ba2f6e4586cd0 --- /dev/null +++ b/source/designs/files/rkt/027699.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be4eb9a2c8255e413e44e4e2cbc8c9784bf094b9da08b5a4defff7a5dcbf3d27 +size 33598 diff --git a/source/designs/files/rkt/027700.rkt b/source/designs/files/rkt/027700.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0f7fc4aeacb05751d8d65fc47b7ea4020f9010e8 --- /dev/null +++ b/source/designs/files/rkt/027700.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f4552d3f010e0ce9cbf01f08a84013dc80ffcc1bfefcb6d24cf840c22705ba +size 25888 diff --git a/source/designs/files/rkt/027701.rkt b/source/designs/files/rkt/027701.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d42bbced8a16957fb0e21b3325addb80c1eafd94 --- /dev/null +++ b/source/designs/files/rkt/027701.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349c95578f64bdf77c64ddbc6ea709d31c2bb02f66a8c4b3173d0d9b25976361 +size 85223 diff --git a/source/designs/files/rkt/027702.rkt b/source/designs/files/rkt/027702.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6c78d8e5162309df0c4ae849bc6750808c834ae9 --- /dev/null +++ b/source/designs/files/rkt/027702.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379984ccc13b289d40d975ac561c6d5f54f2c49e0db08e215064362c88ace26c +size 61072 diff --git a/source/designs/files/rkt/027703.rkt b/source/designs/files/rkt/027703.rkt new file mode 100644 index 0000000000000000000000000000000000000000..86b350e9040b881cc2c0a9abb613632859f5d869 --- /dev/null +++ b/source/designs/files/rkt/027703.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c380d5c61b372f4e8d945810f93e3624a319e479fc9105b0ee47cb60103afa +size 50424 diff --git a/source/designs/files/rkt/027704.rkt b/source/designs/files/rkt/027704.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0dd39b8e4606ffe6335626d82ebb37d5a2529f40 --- /dev/null +++ b/source/designs/files/rkt/027704.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55fa1a323b6fc4f9139e436a6581e26d0c8b6e8faf7e949fb2357508f6fd168b +size 42844 diff --git a/source/designs/files/rkt/027705.rkt b/source/designs/files/rkt/027705.rkt new file mode 100644 index 0000000000000000000000000000000000000000..24d058825d771e3d631aef801ecc7f137714861f --- /dev/null +++ b/source/designs/files/rkt/027705.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17bee98774ab803d112cba43f72b2dc48374063bd2ebdb11b389e504537e87f7 +size 42304 diff --git a/source/designs/files/rkt/027706.rkt b/source/designs/files/rkt/027706.rkt new file mode 100644 index 0000000000000000000000000000000000000000..27554dc06d2b18c0fb66c6267afc2e856ce64bcf --- /dev/null +++ b/source/designs/files/rkt/027706.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd608f2f9c81ab90607cde413362de7a7fe1ae8bc833a2fcfdb753dd452a335 +size 22290 diff --git a/source/designs/files/rkt/027707.rkt b/source/designs/files/rkt/027707.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a54c59318da6ecc1cb1bdecbf3f4320460056057 --- /dev/null +++ b/source/designs/files/rkt/027707.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac40fb96b6e7ff2bf7353a568a2fdd99db77045dfc47fa731862b45a909c980 +size 18237 diff --git a/source/designs/files/rkt/027708.rkt b/source/designs/files/rkt/027708.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ed0cc5cb3de102202e5e99b7354d7c4e5db4f886 --- /dev/null +++ b/source/designs/files/rkt/027708.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0993cbdde4ec3935452f32f3376e8a518b3594bbdce44c87469eee51afe748fc +size 135595 diff --git a/source/designs/files/rkt/027709.rkt b/source/designs/files/rkt/027709.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d54b6c51a99b861f74db0fcb372dc7ce9b6408d4 --- /dev/null +++ b/source/designs/files/rkt/027709.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d971b96e0c1e7acefb2ce1924d84b02f52a0e6d6901f8b392b91ed31cc1d567f +size 50735 diff --git a/source/designs/files/rkt/027710.rkt b/source/designs/files/rkt/027710.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6a19cbccb00b93a19939ec311a87c5a2386b6574 --- /dev/null +++ b/source/designs/files/rkt/027710.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893add609e768b31e7b6b9626322e8092bcbd55ac89f012b5be354dab0f4b8b2 +size 161437 diff --git a/source/designs/files/rkt/027711.rkt b/source/designs/files/rkt/027711.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e45b3fda61218cc183703a135642b9952dcc8445 --- /dev/null +++ b/source/designs/files/rkt/027711.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fd1fb7d0d2bdf44f272d9cfd1c06a7c7250010fb8ff24580c377f1fb7209f6e +size 48797 diff --git a/source/designs/files/rkt/027712.rkt b/source/designs/files/rkt/027712.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9ee6fec4ac5ce3894c29642ee84518eca6a4b4c3 --- /dev/null +++ b/source/designs/files/rkt/027712.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4514aaad277993adce09fcbad0fd78b7947d5f82b47efa8114bef559abd2e49d +size 67151 diff --git a/source/designs/files/rkt/027713.rkt b/source/designs/files/rkt/027713.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a16d6092a561805c9c39e2d1b880cea8b5b26cf5 --- /dev/null +++ b/source/designs/files/rkt/027713.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5370b3863a6ee03aa9912590d586bbcb952f373610628917336ba56605d6aa7d +size 139182 diff --git a/source/designs/files/rkt/027714.rkt b/source/designs/files/rkt/027714.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f36513f88c9a0ffc9d8096da7666b4806483acad --- /dev/null +++ b/source/designs/files/rkt/027714.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d831d0ed464fe5646bd2bcc938c47ecb8971cd1cbe3a356a8e81efc5200f073 +size 119603 diff --git a/source/designs/files/rkt/027715.rkt b/source/designs/files/rkt/027715.rkt new file mode 100644 index 0000000000000000000000000000000000000000..885598c5099de36648c45d871c1bfde3f97d11ca --- /dev/null +++ b/source/designs/files/rkt/027715.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b63ee94555a81935e05bf0588aec83a6669afc4d5d7e9b99eb9bcf754023e5 +size 237735 diff --git a/source/designs/files/rkt/027716.rkt b/source/designs/files/rkt/027716.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0cfac6dd6d26840a44b848790e50c1c706850254 --- /dev/null +++ b/source/designs/files/rkt/027716.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9478dcdc22e5550d3bd16e33f1d05217afa984a7b02e1bfe6b71b06893d7eb63 +size 32597 diff --git a/source/designs/files/rkt/027717.rkt b/source/designs/files/rkt/027717.rkt new file mode 100644 index 0000000000000000000000000000000000000000..57bb405922973a5a7dac488fc21a24a1ab218921 --- /dev/null +++ b/source/designs/files/rkt/027717.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:712ee09689cba525b40b2d9467b7ae81876ef5c2c3fc371d5e435815e5094602 +size 45314 diff --git a/source/designs/files/rkt/027718.rkt b/source/designs/files/rkt/027718.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9e112ca7ab13d4487a82a75d87ab0ac10b6bf11a --- /dev/null +++ b/source/designs/files/rkt/027718.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a34cd367a3b1c89e806102dcf0bd3fb1cf84b3e3a7b9562fe14a21cf260e127 +size 62509 diff --git a/source/designs/files/rkt/027720.rkt b/source/designs/files/rkt/027720.rkt new file mode 100644 index 0000000000000000000000000000000000000000..452db74a7db057246101e4541dbaf0c11a7cf775 --- /dev/null +++ b/source/designs/files/rkt/027720.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b985f2d549888d81e12eb9ad6dc39d161a9aa95794723ca9ae82639f65baf94 +size 91087 diff --git a/source/designs/files/rkt/027721.rkt b/source/designs/files/rkt/027721.rkt new file mode 100644 index 0000000000000000000000000000000000000000..52578e9d9712412fffc5830db03885b31621ab9e --- /dev/null +++ b/source/designs/files/rkt/027721.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfdcbacc18c2ba9b060c866f8bce851074c14c68aacba8048306d53aa67d730f +size 43463 diff --git a/source/designs/files/rkt/027722.rkt b/source/designs/files/rkt/027722.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5872667bc309bb2b68b1116303fd94ca4f0fe9c1 --- /dev/null +++ b/source/designs/files/rkt/027722.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a7bf6a84919fe1d63fedd891afcdce829dc475ffd4176b9f194e690da9aa547 +size 104004 diff --git a/source/designs/files/rkt/027723.rkt b/source/designs/files/rkt/027723.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c6600fb8b0e789684a8e1abaa723ecbda7ae6063 --- /dev/null +++ b/source/designs/files/rkt/027723.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d968200a6c36307c2dcc87112d3d3e1ea28e327dbe8617ab317c2e0cde324b +size 51752 diff --git a/source/designs/files/rkt/027724.rkt b/source/designs/files/rkt/027724.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bb528e82864cf9704c6c9c2a17357c929a0d4887 --- /dev/null +++ b/source/designs/files/rkt/027724.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a30b872b688e6d94d2766baf0e21fd3c63c9217bcafd715e6c2f1f91f80fc75d +size 54977 diff --git a/source/designs/files/rkt/027725.rkt b/source/designs/files/rkt/027725.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8a0fc27dd5ffb3fc0ffa2a4a4579cad103913e7b --- /dev/null +++ b/source/designs/files/rkt/027725.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de0c0278d1d8ceb3a68373113a4b681456602aa18f53b9fb75c7a13c6681311c +size 39604 diff --git a/source/designs/files/rkt/027726.rkt b/source/designs/files/rkt/027726.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5bdd7338162468dac090a645117268a8edd69d36 --- /dev/null +++ b/source/designs/files/rkt/027726.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb49460fa51efd8ffec21213491ae0749301a14753bd7f623469aa81c1867f5 +size 65418 diff --git a/source/designs/files/rkt/027727.rkt b/source/designs/files/rkt/027727.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ea856dd1abeaf42d6b92f1286a1f2bcc2ba860a5 --- /dev/null +++ b/source/designs/files/rkt/027727.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed296122581dbdbdd08e06827188619032c6abc8bb89e46e91f7511f3e7da41f +size 145456 diff --git a/source/designs/files/rkt/027728.rkt b/source/designs/files/rkt/027728.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e6b1ff613fac88b7acfd0f57de12045049968884 --- /dev/null +++ b/source/designs/files/rkt/027728.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5b778ec0da1cb043d4b065298edda781ad95693edeac01a8308ca952b6e8eaa +size 49971 diff --git a/source/designs/files/rkt/027729.rkt b/source/designs/files/rkt/027729.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63cdbe0722f5feaea731b670965a1bcbe83c657d --- /dev/null +++ b/source/designs/files/rkt/027729.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:449fd0ce533173d2abf7aa7fe56cf9d8f1b24b9b4fbbf8ed80b15ca7175d248a +size 166222 diff --git a/source/designs/files/rkt/027730.rkt b/source/designs/files/rkt/027730.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a138a213afab1f7b1c99d71657319fe1ad255d97 --- /dev/null +++ b/source/designs/files/rkt/027730.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a922ceccb26deaa5728c88857edfaff17dddd88ca8726e0ec6216528aa2fe2fb +size 166891 diff --git a/source/designs/files/rkt/027731.rkt b/source/designs/files/rkt/027731.rkt new file mode 100644 index 0000000000000000000000000000000000000000..26e59e6b1a3308df218a619e7933c5fb03676c71 --- /dev/null +++ b/source/designs/files/rkt/027731.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dec86a080e50bff601603d81698d5a64f991e74b3a4c02c99c722d71100ac23 +size 109197 diff --git a/source/designs/files/rkt/027732.rkt b/source/designs/files/rkt/027732.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c51171d0e1d2a5498f3a69ffc62f7fae0e74b3b6 --- /dev/null +++ b/source/designs/files/rkt/027732.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2b9b44463c997f4ba62b6b5110967d998bccf90b290abb5b5e5d7a619842e1 +size 58334 diff --git a/source/designs/files/rkt/027733.rkt b/source/designs/files/rkt/027733.rkt new file mode 100644 index 0000000000000000000000000000000000000000..95f8d46282fc8490aecdf1e0922477b1d5da419e --- /dev/null +++ b/source/designs/files/rkt/027733.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41b762e56cf48661727f37c267751687560c689d842e774676c21dc1e3de8fd +size 131890 diff --git a/source/designs/files/rkt/027734.rkt b/source/designs/files/rkt/027734.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c769454334a8f705c6aa746186a820c36e45fb63 --- /dev/null +++ b/source/designs/files/rkt/027734.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c671e2118e4b633aefd67b3e72830460bc8cbf629484f412a06334fe01ff0337 +size 101667 diff --git a/source/designs/files/rkt/027735.rkt b/source/designs/files/rkt/027735.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4f707d8de17297410089688befe720e71259dbc7 --- /dev/null +++ b/source/designs/files/rkt/027735.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbaa9b220f1f04e73b7e5fc726f26fbacc83fcffa3b40bcf046dae2317a3e7c +size 57821 diff --git a/source/designs/files/rkt/027736.rkt b/source/designs/files/rkt/027736.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ab97e6036d175cc1a02297b66b0e356889e063f2 --- /dev/null +++ b/source/designs/files/rkt/027736.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68cd7611998c527cacc8222d9f5e43a865a40d03919f266c50419f1523dca345 +size 60839 diff --git a/source/designs/files/rkt/027737.rkt b/source/designs/files/rkt/027737.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bec6f807e7d9210af0859e0d833941b2302f59b3 --- /dev/null +++ b/source/designs/files/rkt/027737.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81a398afcd422f00b5fbf5c23d8ff801c95eb0a058e89bedf8b857e5e5afbc86 +size 60732 diff --git a/source/designs/files/rkt/027738.rkt b/source/designs/files/rkt/027738.rkt new file mode 100644 index 0000000000000000000000000000000000000000..659cdf028c4223074ee690ad9ae8e2faae4fd400 --- /dev/null +++ b/source/designs/files/rkt/027738.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea7b79970de8ba092ede67bdc8fdd695c1b7a1b5366b282bca6f612667bcd3c +size 55531 diff --git a/source/designs/files/rkt/027739.rkt b/source/designs/files/rkt/027739.rkt new file mode 100644 index 0000000000000000000000000000000000000000..67423aea6dcd911e3baf825c6df38a68499f5933 --- /dev/null +++ b/source/designs/files/rkt/027739.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632990c8b7b376e76fe2484f22ab3e1e83c22f155c5a383379cc81d347b03732 +size 133255 diff --git a/source/designs/files/rkt/027740.rkt b/source/designs/files/rkt/027740.rkt new file mode 100644 index 0000000000000000000000000000000000000000..53f058f940f9b2444ef0ad2fd9529e8b3233164d --- /dev/null +++ b/source/designs/files/rkt/027740.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:716e7354c016592e78c64ba9ca0fe732ebeb1d1211c4633d9abbfdb10adc0b5c +size 132093 diff --git a/source/designs/files/rkt/027741.rkt b/source/designs/files/rkt/027741.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a28623b622100f9aa7236104f115b48b4518b522 --- /dev/null +++ b/source/designs/files/rkt/027741.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae1c61870e9c48e69699c241ec9171b20b55ebf7b6b89a56add6754cc16d3326 +size 54338 diff --git a/source/designs/files/rkt/027742.rkt b/source/designs/files/rkt/027742.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0cfe80a43fec11d9e5ff4e8f4c95246e986be324 --- /dev/null +++ b/source/designs/files/rkt/027742.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49da1491d3efe3de3e90c0f5d3215c66377c80d92ca6a00d92317a11530a2fa4 +size 44195 diff --git a/source/designs/files/rkt/027743.rkt b/source/designs/files/rkt/027743.rkt new file mode 100644 index 0000000000000000000000000000000000000000..566f8ef04d006d19ffd48e706da4324c18bd50c6 --- /dev/null +++ b/source/designs/files/rkt/027743.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7423ee37f966449057b7c6efb9b96fd89db88fabe0b942d95f5eebbc7865e69 +size 50668 diff --git a/source/designs/files/rkt/027744.rkt b/source/designs/files/rkt/027744.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fd95808b0659d5770a2a94b5e5a1402bcfb4e2b6 --- /dev/null +++ b/source/designs/files/rkt/027744.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77e61ece94f730c44a741871040623f620a043adac80c84bdf1496f27cf6a629 +size 44372 diff --git a/source/designs/files/rkt/027745.rkt b/source/designs/files/rkt/027745.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6db22c9693b7ca089ce68960ca7582d1baf5f192 --- /dev/null +++ b/source/designs/files/rkt/027745.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bebaeab5079a88030352f55b50b67cbbe8c6297ef86227cca9a3d3b97c3adeaf +size 54508 diff --git a/source/designs/files/rkt/027746.rkt b/source/designs/files/rkt/027746.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4da6773c40d36a74cc9d2cc74cb56390659cf11d --- /dev/null +++ b/source/designs/files/rkt/027746.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee96718652f285c50a06c35096b796336358326ce3ec6e509c07cbedf27032e +size 52411 diff --git a/source/designs/files/rkt/027747.rkt b/source/designs/files/rkt/027747.rkt new file mode 100644 index 0000000000000000000000000000000000000000..acf0a32aa64373e26a7ab29aabece95c53a19bee --- /dev/null +++ b/source/designs/files/rkt/027747.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4adb921dd455718da24adec5db392418b249cfc712492c5590603220de4690f0 +size 51612 diff --git a/source/designs/files/rkt/027748.rkt b/source/designs/files/rkt/027748.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4fa439b05fc392287c64187876c253bb225f1481 --- /dev/null +++ b/source/designs/files/rkt/027748.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8936fb74b919cd0c2cf4fe26948e8a59771f432b6b6ea57b793659a3feb159e5 +size 65238 diff --git a/source/designs/files/rkt/027749.rkt b/source/designs/files/rkt/027749.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6a3b1003f4c198fdf0d61902e2f622275e010e75 --- /dev/null +++ b/source/designs/files/rkt/027749.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:436a1fb04ef7f92f0c8ead7900c8ab1863a297f5b141e3187597f6ee66c90b2d +size 38453 diff --git a/source/designs/files/rkt/027750.rkt b/source/designs/files/rkt/027750.rkt new file mode 100644 index 0000000000000000000000000000000000000000..71fcf7cd5bdf8a3e0c45e7adcc37681e78d4405b --- /dev/null +++ b/source/designs/files/rkt/027750.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42dbaf8b9d1bcd08f4edfcb96dd87fe5df025d87d5cd0fa8a9d84544b0210de +size 80241 diff --git a/source/designs/files/rkt/027751.rkt b/source/designs/files/rkt/027751.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d62f742564f479c44ff678408f1c45f55ef1312c --- /dev/null +++ b/source/designs/files/rkt/027751.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b577efbe9b10b5ce6abbcfec0bff2f9e479bc23856f50172b487f30d859499 +size 57801 diff --git a/source/designs/files/rkt/027752.rkt b/source/designs/files/rkt/027752.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5d7b6d5fe20f695898a3eb7a897497b6af62a6be --- /dev/null +++ b/source/designs/files/rkt/027752.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786af005943c39cbde534a682b73689ab6b838690245c81a295d08250502a70e +size 69158 diff --git a/source/designs/files/rkt/027753.rkt b/source/designs/files/rkt/027753.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3480d579d60b0be8b87c07ceee987d70f725a2f7 --- /dev/null +++ b/source/designs/files/rkt/027753.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9452110b30cac18f49c58b965d90983e6f46c88d6d8ec3d7e2881e51fba1489 +size 65323 diff --git a/source/designs/files/rkt/027754.rkt b/source/designs/files/rkt/027754.rkt new file mode 100644 index 0000000000000000000000000000000000000000..26f46e57e4677f6dedfb21b9104d7853300dd47e --- /dev/null +++ b/source/designs/files/rkt/027754.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:597b54c01ed8a296bcf19b95e417c815e64c8ec4d7bf986f7b004a34d683b02e +size 48417 diff --git a/source/designs/files/rkt/027755.rkt b/source/designs/files/rkt/027755.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6690c8e5d7cbe580122ca9accb85e1a142161b65 --- /dev/null +++ b/source/designs/files/rkt/027755.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ffa5aa243118e092c19b8aea9c2659806d4117af7f62ce46fdf76f1473c7955 +size 50689 diff --git a/source/designs/files/rkt/027756.rkt b/source/designs/files/rkt/027756.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5a797280a3db2aee6775b3d98860fdb8f87b82c2 --- /dev/null +++ b/source/designs/files/rkt/027756.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd000636d101690f28b0ea7422e0e7d47ff7e447c1cc5dd02291a6ed4bf4f02 +size 44395 diff --git a/source/designs/files/rkt/027757.rkt b/source/designs/files/rkt/027757.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7e4fe2704a4954ec354a5181ccc85ccc3432be84 --- /dev/null +++ b/source/designs/files/rkt/027757.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d1ced4dc53f6ff9956c51c59a375139dfa7cf73780746b9472820dc9826de47 +size 67347 diff --git a/source/designs/files/rkt/027758.rkt b/source/designs/files/rkt/027758.rkt new file mode 100644 index 0000000000000000000000000000000000000000..45e22cf0b421ea43e2159009c0fded6dd7338a4b --- /dev/null +++ b/source/designs/files/rkt/027758.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf77ceddd062a9fc4f85493f462fc993154ba7259f5939097c94cfbf21baee65 +size 40431 diff --git a/source/designs/files/rkt/027759.rkt b/source/designs/files/rkt/027759.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ccce220ea511f4b03bbef5371755309e564fa492 --- /dev/null +++ b/source/designs/files/rkt/027759.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f11e246ff0c68f11ae13a798e2afaab36ae62e30b26323792a5e65bd3cb6e9 +size 47184 diff --git a/source/designs/files/rkt/027760.rkt b/source/designs/files/rkt/027760.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ec574fe87c24758c314a910c8bc5c6356b9a03d2 --- /dev/null +++ b/source/designs/files/rkt/027760.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45093db9357a12a2332f28de60ee3d92f91f8b6b2d9b225cf98416d08cfb129f +size 64011 diff --git a/source/designs/files/rkt/027761.rkt b/source/designs/files/rkt/027761.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7bdd8c13aad658351aba1a399ae37c015b79d8c8 --- /dev/null +++ b/source/designs/files/rkt/027761.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08059e1d06628a597a071f3472e6a264b338d8e331e70d1bc93911a1eb1a6602 +size 47515 diff --git a/source/designs/files/rkt/027762.rkt b/source/designs/files/rkt/027762.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7f7365cbc237ca9aefe22486167b34cf3a6c57a1 --- /dev/null +++ b/source/designs/files/rkt/027762.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f5919c8dcab23e34e621d6451361572f2e26a02f69b5b9f85b71da66251979f +size 96039 diff --git a/source/designs/files/rkt/027763.rkt b/source/designs/files/rkt/027763.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5ebc484c75d346fd86154614d097b4fe2f5af1fd --- /dev/null +++ b/source/designs/files/rkt/027763.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4330b207edb7af5486787794c181dbc712999d88794b83b6d86ef7478cf019c +size 48117 diff --git a/source/designs/files/rkt/027764.rkt b/source/designs/files/rkt/027764.rkt new file mode 100644 index 0000000000000000000000000000000000000000..036dfd89f9aeb27edfd760ab1e633a017bde7d9b --- /dev/null +++ b/source/designs/files/rkt/027764.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb79c79c95beedc39679d8f43e1935d66c3967cf2464f225e5faf3535992f1d +size 82510 diff --git a/source/designs/files/rkt/027765.rkt b/source/designs/files/rkt/027765.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e2c68c201ba41080823fee6d0d9377fc7afe1e59 --- /dev/null +++ b/source/designs/files/rkt/027765.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567af5a2b95f808192b4897bd3f998920aa24a782dc22c14b7b9af743672417c +size 44081 diff --git a/source/designs/files/rkt/027766.rkt b/source/designs/files/rkt/027766.rkt new file mode 100644 index 0000000000000000000000000000000000000000..23139a9a1f424f91636c2f95bf130a31594efdcf --- /dev/null +++ b/source/designs/files/rkt/027766.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf0d93f5f3faf978c43f3ff5f0e4a7c45d3d03655bc06c77c3a14e09dff08e71 +size 36904 diff --git a/source/designs/files/rkt/027767.rkt b/source/designs/files/rkt/027767.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ab0b420f1a997f4c7d3fc4fd4097bfb7d121b6f3 --- /dev/null +++ b/source/designs/files/rkt/027767.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6b3793ef95d115796a12a2ebf397fe6f85f9a4a5040736ac6f7bb84f7176a9 +size 49950 diff --git a/source/designs/files/rkt/027768.rkt b/source/designs/files/rkt/027768.rkt new file mode 100644 index 0000000000000000000000000000000000000000..896d97f1763675ea621dd9d620dcc05acb82164f --- /dev/null +++ b/source/designs/files/rkt/027768.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a304d96f9047787d2bda09471364453846c56e851d7097a7420629827e1c8f +size 45465 diff --git a/source/designs/files/rkt/027769.rkt b/source/designs/files/rkt/027769.rkt new file mode 100644 index 0000000000000000000000000000000000000000..43c90cf56b45da998036c7a24f8fdfddddcd664a --- /dev/null +++ b/source/designs/files/rkt/027769.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:628e977f011c14da56813fe2667cd290b12a8d1d9d617147d35749a933b23517 +size 67420 diff --git a/source/designs/files/rkt/027770.rkt b/source/designs/files/rkt/027770.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f521c63657663d9b8226aed5c07a6191cb6c5bc2 --- /dev/null +++ b/source/designs/files/rkt/027770.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e89064dae0a5129583bf016655d3fb39034a22c4e9f795aca9a5afb65137879 +size 54936 diff --git a/source/designs/files/rkt/027771.rkt b/source/designs/files/rkt/027771.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0c259182ede2fe01a256bb4f5265d4cf56ab50ca --- /dev/null +++ b/source/designs/files/rkt/027771.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ca1fac46b8751ab707346bc35eb860cffde252d7e6d6b23f56c96a4a3cd771 +size 91747 diff --git a/source/designs/files/rkt/027772.rkt b/source/designs/files/rkt/027772.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0cdf281d214a17b1dbda9a2c3413256dc724da2d --- /dev/null +++ b/source/designs/files/rkt/027772.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:818c89d82e30efad16e257b8ba2369965e1c7da90b34b99b0b54127ef68715e1 +size 22121 diff --git a/source/designs/files/rkt/027773.rkt b/source/designs/files/rkt/027773.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b34b7a97e7ba409a3f7f0d66e849bd5f493c2951 --- /dev/null +++ b/source/designs/files/rkt/027773.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:988c219717d0e171c64f4324c9862d2d1d193c411aa04a2d2c137daf41d8160a +size 24199 diff --git a/source/designs/files/rkt/027774.rkt b/source/designs/files/rkt/027774.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1ecf7e733cb0ce08f8e6c63b05c9e8c390ef1e67 --- /dev/null +++ b/source/designs/files/rkt/027774.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7165162f4675ffb7858a2365e832b52db6a9122786855413b14ba778e83f0b8f +size 33864 diff --git a/source/designs/files/rkt/027775.rkt b/source/designs/files/rkt/027775.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6671788bf514e150f03551eff917689c46cddd80 --- /dev/null +++ b/source/designs/files/rkt/027775.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e315dee157df890fb582a43b89aa87d7a7920629df79f7b14ad2560e8488b407 +size 22879 diff --git a/source/designs/files/rkt/027776.rkt b/source/designs/files/rkt/027776.rkt new file mode 100644 index 0000000000000000000000000000000000000000..26c30255ac6cf06b4367cb256d71f448bf0d162c --- /dev/null +++ b/source/designs/files/rkt/027776.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69b2e4fda00ee193d7e8dd66ddbdd359152aa5dbd53d2901ac0fe5133dd1d5f1 +size 29324 diff --git a/source/designs/files/rkt/027778.rkt b/source/designs/files/rkt/027778.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3f458a90c28b49113e710df73f3e0b31313bae43 --- /dev/null +++ b/source/designs/files/rkt/027778.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc0252b8d53a989d3e639c988bb1cff0efe883fae9bde7780a8aec084c21638b +size 17698 diff --git a/source/designs/files/rkt/027779.rkt b/source/designs/files/rkt/027779.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e18190d1a0f82cbada0ad962e56dd9f48120176b --- /dev/null +++ b/source/designs/files/rkt/027779.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd38244538a556fc59b11e1d48a214d123afee307645eddb5e11b37db2ebc5e1 +size 26300 diff --git a/source/designs/files/rkt/027780.rkt b/source/designs/files/rkt/027780.rkt new file mode 100644 index 0000000000000000000000000000000000000000..53eb718c1c0d1ff7b91df0e21cb9a24643eef904 --- /dev/null +++ b/source/designs/files/rkt/027780.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a38c0c4698f4f9d29466d7373d79bc50d4d2f2ac04a8860f99c1823291db6fc +size 170692 diff --git a/source/designs/files/rkt/027782.rkt b/source/designs/files/rkt/027782.rkt new file mode 100644 index 0000000000000000000000000000000000000000..15662022d2e9202188ef6b9fa46d0ab62cf69043 --- /dev/null +++ b/source/designs/files/rkt/027782.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0503c457bbc60e99b1108c45a33bc527642a3f59e8a770cd16ccda7731a5e9d6 +size 12194 diff --git a/source/designs/files/rkt/027783.rkt b/source/designs/files/rkt/027783.rkt new file mode 100644 index 0000000000000000000000000000000000000000..227bf63ee3a7f276ef801248eeca9fde7c6ed8f4 --- /dev/null +++ b/source/designs/files/rkt/027783.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4824ba725e7ca2a05aae34d4ce7768607ec3b8c5e6cd1cd0aad0103dfa3ca425 +size 25065 diff --git a/source/designs/files/rkt/027784.rkt b/source/designs/files/rkt/027784.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9dbb997a9282b99d7c57179106834f6859d5ffa4 --- /dev/null +++ b/source/designs/files/rkt/027784.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3415130d163b5ee170d1c3450d5118f6e738923fd32fa446ac4072f6a34c7961 +size 110570 diff --git a/source/designs/files/rkt/027785.rkt b/source/designs/files/rkt/027785.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6447f1642c0717d98f3f604c8a287884ebca1dd1 --- /dev/null +++ b/source/designs/files/rkt/027785.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7117ad831d29e9f6781c84707b35e15ff039739d64ae0cfd7491a71c11c9e02a +size 26120 diff --git a/source/designs/files/rkt/027786.rkt b/source/designs/files/rkt/027786.rkt new file mode 100644 index 0000000000000000000000000000000000000000..85f34cba18569420670628e14dfc9c7e51d200d3 --- /dev/null +++ b/source/designs/files/rkt/027786.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd9eb8060774955a29612079935c2dd94644d286c07601539251c735939f12a +size 38163 diff --git a/source/designs/files/rkt/027787.rkt b/source/designs/files/rkt/027787.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3093d5d5f802ef2297837ed1260917ff570b6b23 --- /dev/null +++ b/source/designs/files/rkt/027787.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6efe9283b69a751c5ac83202e6362ab6d8f427c3eee1dd7245fbd0f8187629d0 +size 36822 diff --git a/source/designs/files/rkt/027792.rkt b/source/designs/files/rkt/027792.rkt new file mode 100644 index 0000000000000000000000000000000000000000..fbc9964ad47f3bd28406a0fe4e8e530a2ca7cd1a --- /dev/null +++ b/source/designs/files/rkt/027792.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e601de714ef6d3152068ee16e0f4e46092e38b5c59ae99e8b2d2a7e2237cb78 +size 16176 diff --git a/source/designs/files/rkt/027793.rkt b/source/designs/files/rkt/027793.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6efe7f44b3fc5a34ca452b0c4ced779edbf99f80 --- /dev/null +++ b/source/designs/files/rkt/027793.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a06b7ce654db7fa00c15e61acea6da4b688880cd175887c816c9a964869c573f +size 26595 diff --git a/source/designs/files/rkt/027794.rkt b/source/designs/files/rkt/027794.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2e4fe2ab2f025198c71371be74d89168e2fb491c --- /dev/null +++ b/source/designs/files/rkt/027794.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:027cc336649d757e34c48ffcd2bf2456af3b6b8c3f4202aa7b4dee2e61082a09 +size 17627 diff --git a/source/designs/files/rkt/027795.rkt b/source/designs/files/rkt/027795.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5065e38d0ad68f2383f3483ed3a7c5d908171e1e --- /dev/null +++ b/source/designs/files/rkt/027795.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46d58fa3eea153e4f9201f60769b7c37392a4f2a86645df12a8db59c29e3e2da +size 27442 diff --git a/source/designs/files/rkt/027796.rkt b/source/designs/files/rkt/027796.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ec04675bcf0c204441f12026132a16c826cfad72 --- /dev/null +++ b/source/designs/files/rkt/027796.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a98b2d620afb44e303d6c0392aa91ec5a84b7f7510c83e5d0f644c2dacffdbb +size 23309 diff --git a/source/designs/files/rkt/027797.rkt b/source/designs/files/rkt/027797.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bf8c1cbc79ffdd5f3fd605030bfb9aa0f93213de --- /dev/null +++ b/source/designs/files/rkt/027797.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3ab476210a6d65a19c92dbb2fd9db513c984577027652d4469fd467753a687 +size 17681 diff --git a/source/designs/files/rkt/027798.rkt b/source/designs/files/rkt/027798.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6b9d7444ff94f17ce396f62542b8b24084f73de2 --- /dev/null +++ b/source/designs/files/rkt/027798.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:891c5e13eadda7e6ff3cc093242bb4250cb531e95120667280fc403736f77e59 +size 22671 diff --git a/source/designs/files/rkt/027833.rkt b/source/designs/files/rkt/027833.rkt new file mode 100644 index 0000000000000000000000000000000000000000..9bda8cde88e641ec88ccbb8f964648728fe25123 --- /dev/null +++ b/source/designs/files/rkt/027833.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85178bf810552f50245598c02b67a19fcc1d997e4e753d347daa636440719d2e +size 57138 diff --git a/source/designs/files/rkt/027834.rkt b/source/designs/files/rkt/027834.rkt new file mode 100644 index 0000000000000000000000000000000000000000..de9790cf5d5ff68077482613533bad83d9887389 --- /dev/null +++ b/source/designs/files/rkt/027834.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81110c32027df0a413d1035084ad2cb3811a6504863a69230a88bf4db6047f5 +size 49698 diff --git a/source/designs/files/rkt/027835.rkt b/source/designs/files/rkt/027835.rkt new file mode 100644 index 0000000000000000000000000000000000000000..63518c755b1d8bce9a15153760871ca480ff385c --- /dev/null +++ b/source/designs/files/rkt/027835.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668a420ce71cb4c8fae96eba7afa03e9aa021c9711628ff713eab91d8556fe48 +size 61541 diff --git a/source/designs/files/rkt/027860.rkt b/source/designs/files/rkt/027860.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6cce930fe3d26cd6a7918f96c74e8cb4738653ce --- /dev/null +++ b/source/designs/files/rkt/027860.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b9d2727be7e82c4b42efa8e9449a38a43df02f6a9150d528a961dc1d37adfb +size 51154 diff --git a/source/designs/files/rkt/027861.rkt b/source/designs/files/rkt/027861.rkt new file mode 100644 index 0000000000000000000000000000000000000000..afa83712b8bccec92b55400caf001a7619d89c10 --- /dev/null +++ b/source/designs/files/rkt/027861.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:271d6099e7f984005f332a6fa6fa5ea67fe49ec4fddd5a8522c5684c484a1ca3 +size 40723 diff --git a/source/designs/files/rkt/027865.rkt b/source/designs/files/rkt/027865.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c1357282e502072c6b013a21405320becec4689a --- /dev/null +++ b/source/designs/files/rkt/027865.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e6250253a52001b83594d8d0c10c90e53887ead13067a004c26751ede45dc04 +size 49206 diff --git a/source/designs/files/rkt/027868.rkt b/source/designs/files/rkt/027868.rkt new file mode 100644 index 0000000000000000000000000000000000000000..72592e354f4512a13a69b5f862f544fe1ac3db99 --- /dev/null +++ b/source/designs/files/rkt/027868.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa39af2af48b2f341e2fe6290598f20cd0bae4235eefa8bdfe36c9d88160a7d1 +size 90443 diff --git a/source/designs/files/rkt/027870.rkt b/source/designs/files/rkt/027870.rkt new file mode 100644 index 0000000000000000000000000000000000000000..901f4af4732465fecaf3673e12841c2484d0b46b --- /dev/null +++ b/source/designs/files/rkt/027870.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81fa0f733001dfcd7781c4d0b3b1e68db9ce60a3042cb62e8d36b8f432ab6784 +size 72002 diff --git a/source/designs/files/rkt/027872.rkt b/source/designs/files/rkt/027872.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2a032e02ded2f757c2ecbdd48398ddbc0899d7d6 --- /dev/null +++ b/source/designs/files/rkt/027872.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22a9678308140e2b15ee5f7d10708bb7c393940e6d8ebec44de2fafbaeb26d0 +size 62741 diff --git a/source/designs/files/rkt/027877.rkt b/source/designs/files/rkt/027877.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b236b775ea339dc1c1f96747c4c862c4020f1a37 --- /dev/null +++ b/source/designs/files/rkt/027877.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12db62b3cf0f781503532f825914a52cf078ebfc98f818a2b95b87298d4bae2c +size 163426 diff --git a/source/designs/files/rkt/027881.rkt b/source/designs/files/rkt/027881.rkt new file mode 100644 index 0000000000000000000000000000000000000000..be0f36a39da81bb303396c1fe153934358d908e4 --- /dev/null +++ b/source/designs/files/rkt/027881.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66c43ce221528e46f2d79e5db8823d4f148dd34104a2569e7e920dbdc25bb4b2 +size 38966 diff --git a/source/designs/files/rkt/027899.rkt b/source/designs/files/rkt/027899.rkt new file mode 100644 index 0000000000000000000000000000000000000000..38da1c4dde3c05ee98107e1726449ee78d7ae17e --- /dev/null +++ b/source/designs/files/rkt/027899.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fcf3aee24c79b1aaf98024f0f55457b16f1443a2ba4b69fbf974d383ce0a938 +size 94561 diff --git a/source/designs/files/rkt/027902.rkt b/source/designs/files/rkt/027902.rkt new file mode 100644 index 0000000000000000000000000000000000000000..016a7b12c78a2bc7d80479bece21f4f934d1cf8b --- /dev/null +++ b/source/designs/files/rkt/027902.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffbb592e2f017b8ec9ed562614a31031d3eb14a46bb89f7e1af83de58381c844 +size 144932 diff --git a/source/designs/files/rkt/027903.rkt b/source/designs/files/rkt/027903.rkt new file mode 100644 index 0000000000000000000000000000000000000000..044862d21c252f3a0de4fc45173eb5081f404737 --- /dev/null +++ b/source/designs/files/rkt/027903.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9f22321dc98444a66fa1dbf81047015a7e4b8a530cf079da322f3c2d042958 +size 28566 diff --git a/source/designs/files/rkt/027904.rkt b/source/designs/files/rkt/027904.rkt new file mode 100644 index 0000000000000000000000000000000000000000..99c1a50d6f7ec0e4e6c0be7a7fbd748a0f0aea4d --- /dev/null +++ b/source/designs/files/rkt/027904.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6bcd78a12bae16c3e5d3654a01ff573aa3b3cfe8b28b7779f597ef18680ebcf +size 30336 diff --git a/source/designs/files/rkt/032042.rkt b/source/designs/files/rkt/032042.rkt new file mode 100644 index 0000000000000000000000000000000000000000..df4c83cd591ed167a35472c93b270b871e9c268d --- /dev/null +++ b/source/designs/files/rkt/032042.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68a5b6134d58274a53a5ad46da722b5a14b5a177cf359c9c906e949427b244e +size 48208 diff --git a/source/designs/files/rkt/032825.rkt b/source/designs/files/rkt/032825.rkt new file mode 100644 index 0000000000000000000000000000000000000000..172ca97958f99de94d7185c094af201255e05e5f --- /dev/null +++ b/source/designs/files/rkt/032825.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b407122effcb5faaafd4197bb1fc83b8149f1af56cc06e17364520c610647d4e +size 154311 diff --git a/source/designs/files/rkt/033718.rkt b/source/designs/files/rkt/033718.rkt new file mode 100644 index 0000000000000000000000000000000000000000..18d2058e049a91d5768458ad15517c0812dd00f6 --- /dev/null +++ b/source/designs/files/rkt/033718.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e911bb6fadb43649fbf3ba36ff641999c21bf1377fc73f6cbb66a599e558ea +size 129878 diff --git a/source/designs/files/rkt/037600.rkt b/source/designs/files/rkt/037600.rkt new file mode 100644 index 0000000000000000000000000000000000000000..35739e7c331132c7d59f3e0a4a104466f8d62145 --- /dev/null +++ b/source/designs/files/rkt/037600.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed37880411567c16e5b957fe7c3a17a39a4d5b2e7873d2dd921215d1f0c05873 +size 100969 diff --git a/source/designs/files/rkt/037703.rkt b/source/designs/files/rkt/037703.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c4e4d931a373b286760f3036809cb695ad7dc12f --- /dev/null +++ b/source/designs/files/rkt/037703.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3279055144b3cf876e5b94dbe520636536b6a01bcf29d64389766937a6b3fee +size 38925 diff --git a/source/designs/files/rkt/037849.rkt b/source/designs/files/rkt/037849.rkt new file mode 100644 index 0000000000000000000000000000000000000000..528a95899fbed4b0ed3f5cc9c9c8558122482dae --- /dev/null +++ b/source/designs/files/rkt/037849.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82edcbf8ad98ab67df7b7573048df5be0da49c4a1dcd2be40caea04c5f30a1d5 +size 117722 diff --git a/source/designs/files/rkt/039309.rkt b/source/designs/files/rkt/039309.rkt new file mode 100644 index 0000000000000000000000000000000000000000..44cddc00bf6afc2008ed2bf693e9a342cfc98c45 --- /dev/null +++ b/source/designs/files/rkt/039309.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e23e11abc9c90b20c2d7d46ae4ae07355115201d0647044daff43c0b5c41ada5 +size 47107 diff --git a/source/designs/files/rkt/039468.rkt b/source/designs/files/rkt/039468.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8a1fc19f663bb70dba6d568200c97a0eca43d6fc --- /dev/null +++ b/source/designs/files/rkt/039468.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2bc98079738d8f9a94142cf1771281d520bb730276e4be70f34f2f5b1e9368a +size 99487 diff --git a/source/designs/files/rkt/044223.rkt b/source/designs/files/rkt/044223.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5574779c7f1920176b6c76e5b9d0703da3837728 --- /dev/null +++ b/source/designs/files/rkt/044223.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ae122cc5f1107283c23995791d1da8527c2a8e90ac7fa7ebca38d53eb7cb94 +size 79779 diff --git a/source/designs/files/rkt/047111.rkt b/source/designs/files/rkt/047111.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f754b1b26f40ab8cea6ddec660f9a217d276cf34 --- /dev/null +++ b/source/designs/files/rkt/047111.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae66c092d95e2081b8c52e6b04edf5b7b1f864331ed9674c608d09d9c7f0ac6f +size 73272 diff --git a/source/designs/files/rkt/047641.rkt b/source/designs/files/rkt/047641.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ebd2a6383d892fabda77554466dd3459b8830de3 --- /dev/null +++ b/source/designs/files/rkt/047641.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146fafaade981425ac8b686443932657865779b3bd814338923e323f516a716c +size 129186 diff --git a/source/designs/files/rkt/058135.rkt b/source/designs/files/rkt/058135.rkt new file mode 100644 index 0000000000000000000000000000000000000000..edeeada36e53c79c74899176fc20a2ec933696da --- /dev/null +++ b/source/designs/files/rkt/058135.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22719770a93388b5c0f3bec7e4947bd944770cc468969da7d85492987119e599 +size 140800 diff --git a/source/designs/files/rkt/062109.rkt b/source/designs/files/rkt/062109.rkt new file mode 100644 index 0000000000000000000000000000000000000000..3034713dec62badd34aafc970e3f8e503c8ce190 --- /dev/null +++ b/source/designs/files/rkt/062109.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a834011049481706933f40ee34f8bbd69641ac4f8b239202319c9b384cb9be4 +size 91145 diff --git a/source/designs/files/rkt/068515.rkt b/source/designs/files/rkt/068515.rkt new file mode 100644 index 0000000000000000000000000000000000000000..579b6d9d2f612e70d3dc5cda599e8db2d2227e94 --- /dev/null +++ b/source/designs/files/rkt/068515.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd8212e7494c70c23394a7cb82dbecd786dff8deb3a7de72d24a95de0e19d38d +size 37795 diff --git a/source/designs/files/rkt/070023.rkt b/source/designs/files/rkt/070023.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cfdd404db597294d0027a37654a2dc47c92f841b --- /dev/null +++ b/source/designs/files/rkt/070023.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744b29b18da9ee0c24bae41d311bb4a28cf531df4f9cb4e2da4f933863e42f9e +size 46592 diff --git a/source/designs/files/rkt/087150.rkt b/source/designs/files/rkt/087150.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c7239c8f07526127087e43de6a77581f62f15d83 --- /dev/null +++ b/source/designs/files/rkt/087150.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fded6378fb069839fcb445ea072a35e0861a0c289911660692cda3bc26f0bc3 +size 23400 diff --git a/source/designs/files/rkt/087764.rkt b/source/designs/files/rkt/087764.rkt new file mode 100644 index 0000000000000000000000000000000000000000..611a176a55fe9c59e49a6b2be3b5fdc354e0ca35 --- /dev/null +++ b/source/designs/files/rkt/087764.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6501d0d09b3ca485e7b4ae40e9bfef2e53982e085318a6b20f17b0cfb11c1374 +size 59494 diff --git a/source/designs/files/rkt/090110.rkt b/source/designs/files/rkt/090110.rkt new file mode 100644 index 0000000000000000000000000000000000000000..90f6b38b1f8109deaff4be15ea3ed8ff831073f0 --- /dev/null +++ b/source/designs/files/rkt/090110.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c3e61fb3d46d9fc420ef839e61f87e37f5787a5443ac01cdfd1ab8ce51b336 +size 520348 diff --git a/source/designs/files/rkt/090112.rkt b/source/designs/files/rkt/090112.rkt new file mode 100644 index 0000000000000000000000000000000000000000..302abe59ff6008ac821662541150eb6b14127ae6 --- /dev/null +++ b/source/designs/files/rkt/090112.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4331280fce4061332d99998e9ab10fa8991e44e62a6b71cf8f55c1ddbc693e40 +size 220202 diff --git a/source/designs/files/rkt/090115.rkt b/source/designs/files/rkt/090115.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bff10851df5b7d99ec63f089b630aba2551726be --- /dev/null +++ b/source/designs/files/rkt/090115.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e18e87d7cbf120ab317e6becb2b0aaad657d0588775c0b9b6a3f240fb1add85 +size 86135 diff --git a/source/designs/files/rkt/091086.rkt b/source/designs/files/rkt/091086.rkt new file mode 100644 index 0000000000000000000000000000000000000000..15f0c0e9478b6e3db1d39d7530054dda33fa985e --- /dev/null +++ b/source/designs/files/rkt/091086.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a351b0a9625016b33c9b9f01c17cc534c6f8285b3c3231c5b813c14de6e1d563 +size 285145 diff --git a/source/designs/files/rkt/091388.rkt b/source/designs/files/rkt/091388.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c678d85e14a49feb64c3d6f75481518bf92c7e05 --- /dev/null +++ b/source/designs/files/rkt/091388.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df3d679bdc1c0fab6be84c421fb49764c511787e2c9f747c6d740718cb2cfd9 +size 64770 diff --git a/source/designs/files/rkt/1015922.rkt b/source/designs/files/rkt/1015922.rkt new file mode 100644 index 0000000000000000000000000000000000000000..39151b7fef46250f4f84283b451d4b4b3c637603 --- /dev/null +++ b/source/designs/files/rkt/1015922.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a0866c593bbe831ebc886d2070d654b1492abfd99402a70b213764fc0278e4 +size 27251 diff --git a/source/designs/files/rkt/1017010.rkt b/source/designs/files/rkt/1017010.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8cfc68a55314eb5dfb58d695dadd160cd41f0e28 --- /dev/null +++ b/source/designs/files/rkt/1017010.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b127f3400325b67badca753a0dc92169ab4de3f3d107e84979bad5502bb471d +size 127172 diff --git a/source/designs/files/rkt/1017316.rkt b/source/designs/files/rkt/1017316.rkt new file mode 100644 index 0000000000000000000000000000000000000000..98a450ab003f398240df3f0e6b7ee40e9f3eb3e7 --- /dev/null +++ b/source/designs/files/rkt/1017316.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2759b7e9f6227ad02fed1a34f89e9e868a341f52649fea06ba60703c1ed99ade +size 47926 diff --git a/source/designs/files/rkt/1017367.rkt b/source/designs/files/rkt/1017367.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c49eb83e79289fb642e9b45267273c334de94e08 --- /dev/null +++ b/source/designs/files/rkt/1017367.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a184bc0da358fd63284964ae163719c5e2c0a82738a7c1183965ef5833dc442f +size 25945 diff --git a/source/designs/files/rkt/1018770.rkt b/source/designs/files/rkt/1018770.rkt new file mode 100644 index 0000000000000000000000000000000000000000..469b02705b3cae45a01b598c58306e27166b357e --- /dev/null +++ b/source/designs/files/rkt/1018770.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3119ae873f64238d64289df22ba6b7b4c8233ff1fdd8f021c4cb7a577b53c5f6 +size 20975 diff --git a/source/designs/files/rkt/1021240.rkt b/source/designs/files/rkt/1021240.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b86605292cbf23180d257d76dd1dfe19768da015 --- /dev/null +++ b/source/designs/files/rkt/1021240.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5047086e61ad35342ba0e7b611bd8eee25de7c6cc90616b766a2357799cba46c +size 31682 diff --git a/source/designs/files/rkt/1030959.rkt b/source/designs/files/rkt/1030959.rkt new file mode 100644 index 0000000000000000000000000000000000000000..527c9009456d2367d8fc6f110eb3d45ebfb3bca7 --- /dev/null +++ b/source/designs/files/rkt/1030959.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f02e5e369438f5cfa6d899bb20eeffcc6f32b4ebf54f2edbcc975a076d1d15b +size 156214 diff --git a/source/designs/files/rkt/1032566.rkt b/source/designs/files/rkt/1032566.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0530f8cf3b78ea604deeba0c5c65b913bc8ad28e --- /dev/null +++ b/source/designs/files/rkt/1032566.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b42e431b71123abc52e3b2251c0caa3a9f973f3aef3afd5255dbac277396b96d +size 151876 diff --git a/source/designs/files/rkt/1033356.rkt b/source/designs/files/rkt/1033356.rkt new file mode 100644 index 0000000000000000000000000000000000000000..254b23add2108043452aaed4e829eee77125fabd --- /dev/null +++ b/source/designs/files/rkt/1033356.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d7b94e450e6e41aa5f9e1241628da2028c8f9e6a755ec997bbbd8321eda9fd6 +size 188558 diff --git a/source/designs/files/rkt/1033360.rkt b/source/designs/files/rkt/1033360.rkt new file mode 100644 index 0000000000000000000000000000000000000000..918dd2b0fb91e7f0a30c9d610e16068abeb6d6c7 --- /dev/null +++ b/source/designs/files/rkt/1033360.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ebc0e8cbccd214541595ceff1099d102641a73d1097401176c3fbd21891917 +size 202645 diff --git a/source/designs/files/rkt/1033361.rkt b/source/designs/files/rkt/1033361.rkt new file mode 100644 index 0000000000000000000000000000000000000000..ff622890cfcdc1715991225c47410e65339704b9 --- /dev/null +++ b/source/designs/files/rkt/1033361.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005e3961fb7104f6c8e7295e9f574c32e7dbcb7debf99a5d5aba822ca58c4761 +size 83716 diff --git a/source/designs/files/rkt/1034015.rkt b/source/designs/files/rkt/1034015.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d255224b31fc902390c83489009eb567a3e2b4c2 --- /dev/null +++ b/source/designs/files/rkt/1034015.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc371d5a0faa2301d859135cb1e214c2b67cecfd3c0c00671016b8f3ec2524e +size 76952 diff --git a/source/designs/files/rkt/1034016.rkt b/source/designs/files/rkt/1034016.rkt new file mode 100644 index 0000000000000000000000000000000000000000..45585856752765feec400d82a628e560319e2c39 --- /dev/null +++ b/source/designs/files/rkt/1034016.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a3fc4af206dabdee75a4796144971a4084df35ff9f60fb37f3b0e406d483ab +size 90889 diff --git a/source/designs/files/rkt/1034490.rkt b/source/designs/files/rkt/1034490.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bc344ec16eb4f9cd7fdf2e1395fc6e96cb53100b --- /dev/null +++ b/source/designs/files/rkt/1034490.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2494ee815e67f8cb54c762b994ea8fe55bb51637af6281445e79814802ba96c1 +size 118393 diff --git a/source/designs/files/rkt/1034849.rkt b/source/designs/files/rkt/1034849.rkt new file mode 100644 index 0000000000000000000000000000000000000000..07bf2bb898f38c95d465886ded3c17f4c231ac07 --- /dev/null +++ b/source/designs/files/rkt/1034849.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b763253f44c8490a97ccd987e61cb8c01fc45e647b68ff3bf5a935d53b9e248 +size 855006 diff --git a/source/designs/files/rkt/1036541.rkt b/source/designs/files/rkt/1036541.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2e98d1f794a11a75c08f85d2c73d718779aae004 --- /dev/null +++ b/source/designs/files/rkt/1036541.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60eec5c5bd0b5d1e66d7460a48fa272d27c50ea262a2c1ac4932352b8909de63 +size 107283 diff --git a/source/designs/files/rkt/1042033.rkt b/source/designs/files/rkt/1042033.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d711c38d21113e6a791dfd887264354e8b097f98 --- /dev/null +++ b/source/designs/files/rkt/1042033.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b896e35c03c4400c39bf6b5b2ee22dce49a4ca8df295f44e9d5c010bfc635eae +size 72498 diff --git a/source/designs/files/rkt/1046466.rkt b/source/designs/files/rkt/1046466.rkt new file mode 100644 index 0000000000000000000000000000000000000000..961d520fafe431224176c7674ca4a33f7d38db9a --- /dev/null +++ b/source/designs/files/rkt/1046466.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf61f0fa9fb9a3cc790a53fbd3d06c6d3f1ef055b127c8590ac0908cef7b658 +size 44080 diff --git a/source/designs/files/rkt/1046467.rkt b/source/designs/files/rkt/1046467.rkt new file mode 100644 index 0000000000000000000000000000000000000000..961d520fafe431224176c7674ca4a33f7d38db9a --- /dev/null +++ b/source/designs/files/rkt/1046467.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbf61f0fa9fb9a3cc790a53fbd3d06c6d3f1ef055b127c8590ac0908cef7b658 +size 44080 diff --git a/source/designs/files/rkt/1046468.rkt b/source/designs/files/rkt/1046468.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4b819cdf4f7a504a5591f83ab48da37a74e652bc --- /dev/null +++ b/source/designs/files/rkt/1046468.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc33a88b1d1eb239966b3f5e54c8a0ec2adc22fbe38c9e2b85c6c8f307f3e0e +size 48854 diff --git a/source/designs/files/rkt/1047180.rkt b/source/designs/files/rkt/1047180.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a8b5c6c74e3abc1f7b0f47d6b52a1a6ddd99ee4d --- /dev/null +++ b/source/designs/files/rkt/1047180.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a564eef4922c4eebd4c24065233179484d7747700f100f2171be258e47fc8342 +size 131013 diff --git a/source/designs/files/rkt/1050997.rkt b/source/designs/files/rkt/1050997.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0e290034a39d07bc83906740d5744245d3f6f7c3 --- /dev/null +++ b/source/designs/files/rkt/1050997.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb556e5028b948eba3aea25cdc4a24423c3a0228a0ecdbe89481cbba8e1513e1 +size 93070 diff --git a/source/designs/files/rkt/1050998.rkt b/source/designs/files/rkt/1050998.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8e47204741d51015c4021436a02ff5dd6306d039 --- /dev/null +++ b/source/designs/files/rkt/1050998.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c2fd3d77dd74b30569fa4b9d0f745bf3b9ad553377fb0f57ef2fdbe905420f +size 88156 diff --git a/source/designs/files/rkt/1057357.rkt b/source/designs/files/rkt/1057357.rkt new file mode 100644 index 0000000000000000000000000000000000000000..140c95ff0d9e82365cfaad492cb911e22f241436 --- /dev/null +++ b/source/designs/files/rkt/1057357.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:236d5bbd0adf0c619576c3c10cc56d1e102c15778de0dc52be5ed6be468267f6 +size 110100 diff --git a/source/designs/files/rkt/1058300.rkt b/source/designs/files/rkt/1058300.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8985dc2c8d5331a89e2d587e6cbe19af3bcd4234 --- /dev/null +++ b/source/designs/files/rkt/1058300.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddff1d1ddbe1342547ddb6e920e9982ff64b799e0f62badcd8b3c80016b4f25f +size 96437 diff --git a/source/designs/files/rkt/1061029.rkt b/source/designs/files/rkt/1061029.rkt new file mode 100644 index 0000000000000000000000000000000000000000..603af7fc89fcc43ea456528fe58cc22a4647184f --- /dev/null +++ b/source/designs/files/rkt/1061029.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa80f00811ed3e4dcd7c2436117d3b0e5c8ed4ebe3377b6c34feeba404ebef26 +size 104019 diff --git a/source/designs/files/rkt/107008.rkt b/source/designs/files/rkt/107008.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4ab5cd0ee27d3fbf8f33254ef6349b807f155169 --- /dev/null +++ b/source/designs/files/rkt/107008.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7b40fe8fca85134e7bd33ee4c6f51127da16268fb388187b9a41b982ed7576f +size 84885 diff --git a/source/designs/files/rkt/1074151.rkt b/source/designs/files/rkt/1074151.rkt new file mode 100644 index 0000000000000000000000000000000000000000..951f8fb43425153b76cbeef36b0b38c58d1a8d6b --- /dev/null +++ b/source/designs/files/rkt/1074151.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39fb33dd24fe4178436686779e70b76c548b034c5ba4a3521877413736a0a895 +size 104408 diff --git a/source/designs/files/rkt/1081527.rkt b/source/designs/files/rkt/1081527.rkt new file mode 100644 index 0000000000000000000000000000000000000000..2d3a201a132b4bd1d71d1b085119f0e3a5d41050 --- /dev/null +++ b/source/designs/files/rkt/1081527.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff0c271ae7e866a1f8481a2ef7818167224cf49eecd1c2d6462a7c91f3d1612 +size 29165 diff --git a/source/designs/files/rkt/1084467.rkt b/source/designs/files/rkt/1084467.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cada47cdd5f9beef1a9c280d2fdab206d14bba24 --- /dev/null +++ b/source/designs/files/rkt/1084467.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f98b4d05e3e24ba65bc7ac539294a482cfd00c9b3c5d79971a00fc17d8a39feb +size 71357 diff --git a/source/designs/files/rkt/1090152.rkt b/source/designs/files/rkt/1090152.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d42bbced8a16957fb0e21b3325addb80c1eafd94 --- /dev/null +++ b/source/designs/files/rkt/1090152.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349c95578f64bdf77c64ddbc6ea709d31c2bb02f66a8c4b3173d0d9b25976361 +size 85223 diff --git a/source/designs/files/rkt/1090153.rkt b/source/designs/files/rkt/1090153.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1b968f408ef07dbde9b0a0f514985a762888e298 --- /dev/null +++ b/source/designs/files/rkt/1090153.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:015facdfc9a7fe56f43841c00bfe1a0ced2189b266081c46de86eaed1d64c261 +size 126457 diff --git a/source/designs/files/rkt/1106588.rkt b/source/designs/files/rkt/1106588.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a5fd22fb7cfe63d5b8e64cfc6b8c096e24fa2dde --- /dev/null +++ b/source/designs/files/rkt/1106588.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f9f268e8878620a07c8c2714b9b53fb8ed5fc237efcc8ef5e72891a67be4be +size 407754 diff --git a/source/designs/files/rkt/114031.rkt b/source/designs/files/rkt/114031.rkt new file mode 100644 index 0000000000000000000000000000000000000000..12dd24e63afb1a91939b369f5198efd2503e7347 --- /dev/null +++ b/source/designs/files/rkt/114031.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7931df6fb3385162ddbcb11b57c3392d40a26c8bc7dcd5abec62889c6bfa9395 +size 125820 diff --git a/source/designs/files/rkt/115772.rkt b/source/designs/files/rkt/115772.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4e904e893469b12119f4bce742e99030b4db528e --- /dev/null +++ b/source/designs/files/rkt/115772.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae56ef6a1efc4d255f148023d860fa6fd0b78a7e5e8d925773e93299a370488c +size 183993 diff --git a/source/designs/files/rkt/117038.rkt b/source/designs/files/rkt/117038.rkt new file mode 100644 index 0000000000000000000000000000000000000000..4f061d4461e1f45fa8ec3c8d6bf6fd6a3427b1c8 --- /dev/null +++ b/source/designs/files/rkt/117038.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cad4da02ae4c09aa2d1a102b381b4e1769ae32d4481f1e01f4bde3a130d6dd +size 72235 diff --git a/source/designs/files/rkt/122053.rkt b/source/designs/files/rkt/122053.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5d91139bf53308cbd110a1e1056869a481e6266b --- /dev/null +++ b/source/designs/files/rkt/122053.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b701b66ab050c269e5bf539019adac5566d57ed6b5bd3b28d21528b44ccea65 +size 41905 diff --git a/source/designs/files/rkt/130617.rkt b/source/designs/files/rkt/130617.rkt new file mode 100644 index 0000000000000000000000000000000000000000..08f203b712449095935b40d390ed1cb17b107bef --- /dev/null +++ b/source/designs/files/rkt/130617.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cdf065122c0eb20e99811634637164d05bccf8e9bbc4214d05c3299f3de7555 +size 74936 diff --git a/source/designs/files/rkt/132626.rkt b/source/designs/files/rkt/132626.rkt new file mode 100644 index 0000000000000000000000000000000000000000..873a55bc7bf8d12687755eaddd7b2a3b28f5f9e7 --- /dev/null +++ b/source/designs/files/rkt/132626.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91075f0412848f57c11397b4b7dc3a72dfa4e45e0ab341a6a651943a2a0b0b87 +size 74777 diff --git a/source/designs/files/rkt/148705.rkt b/source/designs/files/rkt/148705.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d4a8de4dd49fb0828aa4555a64c6914da68799c7 --- /dev/null +++ b/source/designs/files/rkt/148705.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04a8ef796e82edfac21707f7a48823e5ba979c55be02ad691467297471a09ac +size 13008 diff --git a/source/designs/files/rkt/152168.rkt b/source/designs/files/rkt/152168.rkt new file mode 100644 index 0000000000000000000000000000000000000000..8262dc9337db934d40296fa6baed5fa3fdcf5927 --- /dev/null +++ b/source/designs/files/rkt/152168.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d00b40c168069c2796c254db5afc730e5e5c23930cae6e41e4407d69ebd6af9 +size 35541 diff --git a/source/designs/files/rkt/161423.rkt b/source/designs/files/rkt/161423.rkt new file mode 100644 index 0000000000000000000000000000000000000000..13412e6c46cf277ef66f634553714ed47708e4a6 --- /dev/null +++ b/source/designs/files/rkt/161423.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5616183cc9197c70ef5b6c3db7bbb17fb51bbeabb67d19c72d64869666795767 +size 82203 diff --git a/source/designs/files/rkt/167073.rkt b/source/designs/files/rkt/167073.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d7eb63fa53a0a5875ad04b2a8ff6ac9cf2ed7c4d --- /dev/null +++ b/source/designs/files/rkt/167073.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e6ab0274fa5adbe89f094775ef5a193476a80638eb8e3491f82ae2209e7d6f +size 114328 diff --git a/source/designs/files/rkt/172285.rkt b/source/designs/files/rkt/172285.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7b26d3733040c8c1951dea1f2fb930f62009332a --- /dev/null +++ b/source/designs/files/rkt/172285.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:453ce4c9ac8080d7a2ff2f6bd21b0104399a95bcbd7b5d92c15ca9f1ee868515 +size 370436 diff --git a/source/designs/files/rkt/173945.rkt b/source/designs/files/rkt/173945.rkt new file mode 100644 index 0000000000000000000000000000000000000000..09595ac7e60e161a5adb7a040e2df09f97ec3573 --- /dev/null +++ b/source/designs/files/rkt/173945.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18e49ecd0706f59a472fcdfd44805765e57fa0bf7bdeaa0f5abac89eb2f6ace0 +size 222585 diff --git a/source/designs/files/rkt/179573.rkt b/source/designs/files/rkt/179573.rkt new file mode 100644 index 0000000000000000000000000000000000000000..97eee05e2733961b0d14f38f94301a20b7296608 --- /dev/null +++ b/source/designs/files/rkt/179573.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82027cbda4ab7d8719a61e9c5d45f5f8951a4d41d3c2beffd741787c6bebc1a1 +size 102707 diff --git a/source/designs/files/rkt/189119.rkt b/source/designs/files/rkt/189119.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5d96c007fd13815397e88903b3d5b0fd3241a0ab --- /dev/null +++ b/source/designs/files/rkt/189119.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c45c5ef123207b8999e8e69bb8ffb4f955e8bdc8e1dbb9dcb7d9e6bd83c1ed8 +size 84643 diff --git a/source/designs/files/rkt/190282.rkt b/source/designs/files/rkt/190282.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c7b5864c874aab39e9e8d5eec5129716605713cc --- /dev/null +++ b/source/designs/files/rkt/190282.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b3f55fb89f6f6104488e0e5232d4e975e05375900ce3919329729c6a132eebb +size 123401 diff --git a/source/designs/files/rkt/190308.rkt b/source/designs/files/rkt/190308.rkt new file mode 100644 index 0000000000000000000000000000000000000000..cae4f47eb7cf861f3806e5032fcdfe3be3a6749a --- /dev/null +++ b/source/designs/files/rkt/190308.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702b68f3d3f6fd9d047417bbc83777860ae0994268eeecfe9709447565b0267e +size 23602 diff --git a/source/designs/files/rkt/191047.rkt b/source/designs/files/rkt/191047.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bb42446957a5ecd1d4b321e43ec7ebb5d29f6ac6 --- /dev/null +++ b/source/designs/files/rkt/191047.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b05266d0be9a883838573b09b3619a530de621ba0a3e9039f94363a944359a75 +size 60980 diff --git a/source/designs/files/rkt/191048.rkt b/source/designs/files/rkt/191048.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0584b1b6bf629143252e8dca405294301684a37a --- /dev/null +++ b/source/designs/files/rkt/191048.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a544992583e353603563dea1105f6bde5aafbe7ce77afb7c22c5794e26ae16 +size 60946 diff --git a/source/designs/files/rkt/196638.rkt b/source/designs/files/rkt/196638.rkt new file mode 100644 index 0000000000000000000000000000000000000000..00dc43d8df247f8f608fe8eb73b1a76f899591e8 --- /dev/null +++ b/source/designs/files/rkt/196638.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2402b1e1da9e1af507d4d7c293747adc9eae26d68740f14303e98e47b834a778 +size 97258 diff --git a/source/designs/files/rkt/197092.rkt b/source/designs/files/rkt/197092.rkt new file mode 100644 index 0000000000000000000000000000000000000000..e895378d7196cb04235686eae66047617b1c0864 --- /dev/null +++ b/source/designs/files/rkt/197092.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5644847bc45448bc24a50570449d300aa2c6013fd094946511b9cd7cd88a4bb2 +size 57262 diff --git a/source/designs/files/rkt/203607.rkt b/source/designs/files/rkt/203607.rkt new file mode 100644 index 0000000000000000000000000000000000000000..64c7a385b6921a987d007b15a02f045f0e887f05 --- /dev/null +++ b/source/designs/files/rkt/203607.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c93b0d1572aa93405e766a85209f7e951d7646be9e263ebf83b3f371b465470 +size 167605 diff --git a/source/designs/files/rkt/206474.rkt b/source/designs/files/rkt/206474.rkt new file mode 100644 index 0000000000000000000000000000000000000000..b90dc77d2521e8f3711ae8a529d1478f8d4bc475 --- /dev/null +++ b/source/designs/files/rkt/206474.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa87d9fe29d1bd2b58367d1a0585c98cf7b8bd07eacded7283a1953ef0b23f05 +size 47870 diff --git a/source/designs/files/rkt/206477.rkt b/source/designs/files/rkt/206477.rkt new file mode 100644 index 0000000000000000000000000000000000000000..72aaec97daa5638ba8dc82bc71ea67966af00c75 --- /dev/null +++ b/source/designs/files/rkt/206477.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74fd96b44ff0a43e38e95d998137dbe4be08e9238cbf6f01780cc1894756ae6 +size 90871 diff --git a/source/designs/files/rkt/207016.rkt b/source/designs/files/rkt/207016.rkt new file mode 100644 index 0000000000000000000000000000000000000000..1880adb0f1226975f42952f57bf436af045f466f --- /dev/null +++ b/source/designs/files/rkt/207016.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23a38c944ecdabab1d6bbd26eed79cb0aea426cfc9f24e83652f8068fb79d3a +size 119571 diff --git a/source/designs/files/rkt/207017.rkt b/source/designs/files/rkt/207017.rkt new file mode 100644 index 0000000000000000000000000000000000000000..0e3c3980c1ee24df26be622589f114c231996f95 --- /dev/null +++ b/source/designs/files/rkt/207017.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23d4369b24649bf1b93e28f415bc9ae7bad003d9b01c2407c3db3af94dd6dc88 +size 101181 diff --git a/source/designs/files/rkt/207020.rkt b/source/designs/files/rkt/207020.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c1388d196821d218fe51ad658560ff626a7f737d --- /dev/null +++ b/source/designs/files/rkt/207020.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cddf4d2520617e36b1192c2a39ded08904e5fcf9ba2942613fab3e29211477c +size 119544 diff --git a/source/designs/files/rkt/207021.rkt b/source/designs/files/rkt/207021.rkt new file mode 100644 index 0000000000000000000000000000000000000000..7a37fcb8ca57b9160153afa22cc0f8f9dc703b28 --- /dev/null +++ b/source/designs/files/rkt/207021.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02ed99e9b995b5a56a0964a1e03baccc0fd7dff090a4262a2ccf79266edc569 +size 64035 diff --git a/source/designs/files/rkt/207022.rkt b/source/designs/files/rkt/207022.rkt new file mode 100644 index 0000000000000000000000000000000000000000..93b368a50289355ea44d1c08386fdbc4976efbd3 --- /dev/null +++ b/source/designs/files/rkt/207022.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:511311a39e37e989e3bc55c31f1830517ea07b627bd009a1538c1193b693bcc7 +size 51550 diff --git a/source/designs/files/rkt/208424.rkt b/source/designs/files/rkt/208424.rkt new file mode 100644 index 0000000000000000000000000000000000000000..d3c8d20e0ebc0767f11998c6f1c73cae2389bf96 --- /dev/null +++ b/source/designs/files/rkt/208424.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:447ec7b7507b928b22f3e36f2b60cc623c9f1c8ed5b0d7862b0143d74d525d8e +size 108857 diff --git a/source/designs/files/rkt/210137.rkt b/source/designs/files/rkt/210137.rkt new file mode 100644 index 0000000000000000000000000000000000000000..f7a1bd77a5dacde9b701a91f46cfbc5b4dd2d7e5 --- /dev/null +++ b/source/designs/files/rkt/210137.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:278f19551af7864c8bd7cfe6b3886c37ced1855c4af519f8921ebf5524a57337 +size 110316 diff --git a/source/designs/files/rkt/211037.rkt b/source/designs/files/rkt/211037.rkt new file mode 100644 index 0000000000000000000000000000000000000000..aed8124b30502af53f20c10d86da09b01365c858 --- /dev/null +++ b/source/designs/files/rkt/211037.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1880c3ced0b8c1aa2a0367612cb6211c4536446a6f877d11009c105d5becdf4f +size 56250 diff --git a/source/designs/files/rkt/220509.rkt b/source/designs/files/rkt/220509.rkt new file mode 100644 index 0000000000000000000000000000000000000000..eb3d11daf8739b3b705e9a53cbad4687cc774bd7 --- /dev/null +++ b/source/designs/files/rkt/220509.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eda8f8df1da8829767d70b70fd87fc138755fc62c96670bd98d7556bbb069408 +size 84623 diff --git a/source/designs/files/rkt/711922.rkt b/source/designs/files/rkt/711922.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5e018383b468f0d65fb2c016ec4462059c3596c2 --- /dev/null +++ b/source/designs/files/rkt/711922.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44fccc75996d9c66c65f0a90fd4a0469036269974c0daaee3912fb1d15f8abba +size 95582 diff --git a/source/designs/files/rkt/844396.rkt b/source/designs/files/rkt/844396.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6191708721c9ee13ad9d1405c0023a1aa7c78061 --- /dev/null +++ b/source/designs/files/rkt/844396.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec43ed0dbfa78a4625bf3180bdeaa2b26f19d9f6ce13a616609309d00953b5d +size 89270 diff --git a/source/designs/files/rkt/844420.rkt b/source/designs/files/rkt/844420.rkt new file mode 100644 index 0000000000000000000000000000000000000000..bc759313b67d5268ded0aa22e2b2099b1579dc12 --- /dev/null +++ b/source/designs/files/rkt/844420.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f93e25d36963bcd303bfc766e9bf39d2583f5385ef4c3c1d5389eeca4ef99bf +size 45955 diff --git a/source/designs/files/rkt/852999.rkt b/source/designs/files/rkt/852999.rkt new file mode 100644 index 0000000000000000000000000000000000000000..a6853ea21b3f10fea06d105dc4e46508194d331f --- /dev/null +++ b/source/designs/files/rkt/852999.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2967b177e131d0ae37f447c111016f1ab9012449271b0f2c3a685b7326505433 +size 98049 diff --git a/source/designs/files/rkt/896368.rkt b/source/designs/files/rkt/896368.rkt new file mode 100644 index 0000000000000000000000000000000000000000..6f614b35c2d0c4b1f7a21c7b3d0461710d8e3150 --- /dev/null +++ b/source/designs/files/rkt/896368.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55da4b2fa6d499843aadcb25fe21b5c23937ef3adaaeee6af79ba9f6f240c3fd +size 58927 diff --git a/source/designs/files/rkt/909162.rkt b/source/designs/files/rkt/909162.rkt new file mode 100644 index 0000000000000000000000000000000000000000..41d36bf53626558a12f04b5f5feefe8ffe6b8119 --- /dev/null +++ b/source/designs/files/rkt/909162.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8811e4e7a568bcbe076118f8d6a9858746a728b73997e8761603d39c3024e3ef +size 19830 diff --git a/source/designs/files/rkt/910865.rkt b/source/designs/files/rkt/910865.rkt new file mode 100644 index 0000000000000000000000000000000000000000..de70158ebd91de52929fa3a94d2cf44b35659e2c --- /dev/null +++ b/source/designs/files/rkt/910865.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eef319f1e4a12edad65beb8cb64d71b3aa1ccc513caf7ef4d6691f86c9f2c84c +size 58915 diff --git a/source/designs/files/rkt/930580.rkt b/source/designs/files/rkt/930580.rkt new file mode 100644 index 0000000000000000000000000000000000000000..c833802f529f1206f2f2d947a2f5cfa1a2194eae --- /dev/null +++ b/source/designs/files/rkt/930580.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60094ea157bfe9062daf8c19d7247f6a61f29d6a300dc2c4e8c1ad2271596b7b +size 94013 diff --git a/source/designs/files/rkt/940761.rkt b/source/designs/files/rkt/940761.rkt new file mode 100644 index 0000000000000000000000000000000000000000..5493c9ca5248584363832b6800d05614aff4d372 --- /dev/null +++ b/source/designs/files/rkt/940761.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97102b642cc3133288613416518392a97979e3e288d91c7b995d2c4db59fc657 +size 76498 diff --git a/source/designs/files/rkt/955792.rkt b/source/designs/files/rkt/955792.rkt new file mode 100644 index 0000000000000000000000000000000000000000..913a076ed3274627836c4059039976537eced372 --- /dev/null +++ b/source/designs/files/rkt/955792.rkt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f80ad32bb649f6dd05a634a50fa5d5cee95f15171d12d5fe154962fbddfbbe +size 102000 diff --git a/source/flights/detail/018466.json b/source/flights/detail/018/018466.json similarity index 100% rename from source/flights/detail/018466.json rename to source/flights/detail/018/018466.json diff --git a/source/flights/detail/019175.json b/source/flights/detail/019/019175.json similarity index 100% rename from source/flights/detail/019175.json rename to source/flights/detail/019/019175.json diff --git a/source/flights/detail/019177.json b/source/flights/detail/019/019177.json similarity index 100% rename from source/flights/detail/019177.json rename to source/flights/detail/019/019177.json diff --git a/source/flights/detail/019179.json b/source/flights/detail/019/019179.json similarity index 100% rename from source/flights/detail/019179.json rename to source/flights/detail/019/019179.json diff --git a/source/flights/detail/019194.json b/source/flights/detail/019/019194.json similarity index 100% rename from source/flights/detail/019194.json rename to source/flights/detail/019/019194.json diff --git a/source/flights/detail/019195.json b/source/flights/detail/019/019195.json similarity index 100% rename from source/flights/detail/019195.json rename to source/flights/detail/019/019195.json diff --git a/source/flights/detail/019197.json b/source/flights/detail/019/019197.json similarity index 100% rename from source/flights/detail/019197.json rename to source/flights/detail/019/019197.json diff --git a/source/flights/detail/019240.json b/source/flights/detail/019/019240.json similarity index 100% rename from source/flights/detail/019240.json rename to source/flights/detail/019/019240.json diff --git a/source/flights/detail/019241.json b/source/flights/detail/019/019241.json similarity index 100% rename from source/flights/detail/019241.json rename to source/flights/detail/019/019241.json diff --git a/source/flights/detail/019271.json b/source/flights/detail/019/019271.json similarity index 100% rename from source/flights/detail/019271.json rename to source/flights/detail/019/019271.json diff --git a/source/flights/detail/019274.json b/source/flights/detail/019/019274.json similarity index 100% rename from source/flights/detail/019274.json rename to source/flights/detail/019/019274.json diff --git a/source/flights/detail/019277.json b/source/flights/detail/019/019277.json similarity index 100% rename from source/flights/detail/019277.json rename to source/flights/detail/019/019277.json diff --git a/source/flights/detail/019284.json b/source/flights/detail/019/019284.json similarity index 100% rename from source/flights/detail/019284.json rename to source/flights/detail/019/019284.json diff --git a/source/flights/detail/019291.json b/source/flights/detail/019/019291.json similarity index 100% rename from source/flights/detail/019291.json rename to source/flights/detail/019/019291.json diff --git a/source/flights/detail/019293.json b/source/flights/detail/019/019293.json similarity index 100% rename from source/flights/detail/019293.json rename to source/flights/detail/019/019293.json diff --git a/source/flights/detail/019295.json b/source/flights/detail/019/019295.json similarity index 100% rename from source/flights/detail/019295.json rename to source/flights/detail/019/019295.json diff --git a/source/flights/detail/019296.json b/source/flights/detail/019/019296.json similarity index 100% rename from source/flights/detail/019296.json rename to source/flights/detail/019/019296.json diff --git a/source/flights/detail/019297.json b/source/flights/detail/019/019297.json similarity index 100% rename from source/flights/detail/019297.json rename to source/flights/detail/019/019297.json diff --git a/source/flights/detail/019304.json b/source/flights/detail/019/019304.json similarity index 100% rename from source/flights/detail/019304.json rename to source/flights/detail/019/019304.json diff --git a/source/flights/detail/019305.json b/source/flights/detail/019/019305.json similarity index 100% rename from source/flights/detail/019305.json rename to source/flights/detail/019/019305.json diff --git a/source/flights/detail/019312.json b/source/flights/detail/019/019312.json similarity index 100% rename from source/flights/detail/019312.json rename to source/flights/detail/019/019312.json diff --git a/source/flights/detail/019313.json b/source/flights/detail/019/019313.json similarity index 100% rename from source/flights/detail/019313.json rename to source/flights/detail/019/019313.json diff --git a/source/flights/detail/019322.json b/source/flights/detail/019/019322.json similarity index 100% rename from source/flights/detail/019322.json rename to source/flights/detail/019/019322.json diff --git a/source/flights/detail/019324.json b/source/flights/detail/019/019324.json similarity index 100% rename from source/flights/detail/019324.json rename to source/flights/detail/019/019324.json diff --git a/source/flights/detail/019326.json b/source/flights/detail/019/019326.json similarity index 100% rename from source/flights/detail/019326.json rename to source/flights/detail/019/019326.json diff --git a/source/flights/detail/019327.json b/source/flights/detail/019/019327.json similarity index 100% rename from source/flights/detail/019327.json rename to source/flights/detail/019/019327.json diff --git a/source/flights/detail/019328.json b/source/flights/detail/019/019328.json similarity index 100% rename from source/flights/detail/019328.json rename to source/flights/detail/019/019328.json diff --git a/source/flights/detail/019330.json b/source/flights/detail/019/019330.json similarity index 100% rename from source/flights/detail/019330.json rename to source/flights/detail/019/019330.json diff --git a/source/flights/detail/019331.json b/source/flights/detail/019/019331.json similarity index 100% rename from source/flights/detail/019331.json rename to source/flights/detail/019/019331.json diff --git a/source/flights/detail/019332.json b/source/flights/detail/019/019332.json similarity index 100% rename from source/flights/detail/019332.json rename to source/flights/detail/019/019332.json diff --git a/source/flights/detail/019338.json b/source/flights/detail/019/019338.json similarity index 100% rename from source/flights/detail/019338.json rename to source/flights/detail/019/019338.json diff --git a/source/flights/detail/019340.json b/source/flights/detail/019/019340.json similarity index 100% rename from source/flights/detail/019340.json rename to source/flights/detail/019/019340.json diff --git a/source/flights/detail/019341.json b/source/flights/detail/019/019341.json similarity index 100% rename from source/flights/detail/019341.json rename to source/flights/detail/019/019341.json diff --git a/source/flights/detail/019344.json b/source/flights/detail/019/019344.json similarity index 100% rename from source/flights/detail/019344.json rename to source/flights/detail/019/019344.json diff --git a/source/flights/detail/019350.json b/source/flights/detail/019/019350.json similarity index 100% rename from source/flights/detail/019350.json rename to source/flights/detail/019/019350.json diff --git a/source/flights/detail/019351.json b/source/flights/detail/019/019351.json similarity index 100% rename from source/flights/detail/019351.json rename to source/flights/detail/019/019351.json diff --git a/source/flights/detail/019353.json b/source/flights/detail/019/019353.json similarity index 100% rename from source/flights/detail/019353.json rename to source/flights/detail/019/019353.json diff --git a/source/flights/detail/019358.json b/source/flights/detail/019/019358.json similarity index 100% rename from source/flights/detail/019358.json rename to source/flights/detail/019/019358.json diff --git a/source/flights/detail/019359.json b/source/flights/detail/019/019359.json similarity index 100% rename from source/flights/detail/019359.json rename to source/flights/detail/019/019359.json diff --git a/source/flights/detail/019363.json b/source/flights/detail/019/019363.json similarity index 100% rename from source/flights/detail/019363.json rename to source/flights/detail/019/019363.json diff --git a/source/flights/detail/019369.json b/source/flights/detail/019/019369.json similarity index 100% rename from source/flights/detail/019369.json rename to source/flights/detail/019/019369.json diff --git a/source/flights/detail/019372.json b/source/flights/detail/019/019372.json similarity index 100% rename from source/flights/detail/019372.json rename to source/flights/detail/019/019372.json diff --git a/source/flights/detail/019375.json b/source/flights/detail/019/019375.json similarity index 100% rename from source/flights/detail/019375.json rename to source/flights/detail/019/019375.json diff --git a/source/flights/detail/019388.json b/source/flights/detail/019/019388.json similarity index 100% rename from source/flights/detail/019388.json rename to source/flights/detail/019/019388.json diff --git a/source/flights/detail/019390.json b/source/flights/detail/019/019390.json similarity index 100% rename from source/flights/detail/019390.json rename to source/flights/detail/019/019390.json diff --git a/source/flights/detail/019393.json b/source/flights/detail/019/019393.json similarity index 100% rename from source/flights/detail/019393.json rename to source/flights/detail/019/019393.json diff --git a/source/flights/detail/019404.json b/source/flights/detail/019/019404.json similarity index 100% rename from source/flights/detail/019404.json rename to source/flights/detail/019/019404.json diff --git a/source/flights/detail/019407.json b/source/flights/detail/019/019407.json similarity index 100% rename from source/flights/detail/019407.json rename to source/flights/detail/019/019407.json diff --git a/source/flights/detail/019411.json b/source/flights/detail/019/019411.json similarity index 100% rename from source/flights/detail/019411.json rename to source/flights/detail/019/019411.json diff --git a/source/flights/detail/019422.json b/source/flights/detail/019/019422.json similarity index 100% rename from source/flights/detail/019422.json rename to source/flights/detail/019/019422.json diff --git a/source/flights/detail/019423.json b/source/flights/detail/019/019423.json similarity index 100% rename from source/flights/detail/019423.json rename to source/flights/detail/019/019423.json diff --git a/source/flights/detail/019439.json b/source/flights/detail/019/019439.json similarity index 100% rename from source/flights/detail/019439.json rename to source/flights/detail/019/019439.json diff --git a/source/flights/detail/019442.json b/source/flights/detail/019/019442.json similarity index 100% rename from source/flights/detail/019442.json rename to source/flights/detail/019/019442.json diff --git a/source/flights/detail/019450.json b/source/flights/detail/019/019450.json similarity index 100% rename from source/flights/detail/019450.json rename to source/flights/detail/019/019450.json diff --git a/source/flights/detail/019451.json b/source/flights/detail/019/019451.json similarity index 100% rename from source/flights/detail/019451.json rename to source/flights/detail/019/019451.json diff --git a/source/flights/detail/019454.json b/source/flights/detail/019/019454.json similarity index 100% rename from source/flights/detail/019454.json rename to source/flights/detail/019/019454.json diff --git a/source/flights/detail/019459.json b/source/flights/detail/019/019459.json similarity index 100% rename from source/flights/detail/019459.json rename to source/flights/detail/019/019459.json diff --git a/source/flights/detail/019461.json b/source/flights/detail/019/019461.json similarity index 100% rename from source/flights/detail/019461.json rename to source/flights/detail/019/019461.json diff --git a/source/flights/detail/019466.json b/source/flights/detail/019/019466.json similarity index 100% rename from source/flights/detail/019466.json rename to source/flights/detail/019/019466.json diff --git a/source/flights/detail/019468.json b/source/flights/detail/019/019468.json similarity index 100% rename from source/flights/detail/019468.json rename to source/flights/detail/019/019468.json diff --git a/source/flights/detail/019491.json b/source/flights/detail/019/019491.json similarity index 100% rename from source/flights/detail/019491.json rename to source/flights/detail/019/019491.json diff --git a/source/flights/detail/019497.json b/source/flights/detail/019/019497.json similarity index 100% rename from source/flights/detail/019497.json rename to source/flights/detail/019/019497.json diff --git a/source/flights/detail/019507.json b/source/flights/detail/019/019507.json similarity index 100% rename from source/flights/detail/019507.json rename to source/flights/detail/019/019507.json diff --git a/source/flights/detail/019510.json b/source/flights/detail/019/019510.json similarity index 100% rename from source/flights/detail/019510.json rename to source/flights/detail/019/019510.json diff --git a/source/flights/detail/019519.json b/source/flights/detail/019/019519.json similarity index 100% rename from source/flights/detail/019519.json rename to source/flights/detail/019/019519.json diff --git a/source/flights/detail/019527.json b/source/flights/detail/019/019527.json similarity index 100% rename from source/flights/detail/019527.json rename to source/flights/detail/019/019527.json diff --git a/source/flights/detail/019528.json b/source/flights/detail/019/019528.json similarity index 100% rename from source/flights/detail/019528.json rename to source/flights/detail/019/019528.json diff --git a/source/flights/detail/019531.json b/source/flights/detail/019/019531.json similarity index 100% rename from source/flights/detail/019531.json rename to source/flights/detail/019/019531.json diff --git a/source/flights/detail/019540.json b/source/flights/detail/019/019540.json similarity index 100% rename from source/flights/detail/019540.json rename to source/flights/detail/019/019540.json diff --git a/source/flights/detail/019541.json b/source/flights/detail/019/019541.json similarity index 100% rename from source/flights/detail/019541.json rename to source/flights/detail/019/019541.json diff --git a/source/flights/detail/019546.json b/source/flights/detail/019/019546.json similarity index 100% rename from source/flights/detail/019546.json rename to source/flights/detail/019/019546.json diff --git a/source/flights/detail/019585.json b/source/flights/detail/019/019585.json similarity index 100% rename from source/flights/detail/019585.json rename to source/flights/detail/019/019585.json diff --git a/source/flights/detail/019586.json b/source/flights/detail/019/019586.json similarity index 100% rename from source/flights/detail/019586.json rename to source/flights/detail/019/019586.json diff --git a/source/flights/detail/019590.json b/source/flights/detail/019/019590.json similarity index 100% rename from source/flights/detail/019590.json rename to source/flights/detail/019/019590.json diff --git a/source/flights/detail/019591.json b/source/flights/detail/019/019591.json similarity index 100% rename from source/flights/detail/019591.json rename to source/flights/detail/019/019591.json diff --git a/source/flights/detail/019592.json b/source/flights/detail/019/019592.json similarity index 100% rename from source/flights/detail/019592.json rename to source/flights/detail/019/019592.json diff --git a/source/flights/detail/019593.json b/source/flights/detail/019/019593.json similarity index 100% rename from source/flights/detail/019593.json rename to source/flights/detail/019/019593.json diff --git a/source/flights/detail/019595.json b/source/flights/detail/019/019595.json similarity index 100% rename from source/flights/detail/019595.json rename to source/flights/detail/019/019595.json diff --git a/source/flights/detail/019596.json b/source/flights/detail/019/019596.json similarity index 100% rename from source/flights/detail/019596.json rename to source/flights/detail/019/019596.json diff --git a/source/flights/detail/019598.json b/source/flights/detail/019/019598.json similarity index 100% rename from source/flights/detail/019598.json rename to source/flights/detail/019/019598.json diff --git a/source/flights/detail/019601.json b/source/flights/detail/019/019601.json similarity index 100% rename from source/flights/detail/019601.json rename to source/flights/detail/019/019601.json diff --git a/source/flights/detail/019602.json b/source/flights/detail/019/019602.json similarity index 100% rename from source/flights/detail/019602.json rename to source/flights/detail/019/019602.json diff --git a/source/flights/detail/019604.json b/source/flights/detail/019/019604.json similarity index 100% rename from source/flights/detail/019604.json rename to source/flights/detail/019/019604.json diff --git a/source/flights/detail/019607.json b/source/flights/detail/019/019607.json similarity index 100% rename from source/flights/detail/019607.json rename to source/flights/detail/019/019607.json diff --git a/source/flights/detail/019616.json b/source/flights/detail/019/019616.json similarity index 100% rename from source/flights/detail/019616.json rename to source/flights/detail/019/019616.json diff --git a/source/flights/detail/019621.json b/source/flights/detail/019/019621.json similarity index 100% rename from source/flights/detail/019621.json rename to source/flights/detail/019/019621.json diff --git a/source/flights/detail/019632.json b/source/flights/detail/019/019632.json similarity index 100% rename from source/flights/detail/019632.json rename to source/flights/detail/019/019632.json diff --git a/source/flights/detail/019635.json b/source/flights/detail/019/019635.json similarity index 100% rename from source/flights/detail/019635.json rename to source/flights/detail/019/019635.json diff --git a/source/flights/detail/019636.json b/source/flights/detail/019/019636.json similarity index 100% rename from source/flights/detail/019636.json rename to source/flights/detail/019/019636.json diff --git a/source/flights/detail/019637.json b/source/flights/detail/019/019637.json similarity index 100% rename from source/flights/detail/019637.json rename to source/flights/detail/019/019637.json diff --git a/source/flights/detail/019639.json b/source/flights/detail/019/019639.json similarity index 100% rename from source/flights/detail/019639.json rename to source/flights/detail/019/019639.json diff --git a/source/flights/detail/019640.json b/source/flights/detail/019/019640.json similarity index 100% rename from source/flights/detail/019640.json rename to source/flights/detail/019/019640.json diff --git a/source/flights/detail/019641.json b/source/flights/detail/019/019641.json similarity index 100% rename from source/flights/detail/019641.json rename to source/flights/detail/019/019641.json diff --git a/source/flights/detail/019642.json b/source/flights/detail/019/019642.json similarity index 100% rename from source/flights/detail/019642.json rename to source/flights/detail/019/019642.json diff --git a/source/flights/detail/019643.json b/source/flights/detail/019/019643.json similarity index 100% rename from source/flights/detail/019643.json rename to source/flights/detail/019/019643.json diff --git a/source/flights/detail/019645.json b/source/flights/detail/019/019645.json similarity index 100% rename from source/flights/detail/019645.json rename to source/flights/detail/019/019645.json diff --git a/source/flights/detail/019647.json b/source/flights/detail/019/019647.json similarity index 100% rename from source/flights/detail/019647.json rename to source/flights/detail/019/019647.json diff --git a/source/flights/detail/019648.json b/source/flights/detail/019/019648.json similarity index 100% rename from source/flights/detail/019648.json rename to source/flights/detail/019/019648.json diff --git a/source/flights/detail/019650.json b/source/flights/detail/019/019650.json similarity index 100% rename from source/flights/detail/019650.json rename to source/flights/detail/019/019650.json diff --git a/source/flights/detail/019652.json b/source/flights/detail/019/019652.json similarity index 100% rename from source/flights/detail/019652.json rename to source/flights/detail/019/019652.json diff --git a/source/flights/detail/019653.json b/source/flights/detail/019/019653.json similarity index 100% rename from source/flights/detail/019653.json rename to source/flights/detail/019/019653.json diff --git a/source/flights/detail/019670.json b/source/flights/detail/019/019670.json similarity index 100% rename from source/flights/detail/019670.json rename to source/flights/detail/019/019670.json diff --git a/source/flights/detail/019671.json b/source/flights/detail/019/019671.json similarity index 100% rename from source/flights/detail/019671.json rename to source/flights/detail/019/019671.json diff --git a/source/flights/detail/019674.json b/source/flights/detail/019/019674.json similarity index 100% rename from source/flights/detail/019674.json rename to source/flights/detail/019/019674.json diff --git a/source/flights/detail/019678.json b/source/flights/detail/019/019678.json similarity index 100% rename from source/flights/detail/019678.json rename to source/flights/detail/019/019678.json diff --git a/source/flights/detail/019679.json b/source/flights/detail/019/019679.json similarity index 100% rename from source/flights/detail/019679.json rename to source/flights/detail/019/019679.json diff --git a/source/flights/detail/019685.json b/source/flights/detail/019/019685.json similarity index 100% rename from source/flights/detail/019685.json rename to source/flights/detail/019/019685.json diff --git a/source/flights/detail/019688.json b/source/flights/detail/019/019688.json similarity index 100% rename from source/flights/detail/019688.json rename to source/flights/detail/019/019688.json diff --git a/source/flights/detail/019690.json b/source/flights/detail/019/019690.json similarity index 100% rename from source/flights/detail/019690.json rename to source/flights/detail/019/019690.json diff --git a/source/flights/detail/019692.json b/source/flights/detail/019/019692.json similarity index 100% rename from source/flights/detail/019692.json rename to source/flights/detail/019/019692.json diff --git a/source/flights/detail/019693.json b/source/flights/detail/019/019693.json similarity index 100% rename from source/flights/detail/019693.json rename to source/flights/detail/019/019693.json diff --git a/source/flights/detail/019694.json b/source/flights/detail/019/019694.json similarity index 100% rename from source/flights/detail/019694.json rename to source/flights/detail/019/019694.json diff --git a/source/flights/detail/019695.json b/source/flights/detail/019/019695.json similarity index 100% rename from source/flights/detail/019695.json rename to source/flights/detail/019/019695.json diff --git a/source/flights/detail/019696.json b/source/flights/detail/019/019696.json similarity index 100% rename from source/flights/detail/019696.json rename to source/flights/detail/019/019696.json diff --git a/source/flights/detail/019697.json b/source/flights/detail/019/019697.json similarity index 100% rename from source/flights/detail/019697.json rename to source/flights/detail/019/019697.json diff --git a/source/flights/detail/019698.json b/source/flights/detail/019/019698.json similarity index 100% rename from source/flights/detail/019698.json rename to source/flights/detail/019/019698.json diff --git a/source/flights/detail/019699.json b/source/flights/detail/019/019699.json similarity index 100% rename from source/flights/detail/019699.json rename to source/flights/detail/019/019699.json diff --git a/source/flights/detail/019701.json b/source/flights/detail/019/019701.json similarity index 100% rename from source/flights/detail/019701.json rename to source/flights/detail/019/019701.json diff --git a/source/flights/detail/019702.json b/source/flights/detail/019/019702.json similarity index 100% rename from source/flights/detail/019702.json rename to source/flights/detail/019/019702.json diff --git a/source/flights/detail/019703.json b/source/flights/detail/019/019703.json similarity index 100% rename from source/flights/detail/019703.json rename to source/flights/detail/019/019703.json diff --git a/source/flights/detail/019704.json b/source/flights/detail/019/019704.json similarity index 100% rename from source/flights/detail/019704.json rename to source/flights/detail/019/019704.json diff --git a/source/flights/detail/019705.json b/source/flights/detail/019/019705.json similarity index 100% rename from source/flights/detail/019705.json rename to source/flights/detail/019/019705.json diff --git a/source/flights/detail/019706.json b/source/flights/detail/019/019706.json similarity index 100% rename from source/flights/detail/019706.json rename to source/flights/detail/019/019706.json diff --git a/source/flights/detail/019708.json b/source/flights/detail/019/019708.json similarity index 100% rename from source/flights/detail/019708.json rename to source/flights/detail/019/019708.json diff --git a/source/flights/detail/019709.json b/source/flights/detail/019/019709.json similarity index 100% rename from source/flights/detail/019709.json rename to source/flights/detail/019/019709.json diff --git a/source/flights/detail/019710.json b/source/flights/detail/019/019710.json similarity index 100% rename from source/flights/detail/019710.json rename to source/flights/detail/019/019710.json diff --git a/source/flights/detail/019711.json b/source/flights/detail/019/019711.json similarity index 100% rename from source/flights/detail/019711.json rename to source/flights/detail/019/019711.json diff --git a/source/flights/detail/019712.json b/source/flights/detail/019/019712.json similarity index 100% rename from source/flights/detail/019712.json rename to source/flights/detail/019/019712.json diff --git a/source/flights/detail/019720.json b/source/flights/detail/019/019720.json similarity index 100% rename from source/flights/detail/019720.json rename to source/flights/detail/019/019720.json diff --git a/source/flights/detail/019724.json b/source/flights/detail/019/019724.json similarity index 100% rename from source/flights/detail/019724.json rename to source/flights/detail/019/019724.json diff --git a/source/flights/detail/019727.json b/source/flights/detail/019/019727.json similarity index 100% rename from source/flights/detail/019727.json rename to source/flights/detail/019/019727.json diff --git a/source/flights/detail/019735.json b/source/flights/detail/019/019735.json similarity index 100% rename from source/flights/detail/019735.json rename to source/flights/detail/019/019735.json diff --git a/source/flights/detail/019754.json b/source/flights/detail/019/019754.json similarity index 100% rename from source/flights/detail/019754.json rename to source/flights/detail/019/019754.json diff --git a/source/flights/detail/019755.json b/source/flights/detail/019/019755.json similarity index 100% rename from source/flights/detail/019755.json rename to source/flights/detail/019/019755.json diff --git a/source/flights/detail/019756.json b/source/flights/detail/019/019756.json similarity index 100% rename from source/flights/detail/019756.json rename to source/flights/detail/019/019756.json diff --git a/source/flights/detail/019767.json b/source/flights/detail/019/019767.json similarity index 100% rename from source/flights/detail/019767.json rename to source/flights/detail/019/019767.json diff --git a/source/flights/detail/019771.json b/source/flights/detail/019/019771.json similarity index 100% rename from source/flights/detail/019771.json rename to source/flights/detail/019/019771.json diff --git a/source/flights/detail/019792.json b/source/flights/detail/019/019792.json similarity index 100% rename from source/flights/detail/019792.json rename to source/flights/detail/019/019792.json diff --git a/source/flights/detail/019793.json b/source/flights/detail/019/019793.json similarity index 100% rename from source/flights/detail/019793.json rename to source/flights/detail/019/019793.json diff --git a/source/flights/detail/019800.json b/source/flights/detail/019/019800.json similarity index 100% rename from source/flights/detail/019800.json rename to source/flights/detail/019/019800.json diff --git a/source/flights/detail/019809.json b/source/flights/detail/019/019809.json similarity index 100% rename from source/flights/detail/019809.json rename to source/flights/detail/019/019809.json diff --git a/source/flights/detail/019810.json b/source/flights/detail/019/019810.json similarity index 100% rename from source/flights/detail/019810.json rename to source/flights/detail/019/019810.json diff --git a/source/flights/detail/019814.json b/source/flights/detail/019/019814.json similarity index 100% rename from source/flights/detail/019814.json rename to source/flights/detail/019/019814.json diff --git a/source/flights/detail/019817.json b/source/flights/detail/019/019817.json similarity index 100% rename from source/flights/detail/019817.json rename to source/flights/detail/019/019817.json diff --git a/source/flights/detail/019820.json b/source/flights/detail/019/019820.json similarity index 100% rename from source/flights/detail/019820.json rename to source/flights/detail/019/019820.json diff --git a/source/flights/detail/019822.json b/source/flights/detail/019/019822.json similarity index 100% rename from source/flights/detail/019822.json rename to source/flights/detail/019/019822.json diff --git a/source/flights/detail/019835.json b/source/flights/detail/019/019835.json similarity index 100% rename from source/flights/detail/019835.json rename to source/flights/detail/019/019835.json diff --git a/source/flights/detail/019843.json b/source/flights/detail/019/019843.json similarity index 100% rename from source/flights/detail/019843.json rename to source/flights/detail/019/019843.json diff --git a/source/flights/detail/019849.json b/source/flights/detail/019/019849.json similarity index 100% rename from source/flights/detail/019849.json rename to source/flights/detail/019/019849.json diff --git a/source/flights/detail/019863.json b/source/flights/detail/019/019863.json similarity index 100% rename from source/flights/detail/019863.json rename to source/flights/detail/019/019863.json diff --git a/source/flights/detail/019865.json b/source/flights/detail/019/019865.json similarity index 100% rename from source/flights/detail/019865.json rename to source/flights/detail/019/019865.json diff --git a/source/flights/detail/019866.json b/source/flights/detail/019/019866.json similarity index 100% rename from source/flights/detail/019866.json rename to source/flights/detail/019/019866.json diff --git a/source/flights/detail/019869.json b/source/flights/detail/019/019869.json similarity index 100% rename from source/flights/detail/019869.json rename to source/flights/detail/019/019869.json diff --git a/source/flights/detail/019870.json b/source/flights/detail/019/019870.json similarity index 100% rename from source/flights/detail/019870.json rename to source/flights/detail/019/019870.json diff --git a/source/flights/detail/019873.json b/source/flights/detail/019/019873.json similarity index 100% rename from source/flights/detail/019873.json rename to source/flights/detail/019/019873.json diff --git a/source/flights/detail/019880.json b/source/flights/detail/019/019880.json similarity index 100% rename from source/flights/detail/019880.json rename to source/flights/detail/019/019880.json diff --git a/source/flights/detail/019888.json b/source/flights/detail/019/019888.json similarity index 100% rename from source/flights/detail/019888.json rename to source/flights/detail/019/019888.json diff --git a/source/flights/detail/019890.json b/source/flights/detail/019/019890.json similarity index 100% rename from source/flights/detail/019890.json rename to source/flights/detail/019/019890.json diff --git a/source/flights/detail/019896.json b/source/flights/detail/019/019896.json similarity index 100% rename from source/flights/detail/019896.json rename to source/flights/detail/019/019896.json diff --git a/source/flights/detail/019897.json b/source/flights/detail/019/019897.json similarity index 100% rename from source/flights/detail/019897.json rename to source/flights/detail/019/019897.json diff --git a/source/flights/detail/019911.json b/source/flights/detail/019/019911.json similarity index 100% rename from source/flights/detail/019911.json rename to source/flights/detail/019/019911.json diff --git a/source/flights/detail/019912.json b/source/flights/detail/019/019912.json similarity index 100% rename from source/flights/detail/019912.json rename to source/flights/detail/019/019912.json diff --git a/source/flights/detail/019913.json b/source/flights/detail/019/019913.json similarity index 100% rename from source/flights/detail/019913.json rename to source/flights/detail/019/019913.json diff --git a/source/flights/detail/019917.json b/source/flights/detail/019/019917.json similarity index 100% rename from source/flights/detail/019917.json rename to source/flights/detail/019/019917.json diff --git a/source/flights/detail/019918.json b/source/flights/detail/019/019918.json similarity index 100% rename from source/flights/detail/019918.json rename to source/flights/detail/019/019918.json diff --git a/source/flights/detail/019922.json b/source/flights/detail/019/019922.json similarity index 100% rename from source/flights/detail/019922.json rename to source/flights/detail/019/019922.json diff --git a/source/flights/detail/019923.json b/source/flights/detail/019/019923.json similarity index 100% rename from source/flights/detail/019923.json rename to source/flights/detail/019/019923.json diff --git a/source/flights/detail/019924.json b/source/flights/detail/019/019924.json similarity index 100% rename from source/flights/detail/019924.json rename to source/flights/detail/019/019924.json diff --git a/source/flights/detail/019925.json b/source/flights/detail/019/019925.json similarity index 100% rename from source/flights/detail/019925.json rename to source/flights/detail/019/019925.json diff --git a/source/flights/detail/019932.json b/source/flights/detail/019/019932.json similarity index 100% rename from source/flights/detail/019932.json rename to source/flights/detail/019/019932.json diff --git a/source/flights/detail/019937.json b/source/flights/detail/019/019937.json similarity index 100% rename from source/flights/detail/019937.json rename to source/flights/detail/019/019937.json diff --git a/source/flights/detail/019938.json b/source/flights/detail/019/019938.json similarity index 100% rename from source/flights/detail/019938.json rename to source/flights/detail/019/019938.json diff --git a/source/flights/detail/019960.json b/source/flights/detail/019/019960.json similarity index 100% rename from source/flights/detail/019960.json rename to source/flights/detail/019/019960.json diff --git a/source/flights/detail/019963.json b/source/flights/detail/019/019963.json similarity index 100% rename from source/flights/detail/019963.json rename to source/flights/detail/019/019963.json diff --git a/source/flights/detail/019965.json b/source/flights/detail/019/019965.json similarity index 100% rename from source/flights/detail/019965.json rename to source/flights/detail/019/019965.json diff --git a/source/flights/detail/019981.json b/source/flights/detail/019/019981.json similarity index 100% rename from source/flights/detail/019981.json rename to source/flights/detail/019/019981.json diff --git a/source/flights/detail/020022.json b/source/flights/detail/020/020022.json similarity index 100% rename from source/flights/detail/020022.json rename to source/flights/detail/020/020022.json diff --git a/source/flights/detail/020029.json b/source/flights/detail/020/020029.json similarity index 100% rename from source/flights/detail/020029.json rename to source/flights/detail/020/020029.json diff --git a/source/flights/detail/020066.json b/source/flights/detail/020/020066.json similarity index 100% rename from source/flights/detail/020066.json rename to source/flights/detail/020/020066.json diff --git a/source/flights/detail/020067.json b/source/flights/detail/020/020067.json similarity index 100% rename from source/flights/detail/020067.json rename to source/flights/detail/020/020067.json diff --git a/source/flights/detail/020068.json b/source/flights/detail/020/020068.json similarity index 100% rename from source/flights/detail/020068.json rename to source/flights/detail/020/020068.json diff --git a/source/flights/detail/020103.json b/source/flights/detail/020/020103.json similarity index 100% rename from source/flights/detail/020103.json rename to source/flights/detail/020/020103.json diff --git a/source/flights/detail/020108.json b/source/flights/detail/020/020108.json similarity index 100% rename from source/flights/detail/020108.json rename to source/flights/detail/020/020108.json diff --git a/source/flights/detail/020144.json b/source/flights/detail/020/020144.json similarity index 100% rename from source/flights/detail/020144.json rename to source/flights/detail/020/020144.json diff --git a/source/flights/detail/020192.json b/source/flights/detail/020/020192.json similarity index 100% rename from source/flights/detail/020192.json rename to source/flights/detail/020/020192.json diff --git a/source/flights/detail/020193.json b/source/flights/detail/020/020193.json similarity index 100% rename from source/flights/detail/020193.json rename to source/flights/detail/020/020193.json diff --git a/source/flights/detail/020195.json b/source/flights/detail/020/020195.json similarity index 100% rename from source/flights/detail/020195.json rename to source/flights/detail/020/020195.json diff --git a/source/flights/detail/020201.json b/source/flights/detail/020/020201.json similarity index 100% rename from source/flights/detail/020201.json rename to source/flights/detail/020/020201.json diff --git a/source/flights/detail/020202.json b/source/flights/detail/020/020202.json similarity index 100% rename from source/flights/detail/020202.json rename to source/flights/detail/020/020202.json diff --git a/source/flights/detail/020205.json b/source/flights/detail/020/020205.json similarity index 100% rename from source/flights/detail/020205.json rename to source/flights/detail/020/020205.json diff --git a/source/flights/detail/020207.json b/source/flights/detail/020/020207.json similarity index 100% rename from source/flights/detail/020207.json rename to source/flights/detail/020/020207.json diff --git a/source/flights/detail/020210.json b/source/flights/detail/020/020210.json similarity index 100% rename from source/flights/detail/020210.json rename to source/flights/detail/020/020210.json diff --git a/source/flights/detail/020211.json b/source/flights/detail/020/020211.json similarity index 100% rename from source/flights/detail/020211.json rename to source/flights/detail/020/020211.json diff --git a/source/flights/detail/020212.json b/source/flights/detail/020/020212.json similarity index 100% rename from source/flights/detail/020212.json rename to source/flights/detail/020/020212.json diff --git a/source/flights/detail/020213.json b/source/flights/detail/020/020213.json similarity index 100% rename from source/flights/detail/020213.json rename to source/flights/detail/020/020213.json diff --git a/source/flights/detail/020214.json b/source/flights/detail/020/020214.json similarity index 100% rename from source/flights/detail/020214.json rename to source/flights/detail/020/020214.json diff --git a/source/flights/detail/020215.json b/source/flights/detail/020/020215.json similarity index 100% rename from source/flights/detail/020215.json rename to source/flights/detail/020/020215.json diff --git a/source/flights/detail/020220.json b/source/flights/detail/020/020220.json similarity index 100% rename from source/flights/detail/020220.json rename to source/flights/detail/020/020220.json diff --git a/source/flights/detail/020232.json b/source/flights/detail/020/020232.json similarity index 100% rename from source/flights/detail/020232.json rename to source/flights/detail/020/020232.json diff --git a/source/flights/detail/020238.json b/source/flights/detail/020/020238.json similarity index 100% rename from source/flights/detail/020238.json rename to source/flights/detail/020/020238.json diff --git a/source/flights/detail/020284.json b/source/flights/detail/020/020284.json similarity index 100% rename from source/flights/detail/020284.json rename to source/flights/detail/020/020284.json diff --git a/source/flights/detail/020285.json b/source/flights/detail/020/020285.json similarity index 100% rename from source/flights/detail/020285.json rename to source/flights/detail/020/020285.json diff --git a/source/flights/detail/020286.json b/source/flights/detail/020/020286.json similarity index 100% rename from source/flights/detail/020286.json rename to source/flights/detail/020/020286.json diff --git a/source/flights/detail/020287.json b/source/flights/detail/020/020287.json similarity index 100% rename from source/flights/detail/020287.json rename to source/flights/detail/020/020287.json diff --git a/source/flights/detail/020318.json b/source/flights/detail/020/020318.json similarity index 100% rename from source/flights/detail/020318.json rename to source/flights/detail/020/020318.json diff --git a/source/flights/detail/020342.json b/source/flights/detail/020/020342.json similarity index 100% rename from source/flights/detail/020342.json rename to source/flights/detail/020/020342.json diff --git a/source/flights/detail/020343.json b/source/flights/detail/020/020343.json similarity index 100% rename from source/flights/detail/020343.json rename to source/flights/detail/020/020343.json diff --git a/source/flights/detail/020344.json b/source/flights/detail/020/020344.json similarity index 100% rename from source/flights/detail/020344.json rename to source/flights/detail/020/020344.json diff --git a/source/flights/detail/020345.json b/source/flights/detail/020/020345.json similarity index 100% rename from source/flights/detail/020345.json rename to source/flights/detail/020/020345.json diff --git a/source/flights/detail/020655.json b/source/flights/detail/020/020655.json similarity index 100% rename from source/flights/detail/020655.json rename to source/flights/detail/020/020655.json diff --git a/source/flights/detail/020661.json b/source/flights/detail/020/020661.json similarity index 100% rename from source/flights/detail/020661.json rename to source/flights/detail/020/020661.json diff --git a/source/flights/detail/020662.json b/source/flights/detail/020/020662.json similarity index 100% rename from source/flights/detail/020662.json rename to source/flights/detail/020/020662.json diff --git a/source/flights/detail/020663.json b/source/flights/detail/020/020663.json similarity index 100% rename from source/flights/detail/020663.json rename to source/flights/detail/020/020663.json diff --git a/source/flights/detail/020668.json b/source/flights/detail/020/020668.json similarity index 100% rename from source/flights/detail/020668.json rename to source/flights/detail/020/020668.json diff --git a/source/flights/detail/020669.json b/source/flights/detail/020/020669.json similarity index 100% rename from source/flights/detail/020669.json rename to source/flights/detail/020/020669.json diff --git a/source/flights/detail/020677.json b/source/flights/detail/020/020677.json similarity index 100% rename from source/flights/detail/020677.json rename to source/flights/detail/020/020677.json diff --git a/source/flights/detail/020680.json b/source/flights/detail/020/020680.json similarity index 100% rename from source/flights/detail/020680.json rename to source/flights/detail/020/020680.json diff --git a/source/flights/detail/020687.json b/source/flights/detail/020/020687.json similarity index 100% rename from source/flights/detail/020687.json rename to source/flights/detail/020/020687.json diff --git a/source/flights/detail/020692.json b/source/flights/detail/020/020692.json similarity index 100% rename from source/flights/detail/020692.json rename to source/flights/detail/020/020692.json diff --git a/source/flights/detail/020698.json b/source/flights/detail/020/020698.json similarity index 100% rename from source/flights/detail/020698.json rename to source/flights/detail/020/020698.json diff --git a/source/flights/detail/020715.json b/source/flights/detail/020/020715.json similarity index 100% rename from source/flights/detail/020715.json rename to source/flights/detail/020/020715.json diff --git a/source/flights/detail/020716.json b/source/flights/detail/020/020716.json similarity index 100% rename from source/flights/detail/020716.json rename to source/flights/detail/020/020716.json diff --git a/source/flights/detail/020717.json b/source/flights/detail/020/020717.json similarity index 100% rename from source/flights/detail/020717.json rename to source/flights/detail/020/020717.json diff --git a/source/flights/detail/020845.json b/source/flights/detail/020/020845.json similarity index 100% rename from source/flights/detail/020845.json rename to source/flights/detail/020/020845.json diff --git a/source/flights/detail/020846.json b/source/flights/detail/020/020846.json similarity index 100% rename from source/flights/detail/020846.json rename to source/flights/detail/020/020846.json diff --git a/source/flights/detail/020886.json b/source/flights/detail/020/020886.json similarity index 100% rename from source/flights/detail/020886.json rename to source/flights/detail/020/020886.json diff --git a/source/flights/detail/020888.json b/source/flights/detail/020/020888.json similarity index 100% rename from source/flights/detail/020888.json rename to source/flights/detail/020/020888.json diff --git a/source/flights/detail/020893.json b/source/flights/detail/020/020893.json similarity index 100% rename from source/flights/detail/020893.json rename to source/flights/detail/020/020893.json diff --git a/source/flights/detail/020898.json b/source/flights/detail/020/020898.json similarity index 100% rename from source/flights/detail/020898.json rename to source/flights/detail/020/020898.json diff --git a/source/flights/detail/020899.json b/source/flights/detail/020/020899.json similarity index 100% rename from source/flights/detail/020899.json rename to source/flights/detail/020/020899.json diff --git a/source/flights/detail/020900.json b/source/flights/detail/020/020900.json similarity index 100% rename from source/flights/detail/020900.json rename to source/flights/detail/020/020900.json diff --git a/source/flights/detail/020905.json b/source/flights/detail/020/020905.json similarity index 100% rename from source/flights/detail/020905.json rename to source/flights/detail/020/020905.json diff --git a/source/flights/detail/020907.json b/source/flights/detail/020/020907.json similarity index 100% rename from source/flights/detail/020907.json rename to source/flights/detail/020/020907.json diff --git a/source/flights/detail/020909.json b/source/flights/detail/020/020909.json similarity index 100% rename from source/flights/detail/020909.json rename to source/flights/detail/020/020909.json diff --git a/source/flights/detail/020917.json b/source/flights/detail/020/020917.json similarity index 100% rename from source/flights/detail/020917.json rename to source/flights/detail/020/020917.json diff --git a/source/flights/detail/020918.json b/source/flights/detail/020/020918.json similarity index 100% rename from source/flights/detail/020918.json rename to source/flights/detail/020/020918.json diff --git a/source/flights/detail/020919.json b/source/flights/detail/020/020919.json similarity index 100% rename from source/flights/detail/020919.json rename to source/flights/detail/020/020919.json diff --git a/source/flights/detail/020920.json b/source/flights/detail/020/020920.json similarity index 100% rename from source/flights/detail/020920.json rename to source/flights/detail/020/020920.json diff --git a/source/flights/detail/020923.json b/source/flights/detail/020/020923.json similarity index 100% rename from source/flights/detail/020923.json rename to source/flights/detail/020/020923.json diff --git a/source/flights/detail/020924.json b/source/flights/detail/020/020924.json similarity index 100% rename from source/flights/detail/020924.json rename to source/flights/detail/020/020924.json diff --git a/source/flights/detail/020925.json b/source/flights/detail/020/020925.json similarity index 100% rename from source/flights/detail/020925.json rename to source/flights/detail/020/020925.json diff --git a/source/flights/detail/020926.json b/source/flights/detail/020/020926.json similarity index 100% rename from source/flights/detail/020926.json rename to source/flights/detail/020/020926.json diff --git a/source/flights/detail/020927.json b/source/flights/detail/020/020927.json similarity index 100% rename from source/flights/detail/020927.json rename to source/flights/detail/020/020927.json diff --git a/source/flights/detail/020928.json b/source/flights/detail/020/020928.json similarity index 100% rename from source/flights/detail/020928.json rename to source/flights/detail/020/020928.json diff --git a/source/flights/detail/020929.json b/source/flights/detail/020/020929.json similarity index 100% rename from source/flights/detail/020929.json rename to source/flights/detail/020/020929.json diff --git a/source/flights/detail/020930.json b/source/flights/detail/020/020930.json similarity index 100% rename from source/flights/detail/020930.json rename to source/flights/detail/020/020930.json diff --git a/source/flights/detail/020933.json b/source/flights/detail/020/020933.json similarity index 100% rename from source/flights/detail/020933.json rename to source/flights/detail/020/020933.json diff --git a/source/flights/detail/020935.json b/source/flights/detail/020/020935.json similarity index 100% rename from source/flights/detail/020935.json rename to source/flights/detail/020/020935.json diff --git a/source/flights/detail/020936.json b/source/flights/detail/020/020936.json similarity index 100% rename from source/flights/detail/020936.json rename to source/flights/detail/020/020936.json diff --git a/source/flights/detail/020937.json b/source/flights/detail/020/020937.json similarity index 100% rename from source/flights/detail/020937.json rename to source/flights/detail/020/020937.json diff --git a/source/flights/detail/020939.json b/source/flights/detail/020/020939.json similarity index 100% rename from source/flights/detail/020939.json rename to source/flights/detail/020/020939.json diff --git a/source/flights/detail/020942.json b/source/flights/detail/020/020942.json similarity index 100% rename from source/flights/detail/020942.json rename to source/flights/detail/020/020942.json diff --git a/source/flights/detail/020969.json b/source/flights/detail/020/020969.json similarity index 100% rename from source/flights/detail/020969.json rename to source/flights/detail/020/020969.json diff --git a/source/flights/detail/020977.json b/source/flights/detail/020/020977.json similarity index 100% rename from source/flights/detail/020977.json rename to source/flights/detail/020/020977.json diff --git a/source/flights/detail/020978.json b/source/flights/detail/020/020978.json similarity index 100% rename from source/flights/detail/020978.json rename to source/flights/detail/020/020978.json diff --git a/source/flights/detail/020979.json b/source/flights/detail/020/020979.json similarity index 100% rename from source/flights/detail/020979.json rename to source/flights/detail/020/020979.json diff --git a/source/flights/detail/020981.json b/source/flights/detail/020/020981.json similarity index 100% rename from source/flights/detail/020981.json rename to source/flights/detail/020/020981.json diff --git a/source/flights/detail/020988.json b/source/flights/detail/020/020988.json similarity index 100% rename from source/flights/detail/020988.json rename to source/flights/detail/020/020988.json diff --git a/source/flights/detail/020989.json b/source/flights/detail/020/020989.json similarity index 100% rename from source/flights/detail/020989.json rename to source/flights/detail/020/020989.json diff --git a/source/flights/detail/020994.json b/source/flights/detail/020/020994.json similarity index 100% rename from source/flights/detail/020994.json rename to source/flights/detail/020/020994.json diff --git a/source/flights/detail/021018.json b/source/flights/detail/021/021018.json similarity index 100% rename from source/flights/detail/021018.json rename to source/flights/detail/021/021018.json diff --git a/source/flights/detail/021021.json b/source/flights/detail/021/021021.json similarity index 100% rename from source/flights/detail/021021.json rename to source/flights/detail/021/021021.json diff --git a/source/flights/detail/021028.json b/source/flights/detail/021/021028.json similarity index 100% rename from source/flights/detail/021028.json rename to source/flights/detail/021/021028.json diff --git a/source/flights/detail/021033.json b/source/flights/detail/021/021033.json similarity index 100% rename from source/flights/detail/021033.json rename to source/flights/detail/021/021033.json diff --git a/source/flights/detail/021034.json b/source/flights/detail/021/021034.json similarity index 100% rename from source/flights/detail/021034.json rename to source/flights/detail/021/021034.json diff --git a/source/flights/detail/021036.json b/source/flights/detail/021/021036.json similarity index 100% rename from source/flights/detail/021036.json rename to source/flights/detail/021/021036.json diff --git a/source/flights/detail/021041.json b/source/flights/detail/021/021041.json similarity index 100% rename from source/flights/detail/021041.json rename to source/flights/detail/021/021041.json diff --git a/source/flights/detail/021042.json b/source/flights/detail/021/021042.json similarity index 100% rename from source/flights/detail/021042.json rename to source/flights/detail/021/021042.json diff --git a/source/flights/detail/021044.json b/source/flights/detail/021/021044.json similarity index 100% rename from source/flights/detail/021044.json rename to source/flights/detail/021/021044.json diff --git a/source/flights/detail/021045.json b/source/flights/detail/021/021045.json similarity index 100% rename from source/flights/detail/021045.json rename to source/flights/detail/021/021045.json diff --git a/source/flights/detail/021046.json b/source/flights/detail/021/021046.json similarity index 100% rename from source/flights/detail/021046.json rename to source/flights/detail/021/021046.json diff --git a/source/flights/detail/021047.json b/source/flights/detail/021/021047.json similarity index 100% rename from source/flights/detail/021047.json rename to source/flights/detail/021/021047.json diff --git a/source/flights/detail/021052.json b/source/flights/detail/021/021052.json similarity index 100% rename from source/flights/detail/021052.json rename to source/flights/detail/021/021052.json diff --git a/source/flights/detail/021056.json b/source/flights/detail/021/021056.json similarity index 100% rename from source/flights/detail/021056.json rename to source/flights/detail/021/021056.json diff --git a/source/flights/detail/021059.json b/source/flights/detail/021/021059.json similarity index 100% rename from source/flights/detail/021059.json rename to source/flights/detail/021/021059.json diff --git a/source/flights/detail/021065.json b/source/flights/detail/021/021065.json similarity index 100% rename from source/flights/detail/021065.json rename to source/flights/detail/021/021065.json diff --git a/source/flights/detail/021066.json b/source/flights/detail/021/021066.json similarity index 100% rename from source/flights/detail/021066.json rename to source/flights/detail/021/021066.json diff --git a/source/flights/detail/021067.json b/source/flights/detail/021/021067.json similarity index 100% rename from source/flights/detail/021067.json rename to source/flights/detail/021/021067.json diff --git a/source/flights/detail/021072.json b/source/flights/detail/021/021072.json similarity index 100% rename from source/flights/detail/021072.json rename to source/flights/detail/021/021072.json diff --git a/source/flights/detail/021080.json b/source/flights/detail/021/021080.json similarity index 100% rename from source/flights/detail/021080.json rename to source/flights/detail/021/021080.json diff --git a/source/flights/detail/021081.json b/source/flights/detail/021/021081.json similarity index 100% rename from source/flights/detail/021081.json rename to source/flights/detail/021/021081.json diff --git a/source/flights/detail/021082.json b/source/flights/detail/021/021082.json similarity index 100% rename from source/flights/detail/021082.json rename to source/flights/detail/021/021082.json diff --git a/source/flights/detail/021116.json b/source/flights/detail/021/021116.json similarity index 100% rename from source/flights/detail/021116.json rename to source/flights/detail/021/021116.json diff --git a/source/flights/detail/021121.json b/source/flights/detail/021/021121.json similarity index 100% rename from source/flights/detail/021121.json rename to source/flights/detail/021/021121.json diff --git a/source/flights/detail/021122.json b/source/flights/detail/021/021122.json similarity index 100% rename from source/flights/detail/021122.json rename to source/flights/detail/021/021122.json diff --git a/source/flights/detail/021123.json b/source/flights/detail/021/021123.json similarity index 100% rename from source/flights/detail/021123.json rename to source/flights/detail/021/021123.json diff --git a/source/flights/detail/021124.json b/source/flights/detail/021/021124.json similarity index 100% rename from source/flights/detail/021124.json rename to source/flights/detail/021/021124.json diff --git a/source/flights/detail/021125.json b/source/flights/detail/021/021125.json similarity index 100% rename from source/flights/detail/021125.json rename to source/flights/detail/021/021125.json diff --git a/source/flights/detail/021129.json b/source/flights/detail/021/021129.json similarity index 100% rename from source/flights/detail/021129.json rename to source/flights/detail/021/021129.json diff --git a/source/flights/detail/021130.json b/source/flights/detail/021/021130.json similarity index 100% rename from source/flights/detail/021130.json rename to source/flights/detail/021/021130.json diff --git a/source/flights/detail/021131.json b/source/flights/detail/021/021131.json similarity index 100% rename from source/flights/detail/021131.json rename to source/flights/detail/021/021131.json diff --git a/source/flights/detail/021133.json b/source/flights/detail/021/021133.json similarity index 100% rename from source/flights/detail/021133.json rename to source/flights/detail/021/021133.json diff --git a/source/flights/detail/021135.json b/source/flights/detail/021/021135.json similarity index 100% rename from source/flights/detail/021135.json rename to source/flights/detail/021/021135.json diff --git a/source/flights/detail/021139.json b/source/flights/detail/021/021139.json similarity index 100% rename from source/flights/detail/021139.json rename to source/flights/detail/021/021139.json diff --git a/source/flights/detail/021157.json b/source/flights/detail/021/021157.json similarity index 100% rename from source/flights/detail/021157.json rename to source/flights/detail/021/021157.json diff --git a/source/flights/detail/021163.json b/source/flights/detail/021/021163.json similarity index 100% rename from source/flights/detail/021163.json rename to source/flights/detail/021/021163.json diff --git a/source/flights/detail/021166.json b/source/flights/detail/021/021166.json similarity index 100% rename from source/flights/detail/021166.json rename to source/flights/detail/021/021166.json diff --git a/source/flights/detail/021169.json b/source/flights/detail/021/021169.json similarity index 100% rename from source/flights/detail/021169.json rename to source/flights/detail/021/021169.json diff --git a/source/flights/detail/021170.json b/source/flights/detail/021/021170.json similarity index 100% rename from source/flights/detail/021170.json rename to source/flights/detail/021/021170.json diff --git a/source/flights/detail/021171.json b/source/flights/detail/021/021171.json similarity index 100% rename from source/flights/detail/021171.json rename to source/flights/detail/021/021171.json diff --git a/source/flights/detail/021172.json b/source/flights/detail/021/021172.json similarity index 100% rename from source/flights/detail/021172.json rename to source/flights/detail/021/021172.json diff --git a/source/flights/detail/021174.json b/source/flights/detail/021/021174.json similarity index 100% rename from source/flights/detail/021174.json rename to source/flights/detail/021/021174.json diff --git a/source/flights/detail/021175.json b/source/flights/detail/021/021175.json similarity index 100% rename from source/flights/detail/021175.json rename to source/flights/detail/021/021175.json diff --git a/source/flights/detail/021366.json b/source/flights/detail/021/021366.json similarity index 100% rename from source/flights/detail/021366.json rename to source/flights/detail/021/021366.json diff --git a/source/flights/detail/021416.json b/source/flights/detail/021/021416.json similarity index 100% rename from source/flights/detail/021416.json rename to source/flights/detail/021/021416.json diff --git a/source/flights/detail/021419.json b/source/flights/detail/021/021419.json similarity index 100% rename from source/flights/detail/021419.json rename to source/flights/detail/021/021419.json diff --git a/source/flights/detail/021427.json b/source/flights/detail/021/021427.json similarity index 100% rename from source/flights/detail/021427.json rename to source/flights/detail/021/021427.json diff --git a/source/flights/detail/021429.json b/source/flights/detail/021/021429.json similarity index 100% rename from source/flights/detail/021429.json rename to source/flights/detail/021/021429.json diff --git a/source/flights/detail/021430.json b/source/flights/detail/021/021430.json similarity index 100% rename from source/flights/detail/021430.json rename to source/flights/detail/021/021430.json diff --git a/source/flights/detail/021431.json b/source/flights/detail/021/021431.json similarity index 100% rename from source/flights/detail/021431.json rename to source/flights/detail/021/021431.json diff --git a/source/flights/detail/021434.json b/source/flights/detail/021/021434.json similarity index 100% rename from source/flights/detail/021434.json rename to source/flights/detail/021/021434.json diff --git a/source/flights/detail/021435.json b/source/flights/detail/021/021435.json similarity index 100% rename from source/flights/detail/021435.json rename to source/flights/detail/021/021435.json diff --git a/source/flights/detail/021436.json b/source/flights/detail/021/021436.json similarity index 100% rename from source/flights/detail/021436.json rename to source/flights/detail/021/021436.json diff --git a/source/flights/detail/021437.json b/source/flights/detail/021/021437.json similarity index 100% rename from source/flights/detail/021437.json rename to source/flights/detail/021/021437.json diff --git a/source/flights/detail/021438.json b/source/flights/detail/021/021438.json similarity index 100% rename from source/flights/detail/021438.json rename to source/flights/detail/021/021438.json diff --git a/source/flights/detail/021439.json b/source/flights/detail/021/021439.json similarity index 100% rename from source/flights/detail/021439.json rename to source/flights/detail/021/021439.json diff --git a/source/flights/detail/021440.json b/source/flights/detail/021/021440.json similarity index 100% rename from source/flights/detail/021440.json rename to source/flights/detail/021/021440.json diff --git a/source/flights/detail/021441.json b/source/flights/detail/021/021441.json similarity index 100% rename from source/flights/detail/021441.json rename to source/flights/detail/021/021441.json diff --git a/source/flights/detail/021442.json b/source/flights/detail/021/021442.json similarity index 100% rename from source/flights/detail/021442.json rename to source/flights/detail/021/021442.json diff --git a/source/flights/detail/021443.json b/source/flights/detail/021/021443.json similarity index 100% rename from source/flights/detail/021443.json rename to source/flights/detail/021/021443.json diff --git a/source/flights/detail/021444.json b/source/flights/detail/021/021444.json similarity index 100% rename from source/flights/detail/021444.json rename to source/flights/detail/021/021444.json diff --git a/source/flights/detail/021456.json b/source/flights/detail/021/021456.json similarity index 100% rename from source/flights/detail/021456.json rename to source/flights/detail/021/021456.json diff --git a/source/flights/detail/021457.json b/source/flights/detail/021/021457.json similarity index 100% rename from source/flights/detail/021457.json rename to source/flights/detail/021/021457.json diff --git a/source/flights/detail/021462.json b/source/flights/detail/021/021462.json similarity index 100% rename from source/flights/detail/021462.json rename to source/flights/detail/021/021462.json diff --git a/source/flights/detail/021465.json b/source/flights/detail/021/021465.json similarity index 100% rename from source/flights/detail/021465.json rename to source/flights/detail/021/021465.json diff --git a/source/flights/detail/021504.json b/source/flights/detail/021/021504.json similarity index 100% rename from source/flights/detail/021504.json rename to source/flights/detail/021/021504.json diff --git a/source/flights/detail/021553.json b/source/flights/detail/021/021553.json similarity index 100% rename from source/flights/detail/021553.json rename to source/flights/detail/021/021553.json diff --git a/source/flights/detail/021557.json b/source/flights/detail/021/021557.json similarity index 100% rename from source/flights/detail/021557.json rename to source/flights/detail/021/021557.json diff --git a/source/flights/detail/021568.json b/source/flights/detail/021/021568.json similarity index 100% rename from source/flights/detail/021568.json rename to source/flights/detail/021/021568.json diff --git a/source/flights/detail/021571.json b/source/flights/detail/021/021571.json similarity index 100% rename from source/flights/detail/021571.json rename to source/flights/detail/021/021571.json diff --git a/source/flights/detail/021575.json b/source/flights/detail/021/021575.json similarity index 100% rename from source/flights/detail/021575.json rename to source/flights/detail/021/021575.json diff --git a/source/flights/detail/021577.json b/source/flights/detail/021/021577.json similarity index 100% rename from source/flights/detail/021577.json rename to source/flights/detail/021/021577.json diff --git a/source/flights/detail/021582.json b/source/flights/detail/021/021582.json similarity index 100% rename from source/flights/detail/021582.json rename to source/flights/detail/021/021582.json diff --git a/source/flights/detail/021587.json b/source/flights/detail/021/021587.json similarity index 100% rename from source/flights/detail/021587.json rename to source/flights/detail/021/021587.json diff --git a/source/flights/detail/021590.json b/source/flights/detail/021/021590.json similarity index 100% rename from source/flights/detail/021590.json rename to source/flights/detail/021/021590.json diff --git a/source/flights/detail/021591.json b/source/flights/detail/021/021591.json similarity index 100% rename from source/flights/detail/021591.json rename to source/flights/detail/021/021591.json diff --git a/source/flights/detail/021592.json b/source/flights/detail/021/021592.json similarity index 100% rename from source/flights/detail/021592.json rename to source/flights/detail/021/021592.json diff --git a/source/flights/detail/021593.json b/source/flights/detail/021/021593.json similarity index 100% rename from source/flights/detail/021593.json rename to source/flights/detail/021/021593.json diff --git a/source/flights/detail/021594.json b/source/flights/detail/021/021594.json similarity index 100% rename from source/flights/detail/021594.json rename to source/flights/detail/021/021594.json diff --git a/source/flights/detail/021597.json b/source/flights/detail/021/021597.json similarity index 100% rename from source/flights/detail/021597.json rename to source/flights/detail/021/021597.json diff --git a/source/flights/detail/021604.json b/source/flights/detail/021/021604.json similarity index 100% rename from source/flights/detail/021604.json rename to source/flights/detail/021/021604.json diff --git a/source/flights/detail/021607.json b/source/flights/detail/021/021607.json similarity index 100% rename from source/flights/detail/021607.json rename to source/flights/detail/021/021607.json diff --git a/source/flights/detail/021618.json b/source/flights/detail/021/021618.json similarity index 100% rename from source/flights/detail/021618.json rename to source/flights/detail/021/021618.json diff --git a/source/flights/detail/021620.json b/source/flights/detail/021/021620.json similarity index 100% rename from source/flights/detail/021620.json rename to source/flights/detail/021/021620.json diff --git a/source/flights/detail/021642.json b/source/flights/detail/021/021642.json similarity index 100% rename from source/flights/detail/021642.json rename to source/flights/detail/021/021642.json diff --git a/source/flights/detail/021674.json b/source/flights/detail/021/021674.json similarity index 100% rename from source/flights/detail/021674.json rename to source/flights/detail/021/021674.json diff --git a/source/flights/detail/021685.json b/source/flights/detail/021/021685.json similarity index 100% rename from source/flights/detail/021685.json rename to source/flights/detail/021/021685.json diff --git a/source/flights/detail/021687.json b/source/flights/detail/021/021687.json similarity index 100% rename from source/flights/detail/021687.json rename to source/flights/detail/021/021687.json diff --git a/source/flights/detail/021698.json b/source/flights/detail/021/021698.json similarity index 100% rename from source/flights/detail/021698.json rename to source/flights/detail/021/021698.json diff --git a/source/flights/detail/021700.json b/source/flights/detail/021/021700.json similarity index 100% rename from source/flights/detail/021700.json rename to source/flights/detail/021/021700.json diff --git a/source/flights/detail/021705.json b/source/flights/detail/021/021705.json similarity index 100% rename from source/flights/detail/021705.json rename to source/flights/detail/021/021705.json diff --git a/source/flights/detail/021706.json b/source/flights/detail/021/021706.json similarity index 100% rename from source/flights/detail/021706.json rename to source/flights/detail/021/021706.json diff --git a/source/flights/detail/021711.json b/source/flights/detail/021/021711.json similarity index 100% rename from source/flights/detail/021711.json rename to source/flights/detail/021/021711.json diff --git a/source/flights/detail/021905.json b/source/flights/detail/021/021905.json similarity index 100% rename from source/flights/detail/021905.json rename to source/flights/detail/021/021905.json diff --git a/source/flights/detail/021922.json b/source/flights/detail/021/021922.json similarity index 100% rename from source/flights/detail/021922.json rename to source/flights/detail/021/021922.json diff --git a/source/flights/detail/021923.json b/source/flights/detail/021/021923.json similarity index 100% rename from source/flights/detail/021923.json rename to source/flights/detail/021/021923.json diff --git a/source/flights/detail/021924.json b/source/flights/detail/021/021924.json similarity index 100% rename from source/flights/detail/021924.json rename to source/flights/detail/021/021924.json diff --git a/source/flights/detail/021926.json b/source/flights/detail/021/021926.json similarity index 100% rename from source/flights/detail/021926.json rename to source/flights/detail/021/021926.json diff --git a/source/flights/detail/021928.json b/source/flights/detail/021/021928.json similarity index 100% rename from source/flights/detail/021928.json rename to source/flights/detail/021/021928.json diff --git a/source/flights/detail/021929.json b/source/flights/detail/021/021929.json similarity index 100% rename from source/flights/detail/021929.json rename to source/flights/detail/021/021929.json diff --git a/source/flights/detail/021932.json b/source/flights/detail/021/021932.json similarity index 100% rename from source/flights/detail/021932.json rename to source/flights/detail/021/021932.json diff --git a/source/flights/detail/021935.json b/source/flights/detail/021/021935.json similarity index 100% rename from source/flights/detail/021935.json rename to source/flights/detail/021/021935.json diff --git a/source/flights/detail/021938.json b/source/flights/detail/021/021938.json similarity index 100% rename from source/flights/detail/021938.json rename to source/flights/detail/021/021938.json diff --git a/source/flights/detail/021941.json b/source/flights/detail/021/021941.json similarity index 100% rename from source/flights/detail/021941.json rename to source/flights/detail/021/021941.json diff --git a/source/flights/detail/021947.json b/source/flights/detail/021/021947.json similarity index 100% rename from source/flights/detail/021947.json rename to source/flights/detail/021/021947.json diff --git a/source/flights/detail/021948.json b/source/flights/detail/021/021948.json similarity index 100% rename from source/flights/detail/021948.json rename to source/flights/detail/021/021948.json diff --git a/source/flights/detail/021949.json b/source/flights/detail/021/021949.json similarity index 100% rename from source/flights/detail/021949.json rename to source/flights/detail/021/021949.json diff --git a/source/flights/detail/021951.json b/source/flights/detail/021/021951.json similarity index 100% rename from source/flights/detail/021951.json rename to source/flights/detail/021/021951.json diff --git a/source/flights/detail/021953.json b/source/flights/detail/021/021953.json similarity index 100% rename from source/flights/detail/021953.json rename to source/flights/detail/021/021953.json diff --git a/source/flights/detail/021956.json b/source/flights/detail/021/021956.json similarity index 100% rename from source/flights/detail/021956.json rename to source/flights/detail/021/021956.json diff --git a/source/flights/detail/021957.json b/source/flights/detail/021/021957.json similarity index 100% rename from source/flights/detail/021957.json rename to source/flights/detail/021/021957.json diff --git a/source/flights/detail/021962.json b/source/flights/detail/021/021962.json similarity index 100% rename from source/flights/detail/021962.json rename to source/flights/detail/021/021962.json diff --git a/source/flights/detail/021963.json b/source/flights/detail/021/021963.json similarity index 100% rename from source/flights/detail/021963.json rename to source/flights/detail/021/021963.json diff --git a/source/flights/detail/021964.json b/source/flights/detail/021/021964.json similarity index 100% rename from source/flights/detail/021964.json rename to source/flights/detail/021/021964.json diff --git a/source/flights/detail/021970.json b/source/flights/detail/021/021970.json similarity index 100% rename from source/flights/detail/021970.json rename to source/flights/detail/021/021970.json diff --git a/source/flights/detail/021972.json b/source/flights/detail/021/021972.json similarity index 100% rename from source/flights/detail/021972.json rename to source/flights/detail/021/021972.json diff --git a/source/flights/detail/021975.json b/source/flights/detail/021/021975.json similarity index 100% rename from source/flights/detail/021975.json rename to source/flights/detail/021/021975.json diff --git a/source/flights/detail/021978.json b/source/flights/detail/021/021978.json similarity index 100% rename from source/flights/detail/021978.json rename to source/flights/detail/021/021978.json diff --git a/source/flights/detail/021979.json b/source/flights/detail/021/021979.json similarity index 100% rename from source/flights/detail/021979.json rename to source/flights/detail/021/021979.json diff --git a/source/flights/detail/021980.json b/source/flights/detail/021/021980.json similarity index 100% rename from source/flights/detail/021980.json rename to source/flights/detail/021/021980.json diff --git a/source/flights/detail/021984.json b/source/flights/detail/021/021984.json similarity index 100% rename from source/flights/detail/021984.json rename to source/flights/detail/021/021984.json diff --git a/source/flights/detail/021985.json b/source/flights/detail/021/021985.json similarity index 100% rename from source/flights/detail/021985.json rename to source/flights/detail/021/021985.json diff --git a/source/flights/detail/021987.json b/source/flights/detail/021/021987.json similarity index 100% rename from source/flights/detail/021987.json rename to source/flights/detail/021/021987.json diff --git a/source/flights/detail/022006.json b/source/flights/detail/022/022006.json similarity index 100% rename from source/flights/detail/022006.json rename to source/flights/detail/022/022006.json diff --git a/source/flights/detail/022008.json b/source/flights/detail/022/022008.json similarity index 100% rename from source/flights/detail/022008.json rename to source/flights/detail/022/022008.json diff --git a/source/flights/detail/022009.json b/source/flights/detail/022/022009.json similarity index 100% rename from source/flights/detail/022009.json rename to source/flights/detail/022/022009.json diff --git a/source/flights/detail/022014.json b/source/flights/detail/022/022014.json similarity index 100% rename from source/flights/detail/022014.json rename to source/flights/detail/022/022014.json diff --git a/source/flights/detail/022015.json b/source/flights/detail/022/022015.json similarity index 100% rename from source/flights/detail/022015.json rename to source/flights/detail/022/022015.json diff --git a/source/flights/detail/022021.json b/source/flights/detail/022/022021.json similarity index 100% rename from source/flights/detail/022021.json rename to source/flights/detail/022/022021.json diff --git a/source/flights/detail/022022.json b/source/flights/detail/022/022022.json similarity index 100% rename from source/flights/detail/022022.json rename to source/flights/detail/022/022022.json diff --git a/source/flights/detail/022030.json b/source/flights/detail/022/022030.json similarity index 100% rename from source/flights/detail/022030.json rename to source/flights/detail/022/022030.json diff --git a/source/flights/detail/022031.json b/source/flights/detail/022/022031.json similarity index 100% rename from source/flights/detail/022031.json rename to source/flights/detail/022/022031.json diff --git a/source/flights/detail/022034.json b/source/flights/detail/022/022034.json similarity index 100% rename from source/flights/detail/022034.json rename to source/flights/detail/022/022034.json diff --git a/source/flights/detail/022038.json b/source/flights/detail/022/022038.json similarity index 100% rename from source/flights/detail/022038.json rename to source/flights/detail/022/022038.json diff --git a/source/flights/detail/022039.json b/source/flights/detail/022/022039.json similarity index 100% rename from source/flights/detail/022039.json rename to source/flights/detail/022/022039.json diff --git a/source/flights/detail/022040.json b/source/flights/detail/022/022040.json similarity index 100% rename from source/flights/detail/022040.json rename to source/flights/detail/022/022040.json diff --git a/source/flights/detail/022044.json b/source/flights/detail/022/022044.json similarity index 100% rename from source/flights/detail/022044.json rename to source/flights/detail/022/022044.json diff --git a/source/flights/detail/022070.json b/source/flights/detail/022/022070.json similarity index 100% rename from source/flights/detail/022070.json rename to source/flights/detail/022/022070.json diff --git a/source/flights/detail/022071.json b/source/flights/detail/022/022071.json similarity index 100% rename from source/flights/detail/022071.json rename to source/flights/detail/022/022071.json diff --git a/source/flights/detail/022079.json b/source/flights/detail/022/022079.json similarity index 100% rename from source/flights/detail/022079.json rename to source/flights/detail/022/022079.json diff --git a/source/flights/detail/022100.json b/source/flights/detail/022/022100.json similarity index 100% rename from source/flights/detail/022100.json rename to source/flights/detail/022/022100.json diff --git a/source/flights/detail/022101.json b/source/flights/detail/022/022101.json similarity index 100% rename from source/flights/detail/022101.json rename to source/flights/detail/022/022101.json diff --git a/source/flights/detail/022112.json b/source/flights/detail/022/022112.json similarity index 100% rename from source/flights/detail/022112.json rename to source/flights/detail/022/022112.json diff --git a/source/flights/detail/022121.json b/source/flights/detail/022/022121.json similarity index 100% rename from source/flights/detail/022121.json rename to source/flights/detail/022/022121.json diff --git a/source/flights/detail/022129.json b/source/flights/detail/022/022129.json similarity index 100% rename from source/flights/detail/022129.json rename to source/flights/detail/022/022129.json diff --git a/source/flights/detail/022133.json b/source/flights/detail/022/022133.json similarity index 100% rename from source/flights/detail/022133.json rename to source/flights/detail/022/022133.json diff --git a/source/flights/detail/022134.json b/source/flights/detail/022/022134.json similarity index 100% rename from source/flights/detail/022134.json rename to source/flights/detail/022/022134.json diff --git a/source/flights/detail/022135.json b/source/flights/detail/022/022135.json similarity index 100% rename from source/flights/detail/022135.json rename to source/flights/detail/022/022135.json diff --git a/source/flights/detail/022144.json b/source/flights/detail/022/022144.json similarity index 100% rename from source/flights/detail/022144.json rename to source/flights/detail/022/022144.json diff --git a/source/flights/detail/022145.json b/source/flights/detail/022/022145.json similarity index 100% rename from source/flights/detail/022145.json rename to source/flights/detail/022/022145.json diff --git a/source/flights/detail/022152.json b/source/flights/detail/022/022152.json similarity index 100% rename from source/flights/detail/022152.json rename to source/flights/detail/022/022152.json diff --git a/source/flights/detail/022155.json b/source/flights/detail/022/022155.json similarity index 100% rename from source/flights/detail/022155.json rename to source/flights/detail/022/022155.json diff --git a/source/flights/detail/022156.json b/source/flights/detail/022/022156.json similarity index 100% rename from source/flights/detail/022156.json rename to source/flights/detail/022/022156.json diff --git a/source/flights/detail/022161.json b/source/flights/detail/022/022161.json similarity index 100% rename from source/flights/detail/022161.json rename to source/flights/detail/022/022161.json diff --git a/source/flights/detail/022167.json b/source/flights/detail/022/022167.json similarity index 100% rename from source/flights/detail/022167.json rename to source/flights/detail/022/022167.json diff --git a/source/flights/detail/022168.json b/source/flights/detail/022/022168.json similarity index 100% rename from source/flights/detail/022168.json rename to source/flights/detail/022/022168.json diff --git a/source/flights/detail/022169.json b/source/flights/detail/022/022169.json similarity index 100% rename from source/flights/detail/022169.json rename to source/flights/detail/022/022169.json diff --git a/source/flights/detail/022173.json b/source/flights/detail/022/022173.json similarity index 100% rename from source/flights/detail/022173.json rename to source/flights/detail/022/022173.json diff --git a/source/flights/detail/022182.json b/source/flights/detail/022/022182.json similarity index 100% rename from source/flights/detail/022182.json rename to source/flights/detail/022/022182.json diff --git a/source/flights/detail/022183.json b/source/flights/detail/022/022183.json similarity index 100% rename from source/flights/detail/022183.json rename to source/flights/detail/022/022183.json diff --git a/source/flights/detail/022184.json b/source/flights/detail/022/022184.json similarity index 100% rename from source/flights/detail/022184.json rename to source/flights/detail/022/022184.json diff --git a/source/flights/detail/022185.json b/source/flights/detail/022/022185.json similarity index 100% rename from source/flights/detail/022185.json rename to source/flights/detail/022/022185.json diff --git a/source/flights/detail/022186.json b/source/flights/detail/022/022186.json similarity index 100% rename from source/flights/detail/022186.json rename to source/flights/detail/022/022186.json diff --git a/source/flights/detail/022189.json b/source/flights/detail/022/022189.json similarity index 100% rename from source/flights/detail/022189.json rename to source/flights/detail/022/022189.json diff --git a/source/flights/detail/022190.json b/source/flights/detail/022/022190.json similarity index 100% rename from source/flights/detail/022190.json rename to source/flights/detail/022/022190.json diff --git a/source/flights/detail/022201.json b/source/flights/detail/022/022201.json similarity index 100% rename from source/flights/detail/022201.json rename to source/flights/detail/022/022201.json diff --git a/source/flights/detail/022209.json b/source/flights/detail/022/022209.json similarity index 100% rename from source/flights/detail/022209.json rename to source/flights/detail/022/022209.json diff --git a/source/flights/detail/022225.json b/source/flights/detail/022/022225.json similarity index 100% rename from source/flights/detail/022225.json rename to source/flights/detail/022/022225.json diff --git a/source/flights/detail/022237.json b/source/flights/detail/022/022237.json similarity index 100% rename from source/flights/detail/022237.json rename to source/flights/detail/022/022237.json diff --git a/source/flights/detail/022241.json b/source/flights/detail/022/022241.json similarity index 100% rename from source/flights/detail/022241.json rename to source/flights/detail/022/022241.json diff --git a/source/flights/detail/022243.json b/source/flights/detail/022/022243.json similarity index 100% rename from source/flights/detail/022243.json rename to source/flights/detail/022/022243.json diff --git a/source/flights/detail/022244.json b/source/flights/detail/022/022244.json similarity index 100% rename from source/flights/detail/022244.json rename to source/flights/detail/022/022244.json diff --git a/source/flights/detail/022245.json b/source/flights/detail/022/022245.json similarity index 100% rename from source/flights/detail/022245.json rename to source/flights/detail/022/022245.json diff --git a/source/flights/detail/022251.json b/source/flights/detail/022/022251.json similarity index 100% rename from source/flights/detail/022251.json rename to source/flights/detail/022/022251.json diff --git a/source/flights/detail/022269.json b/source/flights/detail/022/022269.json similarity index 100% rename from source/flights/detail/022269.json rename to source/flights/detail/022/022269.json diff --git a/source/flights/detail/022270.json b/source/flights/detail/022/022270.json similarity index 100% rename from source/flights/detail/022270.json rename to source/flights/detail/022/022270.json diff --git a/source/flights/detail/022282.json b/source/flights/detail/022/022282.json similarity index 100% rename from source/flights/detail/022282.json rename to source/flights/detail/022/022282.json diff --git a/source/flights/detail/022284.json b/source/flights/detail/022/022284.json similarity index 100% rename from source/flights/detail/022284.json rename to source/flights/detail/022/022284.json diff --git a/source/flights/detail/022304.json b/source/flights/detail/022/022304.json similarity index 100% rename from source/flights/detail/022304.json rename to source/flights/detail/022/022304.json diff --git a/source/flights/detail/022318.json b/source/flights/detail/022/022318.json similarity index 100% rename from source/flights/detail/022318.json rename to source/flights/detail/022/022318.json diff --git a/source/flights/detail/022457.json b/source/flights/detail/022/022457.json similarity index 100% rename from source/flights/detail/022457.json rename to source/flights/detail/022/022457.json diff --git a/source/flights/detail/022464.json b/source/flights/detail/022/022464.json similarity index 100% rename from source/flights/detail/022464.json rename to source/flights/detail/022/022464.json diff --git a/source/flights/detail/022471.json b/source/flights/detail/022/022471.json similarity index 100% rename from source/flights/detail/022471.json rename to source/flights/detail/022/022471.json diff --git a/source/flights/detail/022476.json b/source/flights/detail/022/022476.json similarity index 100% rename from source/flights/detail/022476.json rename to source/flights/detail/022/022476.json diff --git a/source/flights/detail/022480.json b/source/flights/detail/022/022480.json similarity index 100% rename from source/flights/detail/022480.json rename to source/flights/detail/022/022480.json diff --git a/source/flights/detail/022481.json b/source/flights/detail/022/022481.json similarity index 100% rename from source/flights/detail/022481.json rename to source/flights/detail/022/022481.json diff --git a/source/flights/detail/022483.json b/source/flights/detail/022/022483.json similarity index 100% rename from source/flights/detail/022483.json rename to source/flights/detail/022/022483.json diff --git a/source/flights/detail/022484.json b/source/flights/detail/022/022484.json similarity index 100% rename from source/flights/detail/022484.json rename to source/flights/detail/022/022484.json diff --git a/source/flights/detail/022485.json b/source/flights/detail/022/022485.json similarity index 100% rename from source/flights/detail/022485.json rename to source/flights/detail/022/022485.json diff --git a/source/flights/detail/022486.json b/source/flights/detail/022/022486.json similarity index 100% rename from source/flights/detail/022486.json rename to source/flights/detail/022/022486.json diff --git a/source/flights/detail/022487.json b/source/flights/detail/022/022487.json similarity index 100% rename from source/flights/detail/022487.json rename to source/flights/detail/022/022487.json diff --git a/source/flights/detail/022490.json b/source/flights/detail/022/022490.json similarity index 100% rename from source/flights/detail/022490.json rename to source/flights/detail/022/022490.json diff --git a/source/flights/detail/022491.json b/source/flights/detail/022/022491.json similarity index 100% rename from source/flights/detail/022491.json rename to source/flights/detail/022/022491.json diff --git a/source/flights/detail/022494.json b/source/flights/detail/022/022494.json similarity index 100% rename from source/flights/detail/022494.json rename to source/flights/detail/022/022494.json diff --git a/source/flights/detail/022495.json b/source/flights/detail/022/022495.json similarity index 100% rename from source/flights/detail/022495.json rename to source/flights/detail/022/022495.json diff --git a/source/flights/detail/022498.json b/source/flights/detail/022/022498.json similarity index 100% rename from source/flights/detail/022498.json rename to source/flights/detail/022/022498.json diff --git a/source/flights/detail/022501.json b/source/flights/detail/022/022501.json similarity index 100% rename from source/flights/detail/022501.json rename to source/flights/detail/022/022501.json diff --git a/source/flights/detail/022518.json b/source/flights/detail/022/022518.json similarity index 100% rename from source/flights/detail/022518.json rename to source/flights/detail/022/022518.json diff --git a/source/flights/detail/022550.json b/source/flights/detail/022/022550.json similarity index 100% rename from source/flights/detail/022550.json rename to source/flights/detail/022/022550.json diff --git a/source/flights/detail/022551.json b/source/flights/detail/022/022551.json similarity index 100% rename from source/flights/detail/022551.json rename to source/flights/detail/022/022551.json diff --git a/source/flights/detail/022569.json b/source/flights/detail/022/022569.json similarity index 100% rename from source/flights/detail/022569.json rename to source/flights/detail/022/022569.json diff --git a/source/flights/detail/022570.json b/source/flights/detail/022/022570.json similarity index 100% rename from source/flights/detail/022570.json rename to source/flights/detail/022/022570.json diff --git a/source/flights/detail/022573.json b/source/flights/detail/022/022573.json similarity index 100% rename from source/flights/detail/022573.json rename to source/flights/detail/022/022573.json diff --git a/source/flights/detail/022574.json b/source/flights/detail/022/022574.json similarity index 100% rename from source/flights/detail/022574.json rename to source/flights/detail/022/022574.json diff --git a/source/flights/detail/022575.json b/source/flights/detail/022/022575.json similarity index 100% rename from source/flights/detail/022575.json rename to source/flights/detail/022/022575.json diff --git a/source/flights/detail/022576.json b/source/flights/detail/022/022576.json similarity index 100% rename from source/flights/detail/022576.json rename to source/flights/detail/022/022576.json diff --git a/source/flights/detail/022671.json b/source/flights/detail/022/022671.json similarity index 100% rename from source/flights/detail/022671.json rename to source/flights/detail/022/022671.json diff --git a/source/flights/detail/022672.json b/source/flights/detail/022/022672.json similarity index 100% rename from source/flights/detail/022672.json rename to source/flights/detail/022/022672.json diff --git a/source/flights/detail/022673.json b/source/flights/detail/022/022673.json similarity index 100% rename from source/flights/detail/022673.json rename to source/flights/detail/022/022673.json diff --git a/source/flights/detail/022679.json b/source/flights/detail/022/022679.json similarity index 100% rename from source/flights/detail/022679.json rename to source/flights/detail/022/022679.json diff --git a/source/flights/detail/022680.json b/source/flights/detail/022/022680.json similarity index 100% rename from source/flights/detail/022680.json rename to source/flights/detail/022/022680.json diff --git a/source/flights/detail/022683.json b/source/flights/detail/022/022683.json similarity index 100% rename from source/flights/detail/022683.json rename to source/flights/detail/022/022683.json diff --git a/source/flights/detail/022684.json b/source/flights/detail/022/022684.json similarity index 100% rename from source/flights/detail/022684.json rename to source/flights/detail/022/022684.json diff --git a/source/flights/detail/022685.json b/source/flights/detail/022/022685.json similarity index 100% rename from source/flights/detail/022685.json rename to source/flights/detail/022/022685.json diff --git a/source/flights/detail/022690.json b/source/flights/detail/022/022690.json similarity index 100% rename from source/flights/detail/022690.json rename to source/flights/detail/022/022690.json diff --git a/source/flights/detail/022691.json b/source/flights/detail/022/022691.json similarity index 100% rename from source/flights/detail/022691.json rename to source/flights/detail/022/022691.json diff --git a/source/flights/detail/022693.json b/source/flights/detail/022/022693.json similarity index 100% rename from source/flights/detail/022693.json rename to source/flights/detail/022/022693.json diff --git a/source/flights/detail/022694.json b/source/flights/detail/022/022694.json similarity index 100% rename from source/flights/detail/022694.json rename to source/flights/detail/022/022694.json diff --git a/source/flights/detail/022696.json b/source/flights/detail/022/022696.json similarity index 100% rename from source/flights/detail/022696.json rename to source/flights/detail/022/022696.json diff --git a/source/flights/detail/022698.json b/source/flights/detail/022/022698.json similarity index 100% rename from source/flights/detail/022698.json rename to source/flights/detail/022/022698.json diff --git a/source/flights/detail/022704.json b/source/flights/detail/022/022704.json similarity index 100% rename from source/flights/detail/022704.json rename to source/flights/detail/022/022704.json diff --git a/source/flights/detail/022708.json b/source/flights/detail/022/022708.json similarity index 100% rename from source/flights/detail/022708.json rename to source/flights/detail/022/022708.json diff --git a/source/flights/detail/022709.json b/source/flights/detail/022/022709.json similarity index 100% rename from source/flights/detail/022709.json rename to source/flights/detail/022/022709.json diff --git a/source/flights/detail/022711.json b/source/flights/detail/022/022711.json similarity index 100% rename from source/flights/detail/022711.json rename to source/flights/detail/022/022711.json diff --git a/source/flights/detail/022714.json b/source/flights/detail/022/022714.json similarity index 100% rename from source/flights/detail/022714.json rename to source/flights/detail/022/022714.json diff --git a/source/flights/detail/022716.json b/source/flights/detail/022/022716.json similarity index 100% rename from source/flights/detail/022716.json rename to source/flights/detail/022/022716.json diff --git a/source/flights/detail/022732.json b/source/flights/detail/022/022732.json similarity index 100% rename from source/flights/detail/022732.json rename to source/flights/detail/022/022732.json diff --git a/source/flights/detail/023102.json b/source/flights/detail/023/023102.json similarity index 100% rename from source/flights/detail/023102.json rename to source/flights/detail/023/023102.json diff --git a/source/flights/detail/023106.json b/source/flights/detail/023/023106.json similarity index 100% rename from source/flights/detail/023106.json rename to source/flights/detail/023/023106.json diff --git a/source/flights/detail/023110.json b/source/flights/detail/023/023110.json similarity index 100% rename from source/flights/detail/023110.json rename to source/flights/detail/023/023110.json diff --git a/source/flights/detail/023116.json b/source/flights/detail/023/023116.json similarity index 100% rename from source/flights/detail/023116.json rename to source/flights/detail/023/023116.json diff --git a/source/flights/detail/023117.json b/source/flights/detail/023/023117.json similarity index 100% rename from source/flights/detail/023117.json rename to source/flights/detail/023/023117.json diff --git a/source/flights/detail/023121.json b/source/flights/detail/023/023121.json similarity index 100% rename from source/flights/detail/023121.json rename to source/flights/detail/023/023121.json diff --git a/source/flights/detail/023133.json b/source/flights/detail/023/023133.json similarity index 100% rename from source/flights/detail/023133.json rename to source/flights/detail/023/023133.json diff --git a/source/flights/detail/023297.json b/source/flights/detail/023/023297.json similarity index 100% rename from source/flights/detail/023297.json rename to source/flights/detail/023/023297.json diff --git a/source/flights/detail/023298.json b/source/flights/detail/023/023298.json similarity index 100% rename from source/flights/detail/023298.json rename to source/flights/detail/023/023298.json diff --git a/source/flights/detail/023300.json b/source/flights/detail/023/023300.json similarity index 100% rename from source/flights/detail/023300.json rename to source/flights/detail/023/023300.json diff --git a/source/flights/detail/023305.json b/source/flights/detail/023/023305.json similarity index 100% rename from source/flights/detail/023305.json rename to source/flights/detail/023/023305.json diff --git a/source/flights/detail/023311.json b/source/flights/detail/023/023311.json similarity index 100% rename from source/flights/detail/023311.json rename to source/flights/detail/023/023311.json diff --git a/source/flights/detail/023317.json b/source/flights/detail/023/023317.json similarity index 100% rename from source/flights/detail/023317.json rename to source/flights/detail/023/023317.json diff --git a/source/flights/detail/023320.json b/source/flights/detail/023/023320.json similarity index 100% rename from source/flights/detail/023320.json rename to source/flights/detail/023/023320.json diff --git a/source/flights/detail/023322.json b/source/flights/detail/023/023322.json similarity index 100% rename from source/flights/detail/023322.json rename to source/flights/detail/023/023322.json diff --git a/source/flights/detail/023327.json b/source/flights/detail/023/023327.json similarity index 100% rename from source/flights/detail/023327.json rename to source/flights/detail/023/023327.json diff --git a/source/flights/detail/023330.json b/source/flights/detail/023/023330.json similarity index 100% rename from source/flights/detail/023330.json rename to source/flights/detail/023/023330.json diff --git a/source/flights/detail/023331.json b/source/flights/detail/023/023331.json similarity index 100% rename from source/flights/detail/023331.json rename to source/flights/detail/023/023331.json diff --git a/source/flights/detail/023338.json b/source/flights/detail/023/023338.json similarity index 100% rename from source/flights/detail/023338.json rename to source/flights/detail/023/023338.json diff --git a/source/flights/detail/023339.json b/source/flights/detail/023/023339.json similarity index 100% rename from source/flights/detail/023339.json rename to source/flights/detail/023/023339.json diff --git a/source/flights/detail/023350.json b/source/flights/detail/023/023350.json similarity index 100% rename from source/flights/detail/023350.json rename to source/flights/detail/023/023350.json diff --git a/source/flights/detail/023615.json b/source/flights/detail/023/023615.json similarity index 100% rename from source/flights/detail/023615.json rename to source/flights/detail/023/023615.json diff --git a/source/flights/detail/023616.json b/source/flights/detail/023/023616.json similarity index 100% rename from source/flights/detail/023616.json rename to source/flights/detail/023/023616.json diff --git a/source/flights/detail/023617.json b/source/flights/detail/023/023617.json similarity index 100% rename from source/flights/detail/023617.json rename to source/flights/detail/023/023617.json diff --git a/source/flights/detail/023618.json b/source/flights/detail/023/023618.json similarity index 100% rename from source/flights/detail/023618.json rename to source/flights/detail/023/023618.json diff --git a/source/flights/detail/023623.json b/source/flights/detail/023/023623.json similarity index 100% rename from source/flights/detail/023623.json rename to source/flights/detail/023/023623.json diff --git a/source/flights/detail/023625.json b/source/flights/detail/023/023625.json similarity index 100% rename from source/flights/detail/023625.json rename to source/flights/detail/023/023625.json diff --git a/source/flights/detail/023632.json b/source/flights/detail/023/023632.json similarity index 100% rename from source/flights/detail/023632.json rename to source/flights/detail/023/023632.json diff --git a/source/flights/detail/023633.json b/source/flights/detail/023/023633.json similarity index 100% rename from source/flights/detail/023633.json rename to source/flights/detail/023/023633.json diff --git a/source/flights/detail/023634.json b/source/flights/detail/023/023634.json similarity index 100% rename from source/flights/detail/023634.json rename to source/flights/detail/023/023634.json diff --git a/source/flights/detail/023635.json b/source/flights/detail/023/023635.json similarity index 100% rename from source/flights/detail/023635.json rename to source/flights/detail/023/023635.json diff --git a/source/flights/detail/023636.json b/source/flights/detail/023/023636.json similarity index 100% rename from source/flights/detail/023636.json rename to source/flights/detail/023/023636.json diff --git a/source/flights/detail/023645.json b/source/flights/detail/023/023645.json similarity index 100% rename from source/flights/detail/023645.json rename to source/flights/detail/023/023645.json diff --git a/source/flights/detail/023646.json b/source/flights/detail/023/023646.json similarity index 100% rename from source/flights/detail/023646.json rename to source/flights/detail/023/023646.json diff --git a/source/flights/detail/023649.json b/source/flights/detail/023/023649.json similarity index 100% rename from source/flights/detail/023649.json rename to source/flights/detail/023/023649.json diff --git a/source/flights/detail/023650.json b/source/flights/detail/023/023650.json similarity index 100% rename from source/flights/detail/023650.json rename to source/flights/detail/023/023650.json diff --git a/source/flights/detail/023698.json b/source/flights/detail/023/023698.json similarity index 100% rename from source/flights/detail/023698.json rename to source/flights/detail/023/023698.json diff --git a/source/flights/detail/023702.json b/source/flights/detail/023/023702.json similarity index 100% rename from source/flights/detail/023702.json rename to source/flights/detail/023/023702.json diff --git a/source/flights/detail/023704.json b/source/flights/detail/023/023704.json similarity index 100% rename from source/flights/detail/023704.json rename to source/flights/detail/023/023704.json diff --git a/source/flights/detail/023705.json b/source/flights/detail/023/023705.json similarity index 100% rename from source/flights/detail/023705.json rename to source/flights/detail/023/023705.json diff --git a/source/flights/detail/023706.json b/source/flights/detail/023/023706.json similarity index 100% rename from source/flights/detail/023706.json rename to source/flights/detail/023/023706.json diff --git a/source/flights/detail/023707.json b/source/flights/detail/023/023707.json similarity index 100% rename from source/flights/detail/023707.json rename to source/flights/detail/023/023707.json diff --git a/source/flights/detail/023709.json b/source/flights/detail/023/023709.json similarity index 100% rename from source/flights/detail/023709.json rename to source/flights/detail/023/023709.json diff --git a/source/flights/detail/023711.json b/source/flights/detail/023/023711.json similarity index 100% rename from source/flights/detail/023711.json rename to source/flights/detail/023/023711.json diff --git a/source/flights/detail/023712.json b/source/flights/detail/023/023712.json similarity index 100% rename from source/flights/detail/023712.json rename to source/flights/detail/023/023712.json diff --git a/source/flights/detail/023713.json b/source/flights/detail/023/023713.json similarity index 100% rename from source/flights/detail/023713.json rename to source/flights/detail/023/023713.json diff --git a/source/flights/detail/023714.json b/source/flights/detail/023/023714.json similarity index 100% rename from source/flights/detail/023714.json rename to source/flights/detail/023/023714.json diff --git a/source/flights/detail/023716.json b/source/flights/detail/023/023716.json similarity index 100% rename from source/flights/detail/023716.json rename to source/flights/detail/023/023716.json diff --git a/source/flights/detail/023725.json b/source/flights/detail/023/023725.json similarity index 100% rename from source/flights/detail/023725.json rename to source/flights/detail/023/023725.json diff --git a/source/flights/detail/023727.json b/source/flights/detail/023/023727.json similarity index 100% rename from source/flights/detail/023727.json rename to source/flights/detail/023/023727.json diff --git a/source/flights/detail/023737.json b/source/flights/detail/023/023737.json similarity index 100% rename from source/flights/detail/023737.json rename to source/flights/detail/023/023737.json diff --git a/source/flights/detail/023739.json b/source/flights/detail/023/023739.json similarity index 100% rename from source/flights/detail/023739.json rename to source/flights/detail/023/023739.json diff --git a/source/flights/detail/023740.json b/source/flights/detail/023/023740.json similarity index 100% rename from source/flights/detail/023740.json rename to source/flights/detail/023/023740.json diff --git a/source/flights/detail/024004.json b/source/flights/detail/024/024004.json similarity index 100% rename from source/flights/detail/024004.json rename to source/flights/detail/024/024004.json diff --git a/source/flights/detail/024016.json b/source/flights/detail/024/024016.json similarity index 100% rename from source/flights/detail/024016.json rename to source/flights/detail/024/024016.json diff --git a/source/flights/detail/024017.json b/source/flights/detail/024/024017.json similarity index 100% rename from source/flights/detail/024017.json rename to source/flights/detail/024/024017.json diff --git a/source/flights/detail/024025.json b/source/flights/detail/024/024025.json similarity index 100% rename from source/flights/detail/024025.json rename to source/flights/detail/024/024025.json diff --git a/source/flights/detail/024069.json b/source/flights/detail/024/024069.json similarity index 100% rename from source/flights/detail/024069.json rename to source/flights/detail/024/024069.json diff --git a/source/flights/detail/024070.json b/source/flights/detail/024/024070.json similarity index 100% rename from source/flights/detail/024070.json rename to source/flights/detail/024/024070.json diff --git a/source/flights/detail/024072.json b/source/flights/detail/024/024072.json similarity index 100% rename from source/flights/detail/024072.json rename to source/flights/detail/024/024072.json diff --git a/source/flights/detail/024074.json b/source/flights/detail/024/024074.json similarity index 100% rename from source/flights/detail/024074.json rename to source/flights/detail/024/024074.json diff --git a/source/flights/detail/024079.json b/source/flights/detail/024/024079.json similarity index 100% rename from source/flights/detail/024079.json rename to source/flights/detail/024/024079.json diff --git a/source/flights/detail/024080.json b/source/flights/detail/024/024080.json similarity index 100% rename from source/flights/detail/024080.json rename to source/flights/detail/024/024080.json diff --git a/source/flights/detail/024083.json b/source/flights/detail/024/024083.json similarity index 100% rename from source/flights/detail/024083.json rename to source/flights/detail/024/024083.json diff --git a/source/flights/detail/024088.json b/source/flights/detail/024/024088.json similarity index 100% rename from source/flights/detail/024088.json rename to source/flights/detail/024/024088.json diff --git a/source/flights/detail/024089.json b/source/flights/detail/024/024089.json similarity index 100% rename from source/flights/detail/024089.json rename to source/flights/detail/024/024089.json diff --git a/source/flights/detail/024092.json b/source/flights/detail/024/024092.json similarity index 100% rename from source/flights/detail/024092.json rename to source/flights/detail/024/024092.json diff --git a/source/flights/detail/024093.json b/source/flights/detail/024/024093.json similarity index 100% rename from source/flights/detail/024093.json rename to source/flights/detail/024/024093.json diff --git a/source/flights/detail/024096.json b/source/flights/detail/024/024096.json similarity index 100% rename from source/flights/detail/024096.json rename to source/flights/detail/024/024096.json diff --git a/source/flights/detail/024097.json b/source/flights/detail/024/024097.json similarity index 100% rename from source/flights/detail/024097.json rename to source/flights/detail/024/024097.json diff --git a/source/flights/detail/024103.json b/source/flights/detail/024/024103.json similarity index 100% rename from source/flights/detail/024103.json rename to source/flights/detail/024/024103.json diff --git a/source/flights/detail/024113.json b/source/flights/detail/024/024113.json similarity index 100% rename from source/flights/detail/024113.json rename to source/flights/detail/024/024113.json diff --git a/source/flights/detail/024116.json b/source/flights/detail/024/024116.json similarity index 100% rename from source/flights/detail/024116.json rename to source/flights/detail/024/024116.json diff --git a/source/flights/detail/024134.json b/source/flights/detail/024/024134.json similarity index 100% rename from source/flights/detail/024134.json rename to source/flights/detail/024/024134.json diff --git a/source/flights/detail/024139.json b/source/flights/detail/024/024139.json similarity index 100% rename from source/flights/detail/024139.json rename to source/flights/detail/024/024139.json diff --git a/source/flights/detail/024142.json b/source/flights/detail/024/024142.json similarity index 100% rename from source/flights/detail/024142.json rename to source/flights/detail/024/024142.json diff --git a/source/flights/detail/024143.json b/source/flights/detail/024/024143.json similarity index 100% rename from source/flights/detail/024143.json rename to source/flights/detail/024/024143.json diff --git a/source/flights/detail/024144.json b/source/flights/detail/024/024144.json similarity index 100% rename from source/flights/detail/024144.json rename to source/flights/detail/024/024144.json diff --git a/source/flights/detail/024162.json b/source/flights/detail/024/024162.json similarity index 100% rename from source/flights/detail/024162.json rename to source/flights/detail/024/024162.json diff --git a/source/flights/detail/024163.json b/source/flights/detail/024/024163.json similarity index 100% rename from source/flights/detail/024163.json rename to source/flights/detail/024/024163.json diff --git a/source/flights/detail/024301.json b/source/flights/detail/024/024301.json similarity index 100% rename from source/flights/detail/024301.json rename to source/flights/detail/024/024301.json diff --git a/source/flights/detail/024302.json b/source/flights/detail/024/024302.json similarity index 100% rename from source/flights/detail/024302.json rename to source/flights/detail/024/024302.json diff --git a/source/flights/detail/024303.json b/source/flights/detail/024/024303.json similarity index 100% rename from source/flights/detail/024303.json rename to source/flights/detail/024/024303.json diff --git a/source/flights/detail/024304.json b/source/flights/detail/024/024304.json similarity index 100% rename from source/flights/detail/024304.json rename to source/flights/detail/024/024304.json diff --git a/source/flights/detail/024305.json b/source/flights/detail/024/024305.json similarity index 100% rename from source/flights/detail/024305.json rename to source/flights/detail/024/024305.json diff --git a/source/flights/detail/024309.json b/source/flights/detail/024/024309.json similarity index 100% rename from source/flights/detail/024309.json rename to source/flights/detail/024/024309.json diff --git a/source/flights/detail/024310.json b/source/flights/detail/024/024310.json similarity index 100% rename from source/flights/detail/024310.json rename to source/flights/detail/024/024310.json diff --git a/source/flights/detail/024880.json b/source/flights/detail/024/024880.json similarity index 100% rename from source/flights/detail/024880.json rename to source/flights/detail/024/024880.json diff --git a/source/flights/detail/024894.json b/source/flights/detail/024/024894.json similarity index 100% rename from source/flights/detail/024894.json rename to source/flights/detail/024/024894.json diff --git a/source/flights/detail/024895.json b/source/flights/detail/024/024895.json similarity index 100% rename from source/flights/detail/024895.json rename to source/flights/detail/024/024895.json diff --git a/source/flights/detail/024896.json b/source/flights/detail/024/024896.json similarity index 100% rename from source/flights/detail/024896.json rename to source/flights/detail/024/024896.json diff --git a/source/flights/detail/024924.json b/source/flights/detail/024/024924.json similarity index 100% rename from source/flights/detail/024924.json rename to source/flights/detail/024/024924.json diff --git a/source/flights/detail/024925.json b/source/flights/detail/024/024925.json similarity index 100% rename from source/flights/detail/024925.json rename to source/flights/detail/024/024925.json diff --git a/source/flights/detail/024928.json b/source/flights/detail/024/024928.json similarity index 100% rename from source/flights/detail/024928.json rename to source/flights/detail/024/024928.json diff --git a/source/flights/detail/024935.json b/source/flights/detail/024/024935.json similarity index 100% rename from source/flights/detail/024935.json rename to source/flights/detail/024/024935.json diff --git a/source/flights/detail/024939.json b/source/flights/detail/024/024939.json similarity index 100% rename from source/flights/detail/024939.json rename to source/flights/detail/024/024939.json diff --git a/source/flights/detail/024940.json b/source/flights/detail/024/024940.json similarity index 100% rename from source/flights/detail/024940.json rename to source/flights/detail/024/024940.json diff --git a/source/flights/detail/024947.json b/source/flights/detail/024/024947.json similarity index 100% rename from source/flights/detail/024947.json rename to source/flights/detail/024/024947.json diff --git a/source/flights/detail/024948.json b/source/flights/detail/024/024948.json similarity index 100% rename from source/flights/detail/024948.json rename to source/flights/detail/024/024948.json diff --git a/source/flights/detail/024957.json b/source/flights/detail/024/024957.json similarity index 100% rename from source/flights/detail/024957.json rename to source/flights/detail/024/024957.json diff --git a/source/flights/detail/024968.json b/source/flights/detail/024/024968.json similarity index 100% rename from source/flights/detail/024968.json rename to source/flights/detail/024/024968.json diff --git a/source/flights/detail/025011.json b/source/flights/detail/025/025011.json similarity index 100% rename from source/flights/detail/025011.json rename to source/flights/detail/025/025011.json diff --git a/source/flights/detail/025062.json b/source/flights/detail/025/025062.json similarity index 100% rename from source/flights/detail/025062.json rename to source/flights/detail/025/025062.json diff --git a/source/flights/detail/025063.json b/source/flights/detail/025/025063.json similarity index 100% rename from source/flights/detail/025063.json rename to source/flights/detail/025/025063.json diff --git a/source/flights/detail/025065.json b/source/flights/detail/025/025065.json similarity index 100% rename from source/flights/detail/025065.json rename to source/flights/detail/025/025065.json diff --git a/source/flights/detail/025066.json b/source/flights/detail/025/025066.json similarity index 100% rename from source/flights/detail/025066.json rename to source/flights/detail/025/025066.json diff --git a/source/flights/detail/025067.json b/source/flights/detail/025/025067.json similarity index 100% rename from source/flights/detail/025067.json rename to source/flights/detail/025/025067.json diff --git a/source/flights/detail/025070.json b/source/flights/detail/025/025070.json similarity index 100% rename from source/flights/detail/025070.json rename to source/flights/detail/025/025070.json diff --git a/source/flights/detail/025072.json b/source/flights/detail/025/025072.json similarity index 100% rename from source/flights/detail/025072.json rename to source/flights/detail/025/025072.json diff --git a/source/flights/detail/025073.json b/source/flights/detail/025/025073.json similarity index 100% rename from source/flights/detail/025073.json rename to source/flights/detail/025/025073.json diff --git a/source/flights/detail/025078.json b/source/flights/detail/025/025078.json similarity index 100% rename from source/flights/detail/025078.json rename to source/flights/detail/025/025078.json diff --git a/source/flights/detail/025079.json b/source/flights/detail/025/025079.json similarity index 100% rename from source/flights/detail/025079.json rename to source/flights/detail/025/025079.json diff --git a/source/flights/detail/025080.json b/source/flights/detail/025/025080.json similarity index 100% rename from source/flights/detail/025080.json rename to source/flights/detail/025/025080.json diff --git a/source/flights/detail/025087.json b/source/flights/detail/025/025087.json similarity index 100% rename from source/flights/detail/025087.json rename to source/flights/detail/025/025087.json diff --git a/source/flights/detail/025093.json b/source/flights/detail/025/025093.json similarity index 100% rename from source/flights/detail/025093.json rename to source/flights/detail/025/025093.json diff --git a/source/flights/detail/025108.json b/source/flights/detail/025/025108.json similarity index 100% rename from source/flights/detail/025108.json rename to source/flights/detail/025/025108.json diff --git a/source/flights/detail/025115.json b/source/flights/detail/025/025115.json similarity index 100% rename from source/flights/detail/025115.json rename to source/flights/detail/025/025115.json diff --git a/source/flights/detail/025127.json b/source/flights/detail/025/025127.json similarity index 100% rename from source/flights/detail/025127.json rename to source/flights/detail/025/025127.json diff --git a/source/flights/detail/025128.json b/source/flights/detail/025/025128.json similarity index 100% rename from source/flights/detail/025128.json rename to source/flights/detail/025/025128.json diff --git a/source/flights/detail/025130.json b/source/flights/detail/025/025130.json similarity index 100% rename from source/flights/detail/025130.json rename to source/flights/detail/025/025130.json diff --git a/source/flights/detail/025137.json b/source/flights/detail/025/025137.json similarity index 100% rename from source/flights/detail/025137.json rename to source/flights/detail/025/025137.json diff --git a/source/flights/detail/025148.json b/source/flights/detail/025/025148.json similarity index 100% rename from source/flights/detail/025148.json rename to source/flights/detail/025/025148.json diff --git a/source/flights/detail/025151.json b/source/flights/detail/025/025151.json similarity index 100% rename from source/flights/detail/025151.json rename to source/flights/detail/025/025151.json diff --git a/source/flights/detail/025152.json b/source/flights/detail/025/025152.json similarity index 100% rename from source/flights/detail/025152.json rename to source/flights/detail/025/025152.json diff --git a/source/flights/detail/025156.json b/source/flights/detail/025/025156.json similarity index 100% rename from source/flights/detail/025156.json rename to source/flights/detail/025/025156.json diff --git a/source/flights/detail/025158.json b/source/flights/detail/025/025158.json similarity index 100% rename from source/flights/detail/025158.json rename to source/flights/detail/025/025158.json diff --git a/source/flights/detail/025165.json b/source/flights/detail/025/025165.json similarity index 100% rename from source/flights/detail/025165.json rename to source/flights/detail/025/025165.json diff --git a/source/flights/detail/025167.json b/source/flights/detail/025/025167.json similarity index 100% rename from source/flights/detail/025167.json rename to source/flights/detail/025/025167.json diff --git a/source/flights/detail/025170.json b/source/flights/detail/025/025170.json similarity index 100% rename from source/flights/detail/025170.json rename to source/flights/detail/025/025170.json diff --git a/source/flights/detail/025179.json b/source/flights/detail/025/025179.json similarity index 100% rename from source/flights/detail/025179.json rename to source/flights/detail/025/025179.json diff --git a/source/flights/detail/025191.json b/source/flights/detail/025/025191.json similarity index 100% rename from source/flights/detail/025191.json rename to source/flights/detail/025/025191.json diff --git a/source/flights/detail/025192.json b/source/flights/detail/025/025192.json similarity index 100% rename from source/flights/detail/025192.json rename to source/flights/detail/025/025192.json diff --git a/source/flights/detail/025193.json b/source/flights/detail/025/025193.json similarity index 100% rename from source/flights/detail/025193.json rename to source/flights/detail/025/025193.json diff --git a/source/flights/detail/025197.json b/source/flights/detail/025/025197.json similarity index 100% rename from source/flights/detail/025197.json rename to source/flights/detail/025/025197.json diff --git a/source/flights/detail/025204.json b/source/flights/detail/025/025204.json similarity index 100% rename from source/flights/detail/025204.json rename to source/flights/detail/025/025204.json diff --git a/source/flights/detail/025209.json b/source/flights/detail/025/025209.json similarity index 100% rename from source/flights/detail/025209.json rename to source/flights/detail/025/025209.json diff --git a/source/flights/detail/025210.json b/source/flights/detail/025/025210.json similarity index 100% rename from source/flights/detail/025210.json rename to source/flights/detail/025/025210.json diff --git a/source/flights/detail/025212.json b/source/flights/detail/025/025212.json similarity index 100% rename from source/flights/detail/025212.json rename to source/flights/detail/025/025212.json diff --git a/source/flights/detail/025213.json b/source/flights/detail/025/025213.json similarity index 100% rename from source/flights/detail/025213.json rename to source/flights/detail/025/025213.json diff --git a/source/flights/detail/025237.json b/source/flights/detail/025/025237.json similarity index 100% rename from source/flights/detail/025237.json rename to source/flights/detail/025/025237.json diff --git a/source/flights/detail/025241.json b/source/flights/detail/025/025241.json similarity index 100% rename from source/flights/detail/025241.json rename to source/flights/detail/025/025241.json diff --git a/source/flights/detail/025242.json b/source/flights/detail/025/025242.json similarity index 100% rename from source/flights/detail/025242.json rename to source/flights/detail/025/025242.json diff --git a/source/flights/detail/025256.json b/source/flights/detail/025/025256.json similarity index 100% rename from source/flights/detail/025256.json rename to source/flights/detail/025/025256.json diff --git a/source/flights/detail/025258.json b/source/flights/detail/025/025258.json similarity index 100% rename from source/flights/detail/025258.json rename to source/flights/detail/025/025258.json diff --git a/source/flights/detail/025262.json b/source/flights/detail/025/025262.json similarity index 100% rename from source/flights/detail/025262.json rename to source/flights/detail/025/025262.json diff --git a/source/flights/detail/025271.json b/source/flights/detail/025/025271.json similarity index 100% rename from source/flights/detail/025271.json rename to source/flights/detail/025/025271.json diff --git a/source/flights/detail/025306.json b/source/flights/detail/025/025306.json similarity index 100% rename from source/flights/detail/025306.json rename to source/flights/detail/025/025306.json diff --git a/source/flights/detail/025311.json b/source/flights/detail/025/025311.json similarity index 100% rename from source/flights/detail/025311.json rename to source/flights/detail/025/025311.json diff --git a/source/flights/detail/025312.json b/source/flights/detail/025/025312.json similarity index 100% rename from source/flights/detail/025312.json rename to source/flights/detail/025/025312.json diff --git a/source/flights/detail/025322.json b/source/flights/detail/025/025322.json similarity index 100% rename from source/flights/detail/025322.json rename to source/flights/detail/025/025322.json diff --git a/source/flights/detail/025325.json b/source/flights/detail/025/025325.json similarity index 100% rename from source/flights/detail/025325.json rename to source/flights/detail/025/025325.json diff --git a/source/flights/detail/025328.json b/source/flights/detail/025/025328.json similarity index 100% rename from source/flights/detail/025328.json rename to source/flights/detail/025/025328.json diff --git a/source/flights/detail/025330.json b/source/flights/detail/025/025330.json similarity index 100% rename from source/flights/detail/025330.json rename to source/flights/detail/025/025330.json diff --git a/source/flights/detail/025331.json b/source/flights/detail/025/025331.json similarity index 100% rename from source/flights/detail/025331.json rename to source/flights/detail/025/025331.json diff --git a/source/flights/detail/025336.json b/source/flights/detail/025/025336.json similarity index 100% rename from source/flights/detail/025336.json rename to source/flights/detail/025/025336.json diff --git a/source/flights/detail/025342.json b/source/flights/detail/025/025342.json similarity index 100% rename from source/flights/detail/025342.json rename to source/flights/detail/025/025342.json diff --git a/source/flights/detail/025343.json b/source/flights/detail/025/025343.json similarity index 100% rename from source/flights/detail/025343.json rename to source/flights/detail/025/025343.json diff --git a/source/flights/detail/025348.json b/source/flights/detail/025/025348.json similarity index 100% rename from source/flights/detail/025348.json rename to source/flights/detail/025/025348.json diff --git a/source/flights/detail/025364.json b/source/flights/detail/025/025364.json similarity index 100% rename from source/flights/detail/025364.json rename to source/flights/detail/025/025364.json diff --git a/source/flights/detail/025367.json b/source/flights/detail/025/025367.json similarity index 100% rename from source/flights/detail/025367.json rename to source/flights/detail/025/025367.json diff --git a/source/flights/detail/025370.json b/source/flights/detail/025/025370.json similarity index 100% rename from source/flights/detail/025370.json rename to source/flights/detail/025/025370.json diff --git a/source/flights/detail/025372.json b/source/flights/detail/025/025372.json similarity index 100% rename from source/flights/detail/025372.json rename to source/flights/detail/025/025372.json diff --git a/source/flights/detail/025426.json b/source/flights/detail/025/025426.json similarity index 100% rename from source/flights/detail/025426.json rename to source/flights/detail/025/025426.json diff --git a/source/flights/detail/025427.json b/source/flights/detail/025/025427.json similarity index 100% rename from source/flights/detail/025427.json rename to source/flights/detail/025/025427.json diff --git a/source/flights/detail/025428.json b/source/flights/detail/025/025428.json similarity index 100% rename from source/flights/detail/025428.json rename to source/flights/detail/025/025428.json diff --git a/source/flights/detail/025429.json b/source/flights/detail/025/025429.json similarity index 100% rename from source/flights/detail/025429.json rename to source/flights/detail/025/025429.json diff --git a/source/flights/detail/025432.json b/source/flights/detail/025/025432.json similarity index 100% rename from source/flights/detail/025432.json rename to source/flights/detail/025/025432.json diff --git a/source/flights/detail/025436.json b/source/flights/detail/025/025436.json similarity index 100% rename from source/flights/detail/025436.json rename to source/flights/detail/025/025436.json diff --git a/source/flights/detail/025440.json b/source/flights/detail/025/025440.json similarity index 100% rename from source/flights/detail/025440.json rename to source/flights/detail/025/025440.json diff --git a/source/flights/detail/025459.json b/source/flights/detail/025/025459.json similarity index 100% rename from source/flights/detail/025459.json rename to source/flights/detail/025/025459.json diff --git a/source/flights/detail/025482.json b/source/flights/detail/025/025482.json similarity index 100% rename from source/flights/detail/025482.json rename to source/flights/detail/025/025482.json diff --git a/source/flights/detail/025501.json b/source/flights/detail/025/025501.json similarity index 100% rename from source/flights/detail/025501.json rename to source/flights/detail/025/025501.json diff --git a/source/flights/detail/025510.json b/source/flights/detail/025/025510.json similarity index 100% rename from source/flights/detail/025510.json rename to source/flights/detail/025/025510.json diff --git a/source/flights/detail/025512.json b/source/flights/detail/025/025512.json similarity index 100% rename from source/flights/detail/025512.json rename to source/flights/detail/025/025512.json diff --git a/source/flights/detail/025513.json b/source/flights/detail/025/025513.json similarity index 100% rename from source/flights/detail/025513.json rename to source/flights/detail/025/025513.json diff --git a/source/flights/detail/025517.json b/source/flights/detail/025/025517.json similarity index 100% rename from source/flights/detail/025517.json rename to source/flights/detail/025/025517.json diff --git a/source/flights/detail/025518.json b/source/flights/detail/025/025518.json similarity index 100% rename from source/flights/detail/025518.json rename to source/flights/detail/025/025518.json diff --git a/source/flights/detail/025533.json b/source/flights/detail/025/025533.json similarity index 100% rename from source/flights/detail/025533.json rename to source/flights/detail/025/025533.json diff --git a/source/flights/detail/025534.json b/source/flights/detail/025/025534.json similarity index 100% rename from source/flights/detail/025534.json rename to source/flights/detail/025/025534.json diff --git a/source/flights/detail/025535.json b/source/flights/detail/025/025535.json similarity index 100% rename from source/flights/detail/025535.json rename to source/flights/detail/025/025535.json diff --git a/source/flights/detail/025572.json b/source/flights/detail/025/025572.json similarity index 100% rename from source/flights/detail/025572.json rename to source/flights/detail/025/025572.json diff --git a/source/flights/detail/025573.json b/source/flights/detail/025/025573.json similarity index 100% rename from source/flights/detail/025573.json rename to source/flights/detail/025/025573.json diff --git a/source/flights/detail/025575.json b/source/flights/detail/025/025575.json similarity index 100% rename from source/flights/detail/025575.json rename to source/flights/detail/025/025575.json diff --git a/source/flights/detail/025579.json b/source/flights/detail/025/025579.json similarity index 100% rename from source/flights/detail/025579.json rename to source/flights/detail/025/025579.json diff --git a/source/flights/detail/025582.json b/source/flights/detail/025/025582.json similarity index 100% rename from source/flights/detail/025582.json rename to source/flights/detail/025/025582.json diff --git a/source/flights/detail/025584.json b/source/flights/detail/025/025584.json similarity index 100% rename from source/flights/detail/025584.json rename to source/flights/detail/025/025584.json diff --git a/source/flights/detail/025590.json b/source/flights/detail/025/025590.json similarity index 100% rename from source/flights/detail/025590.json rename to source/flights/detail/025/025590.json diff --git a/source/flights/detail/025594.json b/source/flights/detail/025/025594.json similarity index 100% rename from source/flights/detail/025594.json rename to source/flights/detail/025/025594.json diff --git a/source/flights/detail/025599.json b/source/flights/detail/025/025599.json similarity index 100% rename from source/flights/detail/025599.json rename to source/flights/detail/025/025599.json diff --git a/source/flights/detail/025604.json b/source/flights/detail/025/025604.json similarity index 100% rename from source/flights/detail/025604.json rename to source/flights/detail/025/025604.json diff --git a/source/flights/detail/025666.json b/source/flights/detail/025/025666.json similarity index 100% rename from source/flights/detail/025666.json rename to source/flights/detail/025/025666.json diff --git a/source/flights/detail/025667.json b/source/flights/detail/025/025667.json similarity index 100% rename from source/flights/detail/025667.json rename to source/flights/detail/025/025667.json diff --git a/source/flights/detail/025671.json b/source/flights/detail/025/025671.json similarity index 100% rename from source/flights/detail/025671.json rename to source/flights/detail/025/025671.json diff --git a/source/flights/detail/025672.json b/source/flights/detail/025/025672.json similarity index 100% rename from source/flights/detail/025672.json rename to source/flights/detail/025/025672.json diff --git a/source/flights/detail/025684.json b/source/flights/detail/025/025684.json similarity index 100% rename from source/flights/detail/025684.json rename to source/flights/detail/025/025684.json diff --git a/source/flights/detail/025685.json b/source/flights/detail/025/025685.json similarity index 100% rename from source/flights/detail/025685.json rename to source/flights/detail/025/025685.json diff --git a/source/flights/detail/025687.json b/source/flights/detail/025/025687.json similarity index 100% rename from source/flights/detail/025687.json rename to source/flights/detail/025/025687.json diff --git a/source/flights/detail/025690.json b/source/flights/detail/025/025690.json similarity index 100% rename from source/flights/detail/025690.json rename to source/flights/detail/025/025690.json diff --git a/source/flights/detail/025695.json b/source/flights/detail/025/025695.json similarity index 100% rename from source/flights/detail/025695.json rename to source/flights/detail/025/025695.json diff --git a/source/flights/detail/025696.json b/source/flights/detail/025/025696.json similarity index 100% rename from source/flights/detail/025696.json rename to source/flights/detail/025/025696.json diff --git a/source/flights/detail/025697.json b/source/flights/detail/025/025697.json similarity index 100% rename from source/flights/detail/025697.json rename to source/flights/detail/025/025697.json diff --git a/source/flights/detail/025699.json b/source/flights/detail/025/025699.json similarity index 100% rename from source/flights/detail/025699.json rename to source/flights/detail/025/025699.json diff --git a/source/flights/detail/025701.json b/source/flights/detail/025/025701.json similarity index 100% rename from source/flights/detail/025701.json rename to source/flights/detail/025/025701.json diff --git a/source/flights/detail/025704.json b/source/flights/detail/025/025704.json similarity index 100% rename from source/flights/detail/025704.json rename to source/flights/detail/025/025704.json diff --git a/source/flights/detail/025717.json b/source/flights/detail/025/025717.json similarity index 100% rename from source/flights/detail/025717.json rename to source/flights/detail/025/025717.json diff --git a/source/flights/detail/025719.json b/source/flights/detail/025/025719.json similarity index 100% rename from source/flights/detail/025719.json rename to source/flights/detail/025/025719.json diff --git a/source/flights/detail/025721.json b/source/flights/detail/025/025721.json similarity index 100% rename from source/flights/detail/025721.json rename to source/flights/detail/025/025721.json diff --git a/source/flights/detail/025725.json b/source/flights/detail/025/025725.json similarity index 100% rename from source/flights/detail/025725.json rename to source/flights/detail/025/025725.json diff --git a/source/flights/detail/025726.json b/source/flights/detail/025/025726.json similarity index 100% rename from source/flights/detail/025726.json rename to source/flights/detail/025/025726.json diff --git a/source/flights/detail/025727.json b/source/flights/detail/025/025727.json similarity index 100% rename from source/flights/detail/025727.json rename to source/flights/detail/025/025727.json diff --git a/source/flights/detail/025732.json b/source/flights/detail/025/025732.json similarity index 100% rename from source/flights/detail/025732.json rename to source/flights/detail/025/025732.json diff --git a/source/flights/detail/025736.json b/source/flights/detail/025/025736.json similarity index 100% rename from source/flights/detail/025736.json rename to source/flights/detail/025/025736.json diff --git a/source/flights/detail/025739.json b/source/flights/detail/025/025739.json similarity index 100% rename from source/flights/detail/025739.json rename to source/flights/detail/025/025739.json diff --git a/source/flights/detail/025740.json b/source/flights/detail/025/025740.json similarity index 100% rename from source/flights/detail/025740.json rename to source/flights/detail/025/025740.json diff --git a/source/flights/detail/025741.json b/source/flights/detail/025/025741.json similarity index 100% rename from source/flights/detail/025741.json rename to source/flights/detail/025/025741.json diff --git a/source/flights/detail/025742.json b/source/flights/detail/025/025742.json similarity index 100% rename from source/flights/detail/025742.json rename to source/flights/detail/025/025742.json diff --git a/source/flights/detail/025747.json b/source/flights/detail/025/025747.json similarity index 100% rename from source/flights/detail/025747.json rename to source/flights/detail/025/025747.json diff --git a/source/flights/detail/025748.json b/source/flights/detail/025/025748.json similarity index 100% rename from source/flights/detail/025748.json rename to source/flights/detail/025/025748.json diff --git a/source/flights/detail/025749.json b/source/flights/detail/025/025749.json similarity index 100% rename from source/flights/detail/025749.json rename to source/flights/detail/025/025749.json diff --git a/source/flights/detail/025772.json b/source/flights/detail/025/025772.json similarity index 100% rename from source/flights/detail/025772.json rename to source/flights/detail/025/025772.json diff --git a/source/flights/detail/025775.json b/source/flights/detail/025/025775.json similarity index 100% rename from source/flights/detail/025775.json rename to source/flights/detail/025/025775.json diff --git a/source/flights/detail/025777.json b/source/flights/detail/025/025777.json similarity index 100% rename from source/flights/detail/025777.json rename to source/flights/detail/025/025777.json diff --git a/source/flights/detail/025778.json b/source/flights/detail/025/025778.json similarity index 100% rename from source/flights/detail/025778.json rename to source/flights/detail/025/025778.json diff --git a/source/flights/detail/025781.json b/source/flights/detail/025/025781.json similarity index 100% rename from source/flights/detail/025781.json rename to source/flights/detail/025/025781.json diff --git a/source/flights/detail/025784.json b/source/flights/detail/025/025784.json similarity index 100% rename from source/flights/detail/025784.json rename to source/flights/detail/025/025784.json diff --git a/source/flights/detail/025787.json b/source/flights/detail/025/025787.json similarity index 100% rename from source/flights/detail/025787.json rename to source/flights/detail/025/025787.json diff --git a/source/flights/detail/025790.json b/source/flights/detail/025/025790.json similarity index 100% rename from source/flights/detail/025790.json rename to source/flights/detail/025/025790.json diff --git a/source/flights/detail/025799.json b/source/flights/detail/025/025799.json similarity index 100% rename from source/flights/detail/025799.json rename to source/flights/detail/025/025799.json diff --git a/source/flights/detail/025801.json b/source/flights/detail/025/025801.json similarity index 100% rename from source/flights/detail/025801.json rename to source/flights/detail/025/025801.json diff --git a/source/flights/detail/025804.json b/source/flights/detail/025/025804.json similarity index 100% rename from source/flights/detail/025804.json rename to source/flights/detail/025/025804.json diff --git a/source/flights/detail/025806.json b/source/flights/detail/025/025806.json similarity index 100% rename from source/flights/detail/025806.json rename to source/flights/detail/025/025806.json diff --git a/source/flights/detail/025807.json b/source/flights/detail/025/025807.json similarity index 100% rename from source/flights/detail/025807.json rename to source/flights/detail/025/025807.json diff --git a/source/flights/detail/025808.json b/source/flights/detail/025/025808.json similarity index 100% rename from source/flights/detail/025808.json rename to source/flights/detail/025/025808.json diff --git a/source/flights/detail/025831.json b/source/flights/detail/025/025831.json similarity index 100% rename from source/flights/detail/025831.json rename to source/flights/detail/025/025831.json diff --git a/source/flights/detail/025832.json b/source/flights/detail/025/025832.json similarity index 100% rename from source/flights/detail/025832.json rename to source/flights/detail/025/025832.json diff --git a/source/flights/detail/025833.json b/source/flights/detail/025/025833.json similarity index 100% rename from source/flights/detail/025833.json rename to source/flights/detail/025/025833.json diff --git a/source/flights/detail/025835.json b/source/flights/detail/025/025835.json similarity index 100% rename from source/flights/detail/025835.json rename to source/flights/detail/025/025835.json diff --git a/source/flights/detail/025836.json b/source/flights/detail/025/025836.json similarity index 100% rename from source/flights/detail/025836.json rename to source/flights/detail/025/025836.json diff --git a/source/flights/detail/025843.json b/source/flights/detail/025/025843.json similarity index 100% rename from source/flights/detail/025843.json rename to source/flights/detail/025/025843.json diff --git a/source/flights/detail/025845.json b/source/flights/detail/025/025845.json similarity index 100% rename from source/flights/detail/025845.json rename to source/flights/detail/025/025845.json diff --git a/source/flights/detail/025846.json b/source/flights/detail/025/025846.json similarity index 100% rename from source/flights/detail/025846.json rename to source/flights/detail/025/025846.json diff --git a/source/flights/detail/025847.json b/source/flights/detail/025/025847.json similarity index 100% rename from source/flights/detail/025847.json rename to source/flights/detail/025/025847.json diff --git a/source/flights/detail/025849.json b/source/flights/detail/025/025849.json similarity index 100% rename from source/flights/detail/025849.json rename to source/flights/detail/025/025849.json diff --git a/source/flights/detail/025850.json b/source/flights/detail/025/025850.json similarity index 100% rename from source/flights/detail/025850.json rename to source/flights/detail/025/025850.json diff --git a/source/flights/detail/025921.json b/source/flights/detail/025/025921.json similarity index 100% rename from source/flights/detail/025921.json rename to source/flights/detail/025/025921.json diff --git a/source/flights/detail/025936.json b/source/flights/detail/025/025936.json similarity index 100% rename from source/flights/detail/025936.json rename to source/flights/detail/025/025936.json diff --git a/source/flights/detail/026130.json b/source/flights/detail/026/026130.json similarity index 100% rename from source/flights/detail/026130.json rename to source/flights/detail/026/026130.json diff --git a/source/flights/detail/026135.json b/source/flights/detail/026/026135.json similarity index 100% rename from source/flights/detail/026135.json rename to source/flights/detail/026/026135.json diff --git a/source/flights/detail/026136.json b/source/flights/detail/026/026136.json similarity index 100% rename from source/flights/detail/026136.json rename to source/flights/detail/026/026136.json diff --git a/source/flights/detail/026137.json b/source/flights/detail/026/026137.json similarity index 100% rename from source/flights/detail/026137.json rename to source/flights/detail/026/026137.json diff --git a/source/flights/detail/026139.json b/source/flights/detail/026/026139.json similarity index 100% rename from source/flights/detail/026139.json rename to source/flights/detail/026/026139.json diff --git a/source/flights/detail/026141.json b/source/flights/detail/026/026141.json similarity index 100% rename from source/flights/detail/026141.json rename to source/flights/detail/026/026141.json diff --git a/source/flights/detail/026142.json b/source/flights/detail/026/026142.json similarity index 100% rename from source/flights/detail/026142.json rename to source/flights/detail/026/026142.json diff --git a/source/flights/detail/026143.json b/source/flights/detail/026/026143.json similarity index 100% rename from source/flights/detail/026143.json rename to source/flights/detail/026/026143.json diff --git a/source/flights/detail/026144.json b/source/flights/detail/026/026144.json similarity index 100% rename from source/flights/detail/026144.json rename to source/flights/detail/026/026144.json diff --git a/source/flights/detail/026147.json b/source/flights/detail/026/026147.json similarity index 100% rename from source/flights/detail/026147.json rename to source/flights/detail/026/026147.json diff --git a/source/flights/detail/026149.json b/source/flights/detail/026/026149.json similarity index 100% rename from source/flights/detail/026149.json rename to source/flights/detail/026/026149.json diff --git a/source/flights/detail/026150.json b/source/flights/detail/026/026150.json similarity index 100% rename from source/flights/detail/026150.json rename to source/flights/detail/026/026150.json diff --git a/source/flights/detail/026151.json b/source/flights/detail/026/026151.json similarity index 100% rename from source/flights/detail/026151.json rename to source/flights/detail/026/026151.json diff --git a/source/flights/detail/026152.json b/source/flights/detail/026/026152.json similarity index 100% rename from source/flights/detail/026152.json rename to source/flights/detail/026/026152.json diff --git a/source/flights/detail/026153.json b/source/flights/detail/026/026153.json similarity index 100% rename from source/flights/detail/026153.json rename to source/flights/detail/026/026153.json diff --git a/source/flights/detail/026154.json b/source/flights/detail/026/026154.json similarity index 100% rename from source/flights/detail/026154.json rename to source/flights/detail/026/026154.json diff --git a/source/flights/detail/026155.json b/source/flights/detail/026/026155.json similarity index 100% rename from source/flights/detail/026155.json rename to source/flights/detail/026/026155.json diff --git a/source/flights/detail/026156.json b/source/flights/detail/026/026156.json similarity index 100% rename from source/flights/detail/026156.json rename to source/flights/detail/026/026156.json diff --git a/source/flights/detail/026157.json b/source/flights/detail/026/026157.json similarity index 100% rename from source/flights/detail/026157.json rename to source/flights/detail/026/026157.json diff --git a/source/flights/detail/026159.json b/source/flights/detail/026/026159.json similarity index 100% rename from source/flights/detail/026159.json rename to source/flights/detail/026/026159.json diff --git a/source/flights/detail/026160.json b/source/flights/detail/026/026160.json similarity index 100% rename from source/flights/detail/026160.json rename to source/flights/detail/026/026160.json diff --git a/source/flights/detail/026161.json b/source/flights/detail/026/026161.json similarity index 100% rename from source/flights/detail/026161.json rename to source/flights/detail/026/026161.json diff --git a/source/flights/detail/026162.json b/source/flights/detail/026/026162.json similarity index 100% rename from source/flights/detail/026162.json rename to source/flights/detail/026/026162.json diff --git a/source/flights/detail/026163.json b/source/flights/detail/026/026163.json similarity index 100% rename from source/flights/detail/026163.json rename to source/flights/detail/026/026163.json diff --git a/source/flights/detail/026164.json b/source/flights/detail/026/026164.json similarity index 100% rename from source/flights/detail/026164.json rename to source/flights/detail/026/026164.json diff --git a/source/flights/detail/026166.json b/source/flights/detail/026/026166.json similarity index 100% rename from source/flights/detail/026166.json rename to source/flights/detail/026/026166.json diff --git a/source/flights/detail/026167.json b/source/flights/detail/026/026167.json similarity index 100% rename from source/flights/detail/026167.json rename to source/flights/detail/026/026167.json diff --git a/source/flights/detail/026168.json b/source/flights/detail/026/026168.json similarity index 100% rename from source/flights/detail/026168.json rename to source/flights/detail/026/026168.json diff --git a/source/flights/detail/026169.json b/source/flights/detail/026/026169.json similarity index 100% rename from source/flights/detail/026169.json rename to source/flights/detail/026/026169.json diff --git a/source/flights/detail/026179.json b/source/flights/detail/026/026179.json similarity index 100% rename from source/flights/detail/026179.json rename to source/flights/detail/026/026179.json diff --git a/source/flights/detail/026239.json b/source/flights/detail/026/026239.json similarity index 100% rename from source/flights/detail/026239.json rename to source/flights/detail/026/026239.json diff --git a/source/flights/detail/026240.json b/source/flights/detail/026/026240.json similarity index 100% rename from source/flights/detail/026240.json rename to source/flights/detail/026/026240.json diff --git a/source/flights/detail/026241.json b/source/flights/detail/026/026241.json similarity index 100% rename from source/flights/detail/026241.json rename to source/flights/detail/026/026241.json diff --git a/source/flights/detail/026242.json b/source/flights/detail/026/026242.json similarity index 100% rename from source/flights/detail/026242.json rename to source/flights/detail/026/026242.json diff --git a/source/flights/detail/026243.json b/source/flights/detail/026/026243.json similarity index 100% rename from source/flights/detail/026243.json rename to source/flights/detail/026/026243.json diff --git a/source/flights/detail/026244.json b/source/flights/detail/026/026244.json similarity index 100% rename from source/flights/detail/026244.json rename to source/flights/detail/026/026244.json diff --git a/source/flights/detail/026245.json b/source/flights/detail/026/026245.json similarity index 100% rename from source/flights/detail/026245.json rename to source/flights/detail/026/026245.json diff --git a/source/flights/detail/026249.json b/source/flights/detail/026/026249.json similarity index 100% rename from source/flights/detail/026249.json rename to source/flights/detail/026/026249.json diff --git a/source/flights/detail/026252.json b/source/flights/detail/026/026252.json similarity index 100% rename from source/flights/detail/026252.json rename to source/flights/detail/026/026252.json diff --git a/source/flights/detail/026255.json b/source/flights/detail/026/026255.json similarity index 100% rename from source/flights/detail/026255.json rename to source/flights/detail/026/026255.json diff --git a/source/flights/detail/026259.json b/source/flights/detail/026/026259.json similarity index 100% rename from source/flights/detail/026259.json rename to source/flights/detail/026/026259.json diff --git a/source/flights/detail/026262.json b/source/flights/detail/026/026262.json similarity index 100% rename from source/flights/detail/026262.json rename to source/flights/detail/026/026262.json diff --git a/source/flights/detail/026284.json b/source/flights/detail/026/026284.json similarity index 100% rename from source/flights/detail/026284.json rename to source/flights/detail/026/026284.json diff --git a/source/flights/detail/026301.json b/source/flights/detail/026/026301.json similarity index 100% rename from source/flights/detail/026301.json rename to source/flights/detail/026/026301.json diff --git a/source/flights/detail/026302.json b/source/flights/detail/026/026302.json similarity index 100% rename from source/flights/detail/026302.json rename to source/flights/detail/026/026302.json diff --git a/source/flights/detail/026310.json b/source/flights/detail/026/026310.json similarity index 100% rename from source/flights/detail/026310.json rename to source/flights/detail/026/026310.json diff --git a/source/flights/detail/026311.json b/source/flights/detail/026/026311.json similarity index 100% rename from source/flights/detail/026311.json rename to source/flights/detail/026/026311.json diff --git a/source/flights/detail/026315.json b/source/flights/detail/026/026315.json similarity index 100% rename from source/flights/detail/026315.json rename to source/flights/detail/026/026315.json diff --git a/source/flights/detail/026316.json b/source/flights/detail/026/026316.json similarity index 100% rename from source/flights/detail/026316.json rename to source/flights/detail/026/026316.json diff --git a/source/flights/detail/026320.json b/source/flights/detail/026/026320.json similarity index 100% rename from source/flights/detail/026320.json rename to source/flights/detail/026/026320.json diff --git a/source/flights/detail/026321.json b/source/flights/detail/026/026321.json similarity index 100% rename from source/flights/detail/026321.json rename to source/flights/detail/026/026321.json diff --git a/source/flights/detail/026329.json b/source/flights/detail/026/026329.json similarity index 100% rename from source/flights/detail/026329.json rename to source/flights/detail/026/026329.json diff --git a/source/flights/detail/026331.json b/source/flights/detail/026/026331.json similarity index 100% rename from source/flights/detail/026331.json rename to source/flights/detail/026/026331.json diff --git a/source/flights/detail/026343.json b/source/flights/detail/026/026343.json similarity index 100% rename from source/flights/detail/026343.json rename to source/flights/detail/026/026343.json diff --git a/source/flights/detail/026379.json b/source/flights/detail/026/026379.json similarity index 100% rename from source/flights/detail/026379.json rename to source/flights/detail/026/026379.json diff --git a/source/flights/detail/026414.json b/source/flights/detail/026/026414.json similarity index 100% rename from source/flights/detail/026414.json rename to source/flights/detail/026/026414.json diff --git a/source/flights/detail/026417.json b/source/flights/detail/026/026417.json similarity index 100% rename from source/flights/detail/026417.json rename to source/flights/detail/026/026417.json diff --git a/source/flights/detail/026428.json b/source/flights/detail/026/026428.json similarity index 100% rename from source/flights/detail/026428.json rename to source/flights/detail/026/026428.json diff --git a/source/flights/detail/026432.json b/source/flights/detail/026/026432.json similarity index 100% rename from source/flights/detail/026432.json rename to source/flights/detail/026/026432.json diff --git a/source/flights/detail/026487.json b/source/flights/detail/026/026487.json similarity index 100% rename from source/flights/detail/026487.json rename to source/flights/detail/026/026487.json diff --git a/source/flights/detail/026491.json b/source/flights/detail/026/026491.json similarity index 100% rename from source/flights/detail/026491.json rename to source/flights/detail/026/026491.json diff --git a/source/flights/detail/026513.json b/source/flights/detail/026/026513.json similarity index 100% rename from source/flights/detail/026513.json rename to source/flights/detail/026/026513.json diff --git a/source/flights/detail/026514.json b/source/flights/detail/026/026514.json similarity index 100% rename from source/flights/detail/026514.json rename to source/flights/detail/026/026514.json diff --git a/source/flights/detail/026515.json b/source/flights/detail/026/026515.json similarity index 100% rename from source/flights/detail/026515.json rename to source/flights/detail/026/026515.json diff --git a/source/flights/detail/026516.json b/source/flights/detail/026/026516.json similarity index 100% rename from source/flights/detail/026516.json rename to source/flights/detail/026/026516.json diff --git a/source/flights/detail/026518.json b/source/flights/detail/026/026518.json similarity index 100% rename from source/flights/detail/026518.json rename to source/flights/detail/026/026518.json diff --git a/source/flights/detail/026519.json b/source/flights/detail/026/026519.json similarity index 100% rename from source/flights/detail/026519.json rename to source/flights/detail/026/026519.json diff --git a/source/flights/detail/026526.json b/source/flights/detail/026/026526.json similarity index 100% rename from source/flights/detail/026526.json rename to source/flights/detail/026/026526.json diff --git a/source/flights/detail/026533.json b/source/flights/detail/026/026533.json similarity index 100% rename from source/flights/detail/026533.json rename to source/flights/detail/026/026533.json diff --git a/source/flights/detail/026536.json b/source/flights/detail/026/026536.json similarity index 100% rename from source/flights/detail/026536.json rename to source/flights/detail/026/026536.json diff --git a/source/flights/detail/026537.json b/source/flights/detail/026/026537.json similarity index 100% rename from source/flights/detail/026537.json rename to source/flights/detail/026/026537.json diff --git a/source/flights/detail/026538.json b/source/flights/detail/026/026538.json similarity index 100% rename from source/flights/detail/026538.json rename to source/flights/detail/026/026538.json diff --git a/source/flights/detail/026539.json b/source/flights/detail/026/026539.json similarity index 100% rename from source/flights/detail/026539.json rename to source/flights/detail/026/026539.json diff --git a/source/flights/detail/026540.json b/source/flights/detail/026/026540.json similarity index 100% rename from source/flights/detail/026540.json rename to source/flights/detail/026/026540.json diff --git a/source/flights/detail/026541.json b/source/flights/detail/026/026541.json similarity index 100% rename from source/flights/detail/026541.json rename to source/flights/detail/026/026541.json diff --git a/source/flights/detail/026542.json b/source/flights/detail/026/026542.json similarity index 100% rename from source/flights/detail/026542.json rename to source/flights/detail/026/026542.json diff --git a/source/flights/detail/026543.json b/source/flights/detail/026/026543.json similarity index 100% rename from source/flights/detail/026543.json rename to source/flights/detail/026/026543.json diff --git a/source/flights/detail/026544.json b/source/flights/detail/026/026544.json similarity index 100% rename from source/flights/detail/026544.json rename to source/flights/detail/026/026544.json diff --git a/source/flights/detail/026545.json b/source/flights/detail/026/026545.json similarity index 100% rename from source/flights/detail/026545.json rename to source/flights/detail/026/026545.json diff --git a/source/flights/detail/026546.json b/source/flights/detail/026/026546.json similarity index 100% rename from source/flights/detail/026546.json rename to source/flights/detail/026/026546.json diff --git a/source/flights/detail/026548.json b/source/flights/detail/026/026548.json similarity index 100% rename from source/flights/detail/026548.json rename to source/flights/detail/026/026548.json diff --git a/source/flights/detail/026551.json b/source/flights/detail/026/026551.json similarity index 100% rename from source/flights/detail/026551.json rename to source/flights/detail/026/026551.json diff --git a/source/flights/detail/026552.json b/source/flights/detail/026/026552.json similarity index 100% rename from source/flights/detail/026552.json rename to source/flights/detail/026/026552.json diff --git a/source/flights/detail/026553.json b/source/flights/detail/026/026553.json similarity index 100% rename from source/flights/detail/026553.json rename to source/flights/detail/026/026553.json diff --git a/source/flights/detail/026554.json b/source/flights/detail/026/026554.json similarity index 100% rename from source/flights/detail/026554.json rename to source/flights/detail/026/026554.json diff --git a/source/flights/detail/026559.json b/source/flights/detail/026/026559.json similarity index 100% rename from source/flights/detail/026559.json rename to source/flights/detail/026/026559.json diff --git a/source/flights/detail/026568.json b/source/flights/detail/026/026568.json similarity index 100% rename from source/flights/detail/026568.json rename to source/flights/detail/026/026568.json diff --git a/source/flights/detail/026569.json b/source/flights/detail/026/026569.json similarity index 100% rename from source/flights/detail/026569.json rename to source/flights/detail/026/026569.json diff --git a/source/flights/detail/026570.json b/source/flights/detail/026/026570.json similarity index 100% rename from source/flights/detail/026570.json rename to source/flights/detail/026/026570.json diff --git a/source/flights/detail/026571.json b/source/flights/detail/026/026571.json similarity index 100% rename from source/flights/detail/026571.json rename to source/flights/detail/026/026571.json diff --git a/source/flights/detail/026585.json b/source/flights/detail/026/026585.json similarity index 100% rename from source/flights/detail/026585.json rename to source/flights/detail/026/026585.json diff --git a/source/flights/detail/026596.json b/source/flights/detail/026/026596.json similarity index 100% rename from source/flights/detail/026596.json rename to source/flights/detail/026/026596.json diff --git a/source/flights/detail/026612.json b/source/flights/detail/026/026612.json similarity index 100% rename from source/flights/detail/026612.json rename to source/flights/detail/026/026612.json diff --git a/source/flights/detail/026616.json b/source/flights/detail/026/026616.json similarity index 100% rename from source/flights/detail/026616.json rename to source/flights/detail/026/026616.json diff --git a/source/flights/detail/026617.json b/source/flights/detail/026/026617.json similarity index 100% rename from source/flights/detail/026617.json rename to source/flights/detail/026/026617.json diff --git a/source/flights/detail/026626.json b/source/flights/detail/026/026626.json similarity index 100% rename from source/flights/detail/026626.json rename to source/flights/detail/026/026626.json diff --git a/source/flights/detail/026635.json b/source/flights/detail/026/026635.json similarity index 100% rename from source/flights/detail/026635.json rename to source/flights/detail/026/026635.json diff --git a/source/flights/detail/026636.json b/source/flights/detail/026/026636.json similarity index 100% rename from source/flights/detail/026636.json rename to source/flights/detail/026/026636.json diff --git a/source/flights/detail/026650.json b/source/flights/detail/026/026650.json similarity index 100% rename from source/flights/detail/026650.json rename to source/flights/detail/026/026650.json diff --git a/source/flights/detail/026651.json b/source/flights/detail/026/026651.json similarity index 100% rename from source/flights/detail/026651.json rename to source/flights/detail/026/026651.json diff --git a/source/flights/detail/026655.json b/source/flights/detail/026/026655.json similarity index 100% rename from source/flights/detail/026655.json rename to source/flights/detail/026/026655.json diff --git a/source/flights/detail/026657.json b/source/flights/detail/026/026657.json similarity index 100% rename from source/flights/detail/026657.json rename to source/flights/detail/026/026657.json diff --git a/source/flights/detail/026663.json b/source/flights/detail/026/026663.json similarity index 100% rename from source/flights/detail/026663.json rename to source/flights/detail/026/026663.json diff --git a/source/flights/detail/026664.json b/source/flights/detail/026/026664.json similarity index 100% rename from source/flights/detail/026664.json rename to source/flights/detail/026/026664.json diff --git a/source/flights/detail/026668.json b/source/flights/detail/026/026668.json similarity index 100% rename from source/flights/detail/026668.json rename to source/flights/detail/026/026668.json diff --git a/source/flights/detail/026670.json b/source/flights/detail/026/026670.json similarity index 100% rename from source/flights/detail/026670.json rename to source/flights/detail/026/026670.json diff --git a/source/flights/detail/026672.json b/source/flights/detail/026/026672.json similarity index 100% rename from source/flights/detail/026672.json rename to source/flights/detail/026/026672.json diff --git a/source/flights/detail/026673.json b/source/flights/detail/026/026673.json similarity index 100% rename from source/flights/detail/026673.json rename to source/flights/detail/026/026673.json diff --git a/source/flights/detail/026674.json b/source/flights/detail/026/026674.json similarity index 100% rename from source/flights/detail/026674.json rename to source/flights/detail/026/026674.json diff --git a/source/flights/detail/026743.json b/source/flights/detail/026/026743.json similarity index 100% rename from source/flights/detail/026743.json rename to source/flights/detail/026/026743.json diff --git a/source/flights/detail/026744.json b/source/flights/detail/026/026744.json similarity index 100% rename from source/flights/detail/026744.json rename to source/flights/detail/026/026744.json diff --git a/source/flights/detail/026745.json b/source/flights/detail/026/026745.json similarity index 100% rename from source/flights/detail/026745.json rename to source/flights/detail/026/026745.json diff --git a/source/flights/detail/026750.json b/source/flights/detail/026/026750.json similarity index 100% rename from source/flights/detail/026750.json rename to source/flights/detail/026/026750.json diff --git a/source/flights/detail/026751.json b/source/flights/detail/026/026751.json similarity index 100% rename from source/flights/detail/026751.json rename to source/flights/detail/026/026751.json diff --git a/source/flights/detail/026767.json b/source/flights/detail/026/026767.json similarity index 100% rename from source/flights/detail/026767.json rename to source/flights/detail/026/026767.json diff --git a/source/flights/detail/026796.json b/source/flights/detail/026/026796.json similarity index 100% rename from source/flights/detail/026796.json rename to source/flights/detail/026/026796.json diff --git a/source/flights/detail/026797.json b/source/flights/detail/026/026797.json similarity index 100% rename from source/flights/detail/026797.json rename to source/flights/detail/026/026797.json diff --git a/source/flights/detail/026798.json b/source/flights/detail/026/026798.json similarity index 100% rename from source/flights/detail/026798.json rename to source/flights/detail/026/026798.json diff --git a/source/flights/detail/026799.json b/source/flights/detail/026/026799.json similarity index 100% rename from source/flights/detail/026799.json rename to source/flights/detail/026/026799.json diff --git a/source/flights/detail/026800.json b/source/flights/detail/026/026800.json similarity index 100% rename from source/flights/detail/026800.json rename to source/flights/detail/026/026800.json diff --git a/source/flights/detail/026805.json b/source/flights/detail/026/026805.json similarity index 100% rename from source/flights/detail/026805.json rename to source/flights/detail/026/026805.json diff --git a/source/flights/detail/026806.json b/source/flights/detail/026/026806.json similarity index 100% rename from source/flights/detail/026806.json rename to source/flights/detail/026/026806.json diff --git a/source/flights/detail/026810.json b/source/flights/detail/026/026810.json similarity index 100% rename from source/flights/detail/026810.json rename to source/flights/detail/026/026810.json diff --git a/source/flights/detail/026817.json b/source/flights/detail/026/026817.json similarity index 100% rename from source/flights/detail/026817.json rename to source/flights/detail/026/026817.json diff --git a/source/flights/detail/026818.json b/source/flights/detail/026/026818.json similarity index 100% rename from source/flights/detail/026818.json rename to source/flights/detail/026/026818.json diff --git a/source/flights/detail/026819.json b/source/flights/detail/026/026819.json similarity index 100% rename from source/flights/detail/026819.json rename to source/flights/detail/026/026819.json diff --git a/source/flights/detail/026825.json b/source/flights/detail/026/026825.json similarity index 100% rename from source/flights/detail/026825.json rename to source/flights/detail/026/026825.json diff --git a/source/flights/detail/026826.json b/source/flights/detail/026/026826.json similarity index 100% rename from source/flights/detail/026826.json rename to source/flights/detail/026/026826.json diff --git a/source/flights/detail/026829.json b/source/flights/detail/026/026829.json similarity index 100% rename from source/flights/detail/026829.json rename to source/flights/detail/026/026829.json diff --git a/source/flights/detail/026831.json b/source/flights/detail/026/026831.json similarity index 100% rename from source/flights/detail/026831.json rename to source/flights/detail/026/026831.json diff --git a/source/flights/detail/026838.json b/source/flights/detail/026/026838.json similarity index 100% rename from source/flights/detail/026838.json rename to source/flights/detail/026/026838.json diff --git a/source/flights/detail/026839.json b/source/flights/detail/026/026839.json similarity index 100% rename from source/flights/detail/026839.json rename to source/flights/detail/026/026839.json diff --git a/source/flights/detail/026840.json b/source/flights/detail/026/026840.json similarity index 100% rename from source/flights/detail/026840.json rename to source/flights/detail/026/026840.json diff --git a/source/flights/detail/026844.json b/source/flights/detail/026/026844.json similarity index 100% rename from source/flights/detail/026844.json rename to source/flights/detail/026/026844.json diff --git a/source/flights/detail/026853.json b/source/flights/detail/026/026853.json similarity index 100% rename from source/flights/detail/026853.json rename to source/flights/detail/026/026853.json diff --git a/source/flights/detail/026864.json b/source/flights/detail/026/026864.json similarity index 100% rename from source/flights/detail/026864.json rename to source/flights/detail/026/026864.json diff --git a/source/flights/detail/026866.json b/source/flights/detail/026/026866.json similarity index 100% rename from source/flights/detail/026866.json rename to source/flights/detail/026/026866.json diff --git a/source/flights/detail/026876.json b/source/flights/detail/026/026876.json similarity index 100% rename from source/flights/detail/026876.json rename to source/flights/detail/026/026876.json diff --git a/source/flights/detail/026877.json b/source/flights/detail/026/026877.json similarity index 100% rename from source/flights/detail/026877.json rename to source/flights/detail/026/026877.json diff --git a/source/flights/detail/026881.json b/source/flights/detail/026/026881.json similarity index 100% rename from source/flights/detail/026881.json rename to source/flights/detail/026/026881.json diff --git a/source/flights/detail/026889.json b/source/flights/detail/026/026889.json similarity index 100% rename from source/flights/detail/026889.json rename to source/flights/detail/026/026889.json diff --git a/source/flights/detail/026892.json b/source/flights/detail/026/026892.json similarity index 100% rename from source/flights/detail/026892.json rename to source/flights/detail/026/026892.json diff --git a/source/flights/detail/026897.json b/source/flights/detail/026/026897.json similarity index 100% rename from source/flights/detail/026897.json rename to source/flights/detail/026/026897.json diff --git a/source/flights/detail/026934.json b/source/flights/detail/026/026934.json similarity index 100% rename from source/flights/detail/026934.json rename to source/flights/detail/026/026934.json diff --git a/source/flights/detail/026936.json b/source/flights/detail/026/026936.json similarity index 100% rename from source/flights/detail/026936.json rename to source/flights/detail/026/026936.json diff --git a/source/flights/detail/026937.json b/source/flights/detail/026/026937.json similarity index 100% rename from source/flights/detail/026937.json rename to source/flights/detail/026/026937.json diff --git a/source/flights/detail/026939.json b/source/flights/detail/026/026939.json similarity index 100% rename from source/flights/detail/026939.json rename to source/flights/detail/026/026939.json diff --git a/source/flights/detail/026943.json b/source/flights/detail/026/026943.json similarity index 100% rename from source/flights/detail/026943.json rename to source/flights/detail/026/026943.json diff --git a/source/flights/detail/026945.json b/source/flights/detail/026/026945.json similarity index 100% rename from source/flights/detail/026945.json rename to source/flights/detail/026/026945.json diff --git a/source/flights/detail/026949.json b/source/flights/detail/026/026949.json similarity index 100% rename from source/flights/detail/026949.json rename to source/flights/detail/026/026949.json diff --git a/source/flights/detail/026952.json b/source/flights/detail/026/026952.json similarity index 100% rename from source/flights/detail/026952.json rename to source/flights/detail/026/026952.json diff --git a/source/flights/detail/026953.json b/source/flights/detail/026/026953.json similarity index 100% rename from source/flights/detail/026953.json rename to source/flights/detail/026/026953.json diff --git a/source/flights/detail/026954.json b/source/flights/detail/026/026954.json similarity index 100% rename from source/flights/detail/026954.json rename to source/flights/detail/026/026954.json diff --git a/source/flights/detail/026955.json b/source/flights/detail/026/026955.json similarity index 100% rename from source/flights/detail/026955.json rename to source/flights/detail/026/026955.json diff --git a/source/flights/detail/026959.json b/source/flights/detail/026/026959.json similarity index 100% rename from source/flights/detail/026959.json rename to source/flights/detail/026/026959.json diff --git a/source/flights/detail/026968.json b/source/flights/detail/026/026968.json similarity index 100% rename from source/flights/detail/026968.json rename to source/flights/detail/026/026968.json diff --git a/source/flights/detail/026972.json b/source/flights/detail/026/026972.json similarity index 100% rename from source/flights/detail/026972.json rename to source/flights/detail/026/026972.json diff --git a/source/flights/detail/026973.json b/source/flights/detail/026/026973.json similarity index 100% rename from source/flights/detail/026973.json rename to source/flights/detail/026/026973.json diff --git a/source/flights/detail/026974.json b/source/flights/detail/026/026974.json similarity index 100% rename from source/flights/detail/026974.json rename to source/flights/detail/026/026974.json diff --git a/source/flights/detail/026982.json b/source/flights/detail/026/026982.json similarity index 100% rename from source/flights/detail/026982.json rename to source/flights/detail/026/026982.json diff --git a/source/flights/detail/026987.json b/source/flights/detail/026/026987.json similarity index 100% rename from source/flights/detail/026987.json rename to source/flights/detail/026/026987.json diff --git a/source/flights/detail/027021.json b/source/flights/detail/027/027021.json similarity index 100% rename from source/flights/detail/027021.json rename to source/flights/detail/027/027021.json diff --git a/source/flights/detail/027031.json b/source/flights/detail/027/027031.json similarity index 100% rename from source/flights/detail/027031.json rename to source/flights/detail/027/027031.json diff --git a/source/flights/detail/027033.json b/source/flights/detail/027/027033.json similarity index 100% rename from source/flights/detail/027033.json rename to source/flights/detail/027/027033.json diff --git a/source/flights/detail/027034.json b/source/flights/detail/027/027034.json similarity index 100% rename from source/flights/detail/027034.json rename to source/flights/detail/027/027034.json diff --git a/source/flights/detail/027035.json b/source/flights/detail/027/027035.json similarity index 100% rename from source/flights/detail/027035.json rename to source/flights/detail/027/027035.json diff --git a/source/flights/detail/027036.json b/source/flights/detail/027/027036.json similarity index 100% rename from source/flights/detail/027036.json rename to source/flights/detail/027/027036.json diff --git a/source/flights/detail/027037.json b/source/flights/detail/027/027037.json similarity index 100% rename from source/flights/detail/027037.json rename to source/flights/detail/027/027037.json diff --git a/source/flights/detail/027038.json b/source/flights/detail/027/027038.json similarity index 100% rename from source/flights/detail/027038.json rename to source/flights/detail/027/027038.json diff --git a/source/flights/detail/027039.json b/source/flights/detail/027/027039.json similarity index 100% rename from source/flights/detail/027039.json rename to source/flights/detail/027/027039.json diff --git a/source/flights/detail/027041.json b/source/flights/detail/027/027041.json similarity index 100% rename from source/flights/detail/027041.json rename to source/flights/detail/027/027041.json diff --git a/source/flights/detail/027050.json b/source/flights/detail/027/027050.json similarity index 100% rename from source/flights/detail/027050.json rename to source/flights/detail/027/027050.json diff --git a/source/flights/detail/027051.json b/source/flights/detail/027/027051.json similarity index 100% rename from source/flights/detail/027051.json rename to source/flights/detail/027/027051.json diff --git a/source/flights/detail/027058.json b/source/flights/detail/027/027058.json similarity index 100% rename from source/flights/detail/027058.json rename to source/flights/detail/027/027058.json diff --git a/source/flights/detail/027069.json b/source/flights/detail/027/027069.json similarity index 100% rename from source/flights/detail/027069.json rename to source/flights/detail/027/027069.json diff --git a/source/flights/detail/027071.json b/source/flights/detail/027/027071.json similarity index 100% rename from source/flights/detail/027071.json rename to source/flights/detail/027/027071.json diff --git a/source/flights/detail/027072.json b/source/flights/detail/027/027072.json similarity index 100% rename from source/flights/detail/027072.json rename to source/flights/detail/027/027072.json diff --git a/source/flights/detail/027081.json b/source/flights/detail/027/027081.json similarity index 100% rename from source/flights/detail/027081.json rename to source/flights/detail/027/027081.json diff --git a/source/flights/detail/027091.json b/source/flights/detail/027/027091.json similarity index 100% rename from source/flights/detail/027091.json rename to source/flights/detail/027/027091.json diff --git a/source/flights/detail/027094.json b/source/flights/detail/027/027094.json similarity index 100% rename from source/flights/detail/027094.json rename to source/flights/detail/027/027094.json diff --git a/source/flights/detail/027096.json b/source/flights/detail/027/027096.json similarity index 100% rename from source/flights/detail/027096.json rename to source/flights/detail/027/027096.json diff --git a/source/flights/detail/027211.json b/source/flights/detail/027/027211.json similarity index 100% rename from source/flights/detail/027211.json rename to source/flights/detail/027/027211.json diff --git a/source/flights/detail/027215.json b/source/flights/detail/027/027215.json similarity index 100% rename from source/flights/detail/027215.json rename to source/flights/detail/027/027215.json diff --git a/source/flights/detail/027236.json b/source/flights/detail/027/027236.json similarity index 100% rename from source/flights/detail/027236.json rename to source/flights/detail/027/027236.json diff --git a/source/flights/detail/027237.json b/source/flights/detail/027/027237.json similarity index 100% rename from source/flights/detail/027237.json rename to source/flights/detail/027/027237.json diff --git a/source/flights/detail/027238.json b/source/flights/detail/027/027238.json similarity index 100% rename from source/flights/detail/027238.json rename to source/flights/detail/027/027238.json diff --git a/source/flights/detail/027239.json b/source/flights/detail/027/027239.json similarity index 100% rename from source/flights/detail/027239.json rename to source/flights/detail/027/027239.json diff --git a/source/flights/detail/027241.json b/source/flights/detail/027/027241.json similarity index 100% rename from source/flights/detail/027241.json rename to source/flights/detail/027/027241.json diff --git a/source/flights/detail/027242.json b/source/flights/detail/027/027242.json similarity index 100% rename from source/flights/detail/027242.json rename to source/flights/detail/027/027242.json diff --git a/source/flights/detail/027243.json b/source/flights/detail/027/027243.json similarity index 100% rename from source/flights/detail/027243.json rename to source/flights/detail/027/027243.json diff --git a/source/flights/detail/027244.json b/source/flights/detail/027/027244.json similarity index 100% rename from source/flights/detail/027244.json rename to source/flights/detail/027/027244.json diff --git a/source/flights/detail/027328.json b/source/flights/detail/027/027328.json similarity index 100% rename from source/flights/detail/027328.json rename to source/flights/detail/027/027328.json diff --git a/source/flights/detail/027340.json b/source/flights/detail/027/027340.json similarity index 100% rename from source/flights/detail/027340.json rename to source/flights/detail/027/027340.json diff --git a/source/flights/detail/027341.json b/source/flights/detail/027/027341.json similarity index 100% rename from source/flights/detail/027341.json rename to source/flights/detail/027/027341.json diff --git a/source/flights/detail/027343.json b/source/flights/detail/027/027343.json similarity index 100% rename from source/flights/detail/027343.json rename to source/flights/detail/027/027343.json diff --git a/source/flights/detail/027347.json b/source/flights/detail/027/027347.json similarity index 100% rename from source/flights/detail/027347.json rename to source/flights/detail/027/027347.json diff --git a/source/flights/detail/027348.json b/source/flights/detail/027/027348.json similarity index 100% rename from source/flights/detail/027348.json rename to source/flights/detail/027/027348.json diff --git a/source/flights/detail/027349.json b/source/flights/detail/027/027349.json similarity index 100% rename from source/flights/detail/027349.json rename to source/flights/detail/027/027349.json diff --git a/source/flights/detail/027350.json b/source/flights/detail/027/027350.json similarity index 100% rename from source/flights/detail/027350.json rename to source/flights/detail/027/027350.json diff --git a/source/flights/detail/027351.json b/source/flights/detail/027/027351.json similarity index 100% rename from source/flights/detail/027351.json rename to source/flights/detail/027/027351.json diff --git a/source/flights/detail/027352.json b/source/flights/detail/027/027352.json similarity index 100% rename from source/flights/detail/027352.json rename to source/flights/detail/027/027352.json diff --git a/source/flights/detail/027353.json b/source/flights/detail/027/027353.json similarity index 100% rename from source/flights/detail/027353.json rename to source/flights/detail/027/027353.json diff --git a/source/flights/detail/027354.json b/source/flights/detail/027/027354.json similarity index 100% rename from source/flights/detail/027354.json rename to source/flights/detail/027/027354.json diff --git a/source/flights/detail/027355.json b/source/flights/detail/027/027355.json similarity index 100% rename from source/flights/detail/027355.json rename to source/flights/detail/027/027355.json diff --git a/source/flights/detail/027356.json b/source/flights/detail/027/027356.json similarity index 100% rename from source/flights/detail/027356.json rename to source/flights/detail/027/027356.json diff --git a/source/flights/detail/027357.json b/source/flights/detail/027/027357.json similarity index 100% rename from source/flights/detail/027357.json rename to source/flights/detail/027/027357.json diff --git a/source/flights/detail/027358.json b/source/flights/detail/027/027358.json similarity index 100% rename from source/flights/detail/027358.json rename to source/flights/detail/027/027358.json diff --git a/source/flights/detail/027362.json b/source/flights/detail/027/027362.json similarity index 100% rename from source/flights/detail/027362.json rename to source/flights/detail/027/027362.json diff --git a/source/flights/detail/027467.json b/source/flights/detail/027/027467.json similarity index 100% rename from source/flights/detail/027467.json rename to source/flights/detail/027/027467.json diff --git a/source/flights/detail/027468.json b/source/flights/detail/027/027468.json similarity index 100% rename from source/flights/detail/027468.json rename to source/flights/detail/027/027468.json diff --git a/source/flights/detail/027472.json b/source/flights/detail/027/027472.json similarity index 100% rename from source/flights/detail/027472.json rename to source/flights/detail/027/027472.json diff --git a/source/flights/detail/027473.json b/source/flights/detail/027/027473.json similarity index 100% rename from source/flights/detail/027473.json rename to source/flights/detail/027/027473.json diff --git a/source/flights/detail/027485.json b/source/flights/detail/027/027485.json similarity index 100% rename from source/flights/detail/027485.json rename to source/flights/detail/027/027485.json diff --git a/source/flights/detail/027497.json b/source/flights/detail/027/027497.json similarity index 100% rename from source/flights/detail/027497.json rename to source/flights/detail/027/027497.json diff --git a/source/flights/detail/027503.json b/source/flights/detail/027/027503.json similarity index 100% rename from source/flights/detail/027503.json rename to source/flights/detail/027/027503.json diff --git a/source/flights/detail/027504.json b/source/flights/detail/027/027504.json similarity index 100% rename from source/flights/detail/027504.json rename to source/flights/detail/027/027504.json diff --git a/source/flights/detail/027505.json b/source/flights/detail/027/027505.json similarity index 100% rename from source/flights/detail/027505.json rename to source/flights/detail/027/027505.json diff --git a/source/flights/detail/027511.json b/source/flights/detail/027/027511.json similarity index 100% rename from source/flights/detail/027511.json rename to source/flights/detail/027/027511.json diff --git a/source/flights/detail/027533.json b/source/flights/detail/027/027533.json similarity index 100% rename from source/flights/detail/027533.json rename to source/flights/detail/027/027533.json diff --git a/source/flights/detail/027534.json b/source/flights/detail/027/027534.json similarity index 100% rename from source/flights/detail/027534.json rename to source/flights/detail/027/027534.json diff --git a/source/flights/detail/027541.json b/source/flights/detail/027/027541.json similarity index 100% rename from source/flights/detail/027541.json rename to source/flights/detail/027/027541.json diff --git a/source/flights/detail/027542.json b/source/flights/detail/027/027542.json similarity index 100% rename from source/flights/detail/027542.json rename to source/flights/detail/027/027542.json diff --git a/source/flights/detail/027551.json b/source/flights/detail/027/027551.json similarity index 100% rename from source/flights/detail/027551.json rename to source/flights/detail/027/027551.json diff --git a/source/flights/detail/027552.json b/source/flights/detail/027/027552.json similarity index 100% rename from source/flights/detail/027552.json rename to source/flights/detail/027/027552.json diff --git a/source/flights/detail/027553.json b/source/flights/detail/027/027553.json similarity index 100% rename from source/flights/detail/027553.json rename to source/flights/detail/027/027553.json diff --git a/source/flights/detail/027558.json b/source/flights/detail/027/027558.json similarity index 100% rename from source/flights/detail/027558.json rename to source/flights/detail/027/027558.json diff --git a/source/flights/detail/027559.json b/source/flights/detail/027/027559.json similarity index 100% rename from source/flights/detail/027559.json rename to source/flights/detail/027/027559.json diff --git a/source/flights/detail/027582.json b/source/flights/detail/027/027582.json similarity index 100% rename from source/flights/detail/027582.json rename to source/flights/detail/027/027582.json diff --git a/source/flights/detail/027583.json b/source/flights/detail/027/027583.json similarity index 100% rename from source/flights/detail/027583.json rename to source/flights/detail/027/027583.json diff --git a/source/flights/detail/027584.json b/source/flights/detail/027/027584.json similarity index 100% rename from source/flights/detail/027584.json rename to source/flights/detail/027/027584.json diff --git a/source/flights/detail/027644.json b/source/flights/detail/027/027644.json similarity index 100% rename from source/flights/detail/027644.json rename to source/flights/detail/027/027644.json diff --git a/source/flights/detail/027646.json b/source/flights/detail/027/027646.json similarity index 100% rename from source/flights/detail/027646.json rename to source/flights/detail/027/027646.json diff --git a/source/flights/detail/027647.json b/source/flights/detail/027/027647.json similarity index 100% rename from source/flights/detail/027647.json rename to source/flights/detail/027/027647.json diff --git a/source/flights/detail/027648.json b/source/flights/detail/027/027648.json similarity index 100% rename from source/flights/detail/027648.json rename to source/flights/detail/027/027648.json diff --git a/source/flights/detail/027652.json b/source/flights/detail/027/027652.json similarity index 100% rename from source/flights/detail/027652.json rename to source/flights/detail/027/027652.json diff --git a/source/flights/detail/027658.json b/source/flights/detail/027/027658.json similarity index 100% rename from source/flights/detail/027658.json rename to source/flights/detail/027/027658.json diff --git a/source/flights/detail/027659.json b/source/flights/detail/027/027659.json similarity index 100% rename from source/flights/detail/027659.json rename to source/flights/detail/027/027659.json diff --git a/source/flights/detail/027695.json b/source/flights/detail/027/027695.json similarity index 100% rename from source/flights/detail/027695.json rename to source/flights/detail/027/027695.json diff --git a/source/flights/detail/027696.json b/source/flights/detail/027/027696.json similarity index 100% rename from source/flights/detail/027696.json rename to source/flights/detail/027/027696.json diff --git a/source/flights/detail/027697.json b/source/flights/detail/027/027697.json similarity index 100% rename from source/flights/detail/027697.json rename to source/flights/detail/027/027697.json diff --git a/source/flights/detail/027698.json b/source/flights/detail/027/027698.json similarity index 100% rename from source/flights/detail/027698.json rename to source/flights/detail/027/027698.json diff --git a/source/flights/detail/027699.json b/source/flights/detail/027/027699.json similarity index 100% rename from source/flights/detail/027699.json rename to source/flights/detail/027/027699.json diff --git a/source/flights/detail/027700.json b/source/flights/detail/027/027700.json similarity index 100% rename from source/flights/detail/027700.json rename to source/flights/detail/027/027700.json diff --git a/source/flights/detail/027714.json b/source/flights/detail/027/027714.json similarity index 100% rename from source/flights/detail/027714.json rename to source/flights/detail/027/027714.json diff --git a/source/flights/detail/027715.json b/source/flights/detail/027/027715.json similarity index 100% rename from source/flights/detail/027715.json rename to source/flights/detail/027/027715.json diff --git a/source/flights/detail/027719.json b/source/flights/detail/027/027719.json similarity index 100% rename from source/flights/detail/027719.json rename to source/flights/detail/027/027719.json diff --git a/source/flights/detail/027720.json b/source/flights/detail/027/027720.json similarity index 100% rename from source/flights/detail/027720.json rename to source/flights/detail/027/027720.json diff --git a/source/flights/detail/027726.json b/source/flights/detail/027/027726.json similarity index 100% rename from source/flights/detail/027726.json rename to source/flights/detail/027/027726.json diff --git a/source/flights/detail/027727.json b/source/flights/detail/027/027727.json similarity index 100% rename from source/flights/detail/027727.json rename to source/flights/detail/027/027727.json diff --git a/source/flights/detail/027728.json b/source/flights/detail/027/027728.json similarity index 100% rename from source/flights/detail/027728.json rename to source/flights/detail/027/027728.json diff --git a/source/flights/detail/027732.json b/source/flights/detail/027/027732.json similarity index 100% rename from source/flights/detail/027732.json rename to source/flights/detail/027/027732.json diff --git a/source/flights/detail/027741.json b/source/flights/detail/027/027741.json similarity index 100% rename from source/flights/detail/027741.json rename to source/flights/detail/027/027741.json diff --git a/source/flights/detail/027748.json b/source/flights/detail/027/027748.json similarity index 100% rename from source/flights/detail/027748.json rename to source/flights/detail/027/027748.json diff --git a/source/flights/detail/027755.json b/source/flights/detail/027/027755.json similarity index 100% rename from source/flights/detail/027755.json rename to source/flights/detail/027/027755.json diff --git a/source/flights/detail/027760.json b/source/flights/detail/027/027760.json similarity index 100% rename from source/flights/detail/027760.json rename to source/flights/detail/027/027760.json diff --git a/source/flights/detail/027764.json b/source/flights/detail/027/027764.json similarity index 100% rename from source/flights/detail/027764.json rename to source/flights/detail/027/027764.json diff --git a/source/flights/detail/027765.json b/source/flights/detail/027/027765.json similarity index 100% rename from source/flights/detail/027765.json rename to source/flights/detail/027/027765.json diff --git a/source/flights/detail/027770.json b/source/flights/detail/027/027770.json similarity index 100% rename from source/flights/detail/027770.json rename to source/flights/detail/027/027770.json diff --git a/source/flights/detail/027771.json b/source/flights/detail/027/027771.json similarity index 100% rename from source/flights/detail/027771.json rename to source/flights/detail/027/027771.json diff --git a/source/flights/detail/027772.json b/source/flights/detail/027/027772.json similarity index 100% rename from source/flights/detail/027772.json rename to source/flights/detail/027/027772.json diff --git a/source/flights/detail/027773.json b/source/flights/detail/027/027773.json similarity index 100% rename from source/flights/detail/027773.json rename to source/flights/detail/027/027773.json diff --git a/source/flights/detail/027782.json b/source/flights/detail/027/027782.json similarity index 100% rename from source/flights/detail/027782.json rename to source/flights/detail/027/027782.json diff --git a/source/flights/detail/027786.json b/source/flights/detail/027/027786.json similarity index 100% rename from source/flights/detail/027786.json rename to source/flights/detail/027/027786.json diff --git a/source/flights/detail/027787.json b/source/flights/detail/027/027787.json similarity index 100% rename from source/flights/detail/027787.json rename to source/flights/detail/027/027787.json diff --git a/source/flights/detail/027788.json b/source/flights/detail/027/027788.json similarity index 100% rename from source/flights/detail/027788.json rename to source/flights/detail/027/027788.json diff --git a/source/flights/detail/027789.json b/source/flights/detail/027/027789.json similarity index 100% rename from source/flights/detail/027789.json rename to source/flights/detail/027/027789.json diff --git a/source/flights/detail/027790.json b/source/flights/detail/027/027790.json similarity index 100% rename from source/flights/detail/027790.json rename to source/flights/detail/027/027790.json diff --git a/source/flights/detail/027791.json b/source/flights/detail/027/027791.json similarity index 100% rename from source/flights/detail/027791.json rename to source/flights/detail/027/027791.json diff --git a/source/flights/detail/027795.json b/source/flights/detail/027/027795.json similarity index 100% rename from source/flights/detail/027795.json rename to source/flights/detail/027/027795.json diff --git a/source/flights/detail/027797.json b/source/flights/detail/027/027797.json similarity index 100% rename from source/flights/detail/027797.json rename to source/flights/detail/027/027797.json diff --git a/source/flights/detail/027798.json b/source/flights/detail/027/027798.json similarity index 100% rename from source/flights/detail/027798.json rename to source/flights/detail/027/027798.json diff --git a/source/flights/detail/027799.json b/source/flights/detail/027/027799.json similarity index 100% rename from source/flights/detail/027799.json rename to source/flights/detail/027/027799.json diff --git a/source/flights/detail/027802.json b/source/flights/detail/027/027802.json similarity index 100% rename from source/flights/detail/027802.json rename to source/flights/detail/027/027802.json diff --git a/source/flights/detail/027850.json b/source/flights/detail/027/027850.json similarity index 100% rename from source/flights/detail/027850.json rename to source/flights/detail/027/027850.json diff --git a/source/flights/detail/027851.json b/source/flights/detail/027/027851.json similarity index 100% rename from source/flights/detail/027851.json rename to source/flights/detail/027/027851.json diff --git a/source/flights/detail/027853.json b/source/flights/detail/027/027853.json similarity index 100% rename from source/flights/detail/027853.json rename to source/flights/detail/027/027853.json diff --git a/source/flights/detail/027854.json b/source/flights/detail/027/027854.json similarity index 100% rename from source/flights/detail/027854.json rename to source/flights/detail/027/027854.json diff --git a/source/flights/detail/027855.json b/source/flights/detail/027/027855.json similarity index 100% rename from source/flights/detail/027855.json rename to source/flights/detail/027/027855.json diff --git a/source/flights/detail/027893.json b/source/flights/detail/027/027893.json similarity index 100% rename from source/flights/detail/027893.json rename to source/flights/detail/027/027893.json diff --git a/source/flights/detail/027895.json b/source/flights/detail/027/027895.json similarity index 100% rename from source/flights/detail/027895.json rename to source/flights/detail/027/027895.json diff --git a/source/flights/detail/027896.json b/source/flights/detail/027/027896.json similarity index 100% rename from source/flights/detail/027896.json rename to source/flights/detail/027/027896.json diff --git a/source/flights/detail/027897.json b/source/flights/detail/027/027897.json similarity index 100% rename from source/flights/detail/027897.json rename to source/flights/detail/027/027897.json diff --git a/source/flights/detail/027899.json b/source/flights/detail/027/027899.json similarity index 100% rename from source/flights/detail/027899.json rename to source/flights/detail/027/027899.json diff --git a/source/flights/detail/027900.json b/source/flights/detail/027/027900.json similarity index 100% rename from source/flights/detail/027900.json rename to source/flights/detail/027/027900.json diff --git a/source/flights/detail/027901.json b/source/flights/detail/027/027901.json similarity index 100% rename from source/flights/detail/027901.json rename to source/flights/detail/027/027901.json diff --git a/source/flights/detail/027902.json b/source/flights/detail/027/027902.json similarity index 100% rename from source/flights/detail/027902.json rename to source/flights/detail/027/027902.json diff --git a/source/flights/detail/027909.json b/source/flights/detail/027/027909.json similarity index 100% rename from source/flights/detail/027909.json rename to source/flights/detail/027/027909.json diff --git a/source/flights/detail/027910.json b/source/flights/detail/027/027910.json similarity index 100% rename from source/flights/detail/027910.json rename to source/flights/detail/027/027910.json diff --git a/source/flights/detail/027911.json b/source/flights/detail/027/027911.json similarity index 100% rename from source/flights/detail/027911.json rename to source/flights/detail/027/027911.json diff --git a/source/flights/detail/028536.json b/source/flights/detail/028/028536.json similarity index 100% rename from source/flights/detail/028536.json rename to source/flights/detail/028/028536.json diff --git a/source/flights/detail/028537.json b/source/flights/detail/028/028537.json similarity index 100% rename from source/flights/detail/028537.json rename to source/flights/detail/028/028537.json diff --git a/source/flights/detail/028538.json b/source/flights/detail/028/028538.json similarity index 100% rename from source/flights/detail/028538.json rename to source/flights/detail/028/028538.json diff --git a/source/flights/detail/028539.json b/source/flights/detail/028/028539.json similarity index 100% rename from source/flights/detail/028539.json rename to source/flights/detail/028/028539.json diff --git a/source/flights/detail/028540.json b/source/flights/detail/028/028540.json similarity index 100% rename from source/flights/detail/028540.json rename to source/flights/detail/028/028540.json diff --git a/source/flights/detail/028550.json b/source/flights/detail/028/028550.json similarity index 100% rename from source/flights/detail/028550.json rename to source/flights/detail/028/028550.json diff --git a/source/flights/detail/028551.json b/source/flights/detail/028/028551.json similarity index 100% rename from source/flights/detail/028551.json rename to source/flights/detail/028/028551.json diff --git a/source/flights/detail/028557.json b/source/flights/detail/028/028557.json similarity index 100% rename from source/flights/detail/028557.json rename to source/flights/detail/028/028557.json diff --git a/source/flights/detail/028558.json b/source/flights/detail/028/028558.json similarity index 100% rename from source/flights/detail/028558.json rename to source/flights/detail/028/028558.json diff --git a/source/flights/detail/028559.json b/source/flights/detail/028/028559.json similarity index 100% rename from source/flights/detail/028559.json rename to source/flights/detail/028/028559.json diff --git a/source/flights/detail/028560.json b/source/flights/detail/028/028560.json similarity index 100% rename from source/flights/detail/028560.json rename to source/flights/detail/028/028560.json diff --git a/source/flights/detail/028565.json b/source/flights/detail/028/028565.json similarity index 100% rename from source/flights/detail/028565.json rename to source/flights/detail/028/028565.json diff --git a/source/flights/detail/028566.json b/source/flights/detail/028/028566.json similarity index 100% rename from source/flights/detail/028566.json rename to source/flights/detail/028/028566.json diff --git a/source/flights/detail/028570.json b/source/flights/detail/028/028570.json similarity index 100% rename from source/flights/detail/028570.json rename to source/flights/detail/028/028570.json diff --git a/source/flights/detail/028590.json b/source/flights/detail/028/028590.json similarity index 100% rename from source/flights/detail/028590.json rename to source/flights/detail/028/028590.json diff --git a/source/flights/detail/028591.json b/source/flights/detail/028/028591.json similarity index 100% rename from source/flights/detail/028591.json rename to source/flights/detail/028/028591.json diff --git a/source/flights/detail/028592.json b/source/flights/detail/028/028592.json similarity index 100% rename from source/flights/detail/028592.json rename to source/flights/detail/028/028592.json diff --git a/source/flights/detail/028633.json b/source/flights/detail/028/028633.json similarity index 100% rename from source/flights/detail/028633.json rename to source/flights/detail/028/028633.json diff --git a/source/flights/detail/028654.json b/source/flights/detail/028/028654.json similarity index 100% rename from source/flights/detail/028654.json rename to source/flights/detail/028/028654.json diff --git a/source/flights/detail/028659.json b/source/flights/detail/028/028659.json similarity index 100% rename from source/flights/detail/028659.json rename to source/flights/detail/028/028659.json diff --git a/source/flights/detail/028660.json b/source/flights/detail/028/028660.json similarity index 100% rename from source/flights/detail/028660.json rename to source/flights/detail/028/028660.json diff --git a/source/flights/detail/028665.json b/source/flights/detail/028/028665.json similarity index 100% rename from source/flights/detail/028665.json rename to source/flights/detail/028/028665.json diff --git a/source/flights/detail/028666.json b/source/flights/detail/028/028666.json similarity index 100% rename from source/flights/detail/028666.json rename to source/flights/detail/028/028666.json diff --git a/source/flights/detail/028667.json b/source/flights/detail/028/028667.json similarity index 100% rename from source/flights/detail/028667.json rename to source/flights/detail/028/028667.json diff --git a/source/flights/detail/028670.json b/source/flights/detail/028/028670.json similarity index 100% rename from source/flights/detail/028670.json rename to source/flights/detail/028/028670.json diff --git a/source/flights/detail/028671.json b/source/flights/detail/028/028671.json similarity index 100% rename from source/flights/detail/028671.json rename to source/flights/detail/028/028671.json diff --git a/source/flights/detail/028672.json b/source/flights/detail/028/028672.json similarity index 100% rename from source/flights/detail/028672.json rename to source/flights/detail/028/028672.json diff --git a/source/flights/detail/028673.json b/source/flights/detail/028/028673.json similarity index 100% rename from source/flights/detail/028673.json rename to source/flights/detail/028/028673.json diff --git a/source/flights/detail/028674.json b/source/flights/detail/028/028674.json similarity index 100% rename from source/flights/detail/028674.json rename to source/flights/detail/028/028674.json diff --git a/source/flights/detail/028675.json b/source/flights/detail/028/028675.json similarity index 100% rename from source/flights/detail/028675.json rename to source/flights/detail/028/028675.json diff --git a/source/flights/detail/028676.json b/source/flights/detail/028/028676.json similarity index 100% rename from source/flights/detail/028676.json rename to source/flights/detail/028/028676.json diff --git a/source/flights/detail/028693.json b/source/flights/detail/028/028693.json similarity index 100% rename from source/flights/detail/028693.json rename to source/flights/detail/028/028693.json diff --git a/source/flights/detail/028734.json b/source/flights/detail/028/028734.json similarity index 100% rename from source/flights/detail/028734.json rename to source/flights/detail/028/028734.json diff --git a/source/flights/detail/028735.json b/source/flights/detail/028/028735.json similarity index 100% rename from source/flights/detail/028735.json rename to source/flights/detail/028/028735.json diff --git a/source/flights/detail/028738.json b/source/flights/detail/028/028738.json similarity index 100% rename from source/flights/detail/028738.json rename to source/flights/detail/028/028738.json diff --git a/source/flights/detail/028739.json b/source/flights/detail/028/028739.json similarity index 100% rename from source/flights/detail/028739.json rename to source/flights/detail/028/028739.json diff --git a/source/flights/detail/028740.json b/source/flights/detail/028/028740.json similarity index 100% rename from source/flights/detail/028740.json rename to source/flights/detail/028/028740.json diff --git a/source/flights/detail/028765.json b/source/flights/detail/028/028765.json similarity index 100% rename from source/flights/detail/028765.json rename to source/flights/detail/028/028765.json diff --git a/source/flights/detail/028768.json b/source/flights/detail/028/028768.json similarity index 100% rename from source/flights/detail/028768.json rename to source/flights/detail/028/028768.json diff --git a/source/flights/detail/028769.json b/source/flights/detail/028/028769.json similarity index 100% rename from source/flights/detail/028769.json rename to source/flights/detail/028/028769.json diff --git a/source/flights/detail/028772.json b/source/flights/detail/028/028772.json similarity index 100% rename from source/flights/detail/028772.json rename to source/flights/detail/028/028772.json diff --git a/source/flights/detail/028788.json b/source/flights/detail/028/028788.json similarity index 100% rename from source/flights/detail/028788.json rename to source/flights/detail/028/028788.json diff --git a/source/flights/detail/028794.json b/source/flights/detail/028/028794.json similarity index 100% rename from source/flights/detail/028794.json rename to source/flights/detail/028/028794.json diff --git a/source/flights/detail/028800.json b/source/flights/detail/028/028800.json similarity index 100% rename from source/flights/detail/028800.json rename to source/flights/detail/028/028800.json diff --git a/source/flights/detail/028807.json b/source/flights/detail/028/028807.json similarity index 100% rename from source/flights/detail/028807.json rename to source/flights/detail/028/028807.json diff --git a/source/flights/detail/028808.json b/source/flights/detail/028/028808.json similarity index 100% rename from source/flights/detail/028808.json rename to source/flights/detail/028/028808.json diff --git a/source/flights/detail/028810.json b/source/flights/detail/028/028810.json similarity index 100% rename from source/flights/detail/028810.json rename to source/flights/detail/028/028810.json diff --git a/source/flights/detail/028811.json b/source/flights/detail/028/028811.json similarity index 100% rename from source/flights/detail/028811.json rename to source/flights/detail/028/028811.json diff --git a/source/flights/detail/028813.json b/source/flights/detail/028/028813.json similarity index 100% rename from source/flights/detail/028813.json rename to source/flights/detail/028/028813.json diff --git a/source/flights/detail/028818.json b/source/flights/detail/028/028818.json similarity index 100% rename from source/flights/detail/028818.json rename to source/flights/detail/028/028818.json diff --git a/source/flights/detail/028833.json b/source/flights/detail/028/028833.json similarity index 100% rename from source/flights/detail/028833.json rename to source/flights/detail/028/028833.json diff --git a/source/flights/detail/028840.json b/source/flights/detail/028/028840.json similarity index 100% rename from source/flights/detail/028840.json rename to source/flights/detail/028/028840.json diff --git a/source/flights/detail/028865.json b/source/flights/detail/028/028865.json similarity index 100% rename from source/flights/detail/028865.json rename to source/flights/detail/028/028865.json diff --git a/source/flights/detail/028866.json b/source/flights/detail/028/028866.json similarity index 100% rename from source/flights/detail/028866.json rename to source/flights/detail/028/028866.json diff --git a/source/flights/detail/028867.json b/source/flights/detail/028/028867.json similarity index 100% rename from source/flights/detail/028867.json rename to source/flights/detail/028/028867.json diff --git a/source/flights/detail/028868.json b/source/flights/detail/028/028868.json similarity index 100% rename from source/flights/detail/028868.json rename to source/flights/detail/028/028868.json diff --git a/source/flights/detail/028869.json b/source/flights/detail/028/028869.json similarity index 100% rename from source/flights/detail/028869.json rename to source/flights/detail/028/028869.json diff --git a/source/flights/detail/028870.json b/source/flights/detail/028/028870.json similarity index 100% rename from source/flights/detail/028870.json rename to source/flights/detail/028/028870.json diff --git a/source/flights/detail/028871.json b/source/flights/detail/028/028871.json similarity index 100% rename from source/flights/detail/028871.json rename to source/flights/detail/028/028871.json diff --git a/source/flights/detail/028872.json b/source/flights/detail/028/028872.json similarity index 100% rename from source/flights/detail/028872.json rename to source/flights/detail/028/028872.json diff --git a/source/flights/detail/028873.json b/source/flights/detail/028/028873.json similarity index 100% rename from source/flights/detail/028873.json rename to source/flights/detail/028/028873.json diff --git a/source/flights/detail/028874.json b/source/flights/detail/028/028874.json similarity index 100% rename from source/flights/detail/028874.json rename to source/flights/detail/028/028874.json diff --git a/source/flights/detail/028879.json b/source/flights/detail/028/028879.json similarity index 100% rename from source/flights/detail/028879.json rename to source/flights/detail/028/028879.json diff --git a/source/flights/detail/028880.json b/source/flights/detail/028/028880.json similarity index 100% rename from source/flights/detail/028880.json rename to source/flights/detail/028/028880.json diff --git a/source/flights/detail/028895.json b/source/flights/detail/028/028895.json similarity index 100% rename from source/flights/detail/028895.json rename to source/flights/detail/028/028895.json diff --git a/source/flights/detail/028896.json b/source/flights/detail/028/028896.json similarity index 100% rename from source/flights/detail/028896.json rename to source/flights/detail/028/028896.json diff --git a/source/flights/detail/028897.json b/source/flights/detail/028/028897.json similarity index 100% rename from source/flights/detail/028897.json rename to source/flights/detail/028/028897.json diff --git a/source/flights/detail/028898.json b/source/flights/detail/028/028898.json similarity index 100% rename from source/flights/detail/028898.json rename to source/flights/detail/028/028898.json diff --git a/source/flights/detail/028899.json b/source/flights/detail/028/028899.json similarity index 100% rename from source/flights/detail/028899.json rename to source/flights/detail/028/028899.json diff --git a/source/flights/detail/028900.json b/source/flights/detail/028/028900.json similarity index 100% rename from source/flights/detail/028900.json rename to source/flights/detail/028/028900.json diff --git a/source/flights/detail/028901.json b/source/flights/detail/028/028901.json similarity index 100% rename from source/flights/detail/028901.json rename to source/flights/detail/028/028901.json diff --git a/source/flights/detail/028904.json b/source/flights/detail/028/028904.json similarity index 100% rename from source/flights/detail/028904.json rename to source/flights/detail/028/028904.json diff --git a/source/flights/detail/028905.json b/source/flights/detail/028/028905.json similarity index 100% rename from source/flights/detail/028905.json rename to source/flights/detail/028/028905.json diff --git a/source/flights/detail/028907.json b/source/flights/detail/028/028907.json similarity index 100% rename from source/flights/detail/028907.json rename to source/flights/detail/028/028907.json diff --git a/source/flights/detail/028908.json b/source/flights/detail/028/028908.json similarity index 100% rename from source/flights/detail/028908.json rename to source/flights/detail/028/028908.json diff --git a/source/flights/detail/028911.json b/source/flights/detail/028/028911.json similarity index 100% rename from source/flights/detail/028911.json rename to source/flights/detail/028/028911.json diff --git a/source/flights/detail/028912.json b/source/flights/detail/028/028912.json similarity index 100% rename from source/flights/detail/028912.json rename to source/flights/detail/028/028912.json diff --git a/source/flights/detail/028913.json b/source/flights/detail/028/028913.json similarity index 100% rename from source/flights/detail/028913.json rename to source/flights/detail/028/028913.json diff --git a/source/flights/detail/028915.json b/source/flights/detail/028/028915.json similarity index 100% rename from source/flights/detail/028915.json rename to source/flights/detail/028/028915.json diff --git a/source/flights/detail/028947.json b/source/flights/detail/028/028947.json similarity index 100% rename from source/flights/detail/028947.json rename to source/flights/detail/028/028947.json diff --git a/source/flights/detail/028948.json b/source/flights/detail/028/028948.json similarity index 100% rename from source/flights/detail/028948.json rename to source/flights/detail/028/028948.json diff --git a/source/flights/detail/028950.json b/source/flights/detail/028/028950.json similarity index 100% rename from source/flights/detail/028950.json rename to source/flights/detail/028/028950.json diff --git a/source/flights/detail/028951.json b/source/flights/detail/028/028951.json similarity index 100% rename from source/flights/detail/028951.json rename to source/flights/detail/028/028951.json diff --git a/source/flights/detail/028958.json b/source/flights/detail/028/028958.json similarity index 100% rename from source/flights/detail/028958.json rename to source/flights/detail/028/028958.json diff --git a/source/flights/detail/028959.json b/source/flights/detail/028/028959.json similarity index 100% rename from source/flights/detail/028959.json rename to source/flights/detail/028/028959.json diff --git a/source/flights/detail/028966.json b/source/flights/detail/028/028966.json similarity index 100% rename from source/flights/detail/028966.json rename to source/flights/detail/028/028966.json diff --git a/source/flights/detail/028967.json b/source/flights/detail/028/028967.json similarity index 100% rename from source/flights/detail/028967.json rename to source/flights/detail/028/028967.json diff --git a/source/flights/detail/028968.json b/source/flights/detail/028/028968.json similarity index 100% rename from source/flights/detail/028968.json rename to source/flights/detail/028/028968.json diff --git a/source/flights/detail/029002.json b/source/flights/detail/029/029002.json similarity index 100% rename from source/flights/detail/029002.json rename to source/flights/detail/029/029002.json diff --git a/source/flights/detail/029003.json b/source/flights/detail/029/029003.json similarity index 100% rename from source/flights/detail/029003.json rename to source/flights/detail/029/029003.json diff --git a/source/flights/detail/029004.json b/source/flights/detail/029/029004.json similarity index 100% rename from source/flights/detail/029004.json rename to source/flights/detail/029/029004.json diff --git a/source/flights/detail/029019.json b/source/flights/detail/029/029019.json similarity index 100% rename from source/flights/detail/029019.json rename to source/flights/detail/029/029019.json diff --git a/source/flights/detail/029020.json b/source/flights/detail/029/029020.json similarity index 100% rename from source/flights/detail/029020.json rename to source/flights/detail/029/029020.json diff --git a/source/flights/detail/029052.json b/source/flights/detail/029/029052.json similarity index 100% rename from source/flights/detail/029052.json rename to source/flights/detail/029/029052.json diff --git a/source/flights/detail/029056.json b/source/flights/detail/029/029056.json similarity index 100% rename from source/flights/detail/029056.json rename to source/flights/detail/029/029056.json diff --git a/source/flights/detail/029057.json b/source/flights/detail/029/029057.json similarity index 100% rename from source/flights/detail/029057.json rename to source/flights/detail/029/029057.json diff --git a/source/flights/detail/029058.json b/source/flights/detail/029/029058.json similarity index 100% rename from source/flights/detail/029058.json rename to source/flights/detail/029/029058.json diff --git a/source/flights/detail/029060.json b/source/flights/detail/029/029060.json similarity index 100% rename from source/flights/detail/029060.json rename to source/flights/detail/029/029060.json diff --git a/source/flights/detail/029064.json b/source/flights/detail/029/029064.json similarity index 100% rename from source/flights/detail/029064.json rename to source/flights/detail/029/029064.json diff --git a/source/flights/detail/029065.json b/source/flights/detail/029/029065.json similarity index 100% rename from source/flights/detail/029065.json rename to source/flights/detail/029/029065.json diff --git a/source/flights/detail/029066.json b/source/flights/detail/029/029066.json similarity index 100% rename from source/flights/detail/029066.json rename to source/flights/detail/029/029066.json diff --git a/source/flights/detail/029070.json b/source/flights/detail/029/029070.json similarity index 100% rename from source/flights/detail/029070.json rename to source/flights/detail/029/029070.json diff --git a/source/flights/detail/029071.json b/source/flights/detail/029/029071.json similarity index 100% rename from source/flights/detail/029071.json rename to source/flights/detail/029/029071.json diff --git a/source/flights/detail/029074.json b/source/flights/detail/029/029074.json similarity index 100% rename from source/flights/detail/029074.json rename to source/flights/detail/029/029074.json diff --git a/source/flights/detail/029088.json b/source/flights/detail/029/029088.json similarity index 100% rename from source/flights/detail/029088.json rename to source/flights/detail/029/029088.json diff --git a/source/flights/detail/029101.json b/source/flights/detail/029/029101.json similarity index 100% rename from source/flights/detail/029101.json rename to source/flights/detail/029/029101.json diff --git a/source/flights/detail/029102.json b/source/flights/detail/029/029102.json similarity index 100% rename from source/flights/detail/029102.json rename to source/flights/detail/029/029102.json diff --git a/source/flights/detail/029104.json b/source/flights/detail/029/029104.json similarity index 100% rename from source/flights/detail/029104.json rename to source/flights/detail/029/029104.json diff --git a/source/flights/detail/029105.json b/source/flights/detail/029/029105.json similarity index 100% rename from source/flights/detail/029105.json rename to source/flights/detail/029/029105.json diff --git a/source/flights/detail/029108.json b/source/flights/detail/029/029108.json similarity index 100% rename from source/flights/detail/029108.json rename to source/flights/detail/029/029108.json diff --git a/source/flights/detail/029109.json b/source/flights/detail/029/029109.json similarity index 100% rename from source/flights/detail/029109.json rename to source/flights/detail/029/029109.json diff --git a/source/flights/detail/029110.json b/source/flights/detail/029/029110.json similarity index 100% rename from source/flights/detail/029110.json rename to source/flights/detail/029/029110.json diff --git a/source/flights/detail/029111.json b/source/flights/detail/029/029111.json similarity index 100% rename from source/flights/detail/029111.json rename to source/flights/detail/029/029111.json diff --git a/source/flights/detail/029112.json b/source/flights/detail/029/029112.json similarity index 100% rename from source/flights/detail/029112.json rename to source/flights/detail/029/029112.json diff --git a/source/flights/detail/029113.json b/source/flights/detail/029/029113.json similarity index 100% rename from source/flights/detail/029113.json rename to source/flights/detail/029/029113.json diff --git a/source/flights/detail/029114.json b/source/flights/detail/029/029114.json similarity index 100% rename from source/flights/detail/029114.json rename to source/flights/detail/029/029114.json diff --git a/source/flights/detail/029116.json b/source/flights/detail/029/029116.json similarity index 100% rename from source/flights/detail/029116.json rename to source/flights/detail/029/029116.json diff --git a/source/flights/detail/029117.json b/source/flights/detail/029/029117.json similarity index 100% rename from source/flights/detail/029117.json rename to source/flights/detail/029/029117.json diff --git a/source/flights/detail/029118.json b/source/flights/detail/029/029118.json similarity index 100% rename from source/flights/detail/029118.json rename to source/flights/detail/029/029118.json diff --git a/source/flights/detail/029119.json b/source/flights/detail/029/029119.json similarity index 100% rename from source/flights/detail/029119.json rename to source/flights/detail/029/029119.json diff --git a/source/flights/detail/029123.json b/source/flights/detail/029/029123.json similarity index 100% rename from source/flights/detail/029123.json rename to source/flights/detail/029/029123.json diff --git a/source/flights/detail/029124.json b/source/flights/detail/029/029124.json similarity index 100% rename from source/flights/detail/029124.json rename to source/flights/detail/029/029124.json diff --git a/source/flights/detail/029138.json b/source/flights/detail/029/029138.json similarity index 100% rename from source/flights/detail/029138.json rename to source/flights/detail/029/029138.json diff --git a/source/flights/detail/029140.json b/source/flights/detail/029/029140.json similarity index 100% rename from source/flights/detail/029140.json rename to source/flights/detail/029/029140.json diff --git a/source/flights/detail/029151.json b/source/flights/detail/029/029151.json similarity index 100% rename from source/flights/detail/029151.json rename to source/flights/detail/029/029151.json diff --git a/source/flights/detail/029152.json b/source/flights/detail/029/029152.json similarity index 100% rename from source/flights/detail/029152.json rename to source/flights/detail/029/029152.json diff --git a/source/flights/detail/029157.json b/source/flights/detail/029/029157.json similarity index 100% rename from source/flights/detail/029157.json rename to source/flights/detail/029/029157.json diff --git a/source/flights/detail/029159.json b/source/flights/detail/029/029159.json similarity index 100% rename from source/flights/detail/029159.json rename to source/flights/detail/029/029159.json diff --git a/source/flights/detail/029160.json b/source/flights/detail/029/029160.json similarity index 100% rename from source/flights/detail/029160.json rename to source/flights/detail/029/029160.json diff --git a/source/flights/detail/029161.json b/source/flights/detail/029/029161.json similarity index 100% rename from source/flights/detail/029161.json rename to source/flights/detail/029/029161.json diff --git a/source/flights/detail/029162.json b/source/flights/detail/029/029162.json similarity index 100% rename from source/flights/detail/029162.json rename to source/flights/detail/029/029162.json diff --git a/source/flights/detail/029163.json b/source/flights/detail/029/029163.json similarity index 100% rename from source/flights/detail/029163.json rename to source/flights/detail/029/029163.json diff --git a/source/flights/detail/029165.json b/source/flights/detail/029/029165.json similarity index 100% rename from source/flights/detail/029165.json rename to source/flights/detail/029/029165.json diff --git a/source/flights/detail/029166.json b/source/flights/detail/029/029166.json similarity index 100% rename from source/flights/detail/029166.json rename to source/flights/detail/029/029166.json diff --git a/source/flights/detail/029179.json b/source/flights/detail/029/029179.json similarity index 100% rename from source/flights/detail/029179.json rename to source/flights/detail/029/029179.json diff --git a/source/flights/detail/029182.json b/source/flights/detail/029/029182.json similarity index 100% rename from source/flights/detail/029182.json rename to source/flights/detail/029/029182.json diff --git a/source/flights/detail/029183.json b/source/flights/detail/029/029183.json similarity index 100% rename from source/flights/detail/029183.json rename to source/flights/detail/029/029183.json diff --git a/source/flights/detail/029186.json b/source/flights/detail/029/029186.json similarity index 100% rename from source/flights/detail/029186.json rename to source/flights/detail/029/029186.json diff --git a/source/flights/detail/029189.json b/source/flights/detail/029/029189.json similarity index 100% rename from source/flights/detail/029189.json rename to source/flights/detail/029/029189.json diff --git a/source/flights/detail/029190.json b/source/flights/detail/029/029190.json similarity index 100% rename from source/flights/detail/029190.json rename to source/flights/detail/029/029190.json diff --git a/source/flights/detail/029191.json b/source/flights/detail/029/029191.json similarity index 100% rename from source/flights/detail/029191.json rename to source/flights/detail/029/029191.json diff --git a/source/flights/detail/029192.json b/source/flights/detail/029/029192.json similarity index 100% rename from source/flights/detail/029192.json rename to source/flights/detail/029/029192.json diff --git a/source/flights/detail/029193.json b/source/flights/detail/029/029193.json similarity index 100% rename from source/flights/detail/029193.json rename to source/flights/detail/029/029193.json diff --git a/source/flights/detail/029195.json b/source/flights/detail/029/029195.json similarity index 100% rename from source/flights/detail/029195.json rename to source/flights/detail/029/029195.json diff --git a/source/flights/detail/029196.json b/source/flights/detail/029/029196.json similarity index 100% rename from source/flights/detail/029196.json rename to source/flights/detail/029/029196.json diff --git a/source/flights/detail/029197.json b/source/flights/detail/029/029197.json similarity index 100% rename from source/flights/detail/029197.json rename to source/flights/detail/029/029197.json diff --git a/source/flights/detail/029198.json b/source/flights/detail/029/029198.json similarity index 100% rename from source/flights/detail/029198.json rename to source/flights/detail/029/029198.json diff --git a/source/flights/detail/029200.json b/source/flights/detail/029/029200.json similarity index 100% rename from source/flights/detail/029200.json rename to source/flights/detail/029/029200.json diff --git a/source/flights/detail/029201.json b/source/flights/detail/029/029201.json similarity index 100% rename from source/flights/detail/029201.json rename to source/flights/detail/029/029201.json diff --git a/source/flights/detail/029247.json b/source/flights/detail/029/029247.json similarity index 100% rename from source/flights/detail/029247.json rename to source/flights/detail/029/029247.json diff --git a/source/flights/detail/029294.json b/source/flights/detail/029/029294.json similarity index 100% rename from source/flights/detail/029294.json rename to source/flights/detail/029/029294.json diff --git a/source/flights/detail/029296.json b/source/flights/detail/029/029296.json similarity index 100% rename from source/flights/detail/029296.json rename to source/flights/detail/029/029296.json diff --git a/source/flights/detail/029297.json b/source/flights/detail/029/029297.json similarity index 100% rename from source/flights/detail/029297.json rename to source/flights/detail/029/029297.json diff --git a/source/flights/detail/029298.json b/source/flights/detail/029/029298.json similarity index 100% rename from source/flights/detail/029298.json rename to source/flights/detail/029/029298.json diff --git a/source/flights/detail/029299.json b/source/flights/detail/029/029299.json similarity index 100% rename from source/flights/detail/029299.json rename to source/flights/detail/029/029299.json diff --git a/source/flights/detail/029301.json b/source/flights/detail/029/029301.json similarity index 100% rename from source/flights/detail/029301.json rename to source/flights/detail/029/029301.json diff --git a/source/flights/detail/029302.json b/source/flights/detail/029/029302.json similarity index 100% rename from source/flights/detail/029302.json rename to source/flights/detail/029/029302.json diff --git a/source/flights/detail/029303.json b/source/flights/detail/029/029303.json similarity index 100% rename from source/flights/detail/029303.json rename to source/flights/detail/029/029303.json diff --git a/source/flights/detail/029306.json b/source/flights/detail/029/029306.json similarity index 100% rename from source/flights/detail/029306.json rename to source/flights/detail/029/029306.json diff --git a/source/flights/detail/029307.json b/source/flights/detail/029/029307.json similarity index 100% rename from source/flights/detail/029307.json rename to source/flights/detail/029/029307.json diff --git a/source/flights/detail/029308.json b/source/flights/detail/029/029308.json similarity index 100% rename from source/flights/detail/029308.json rename to source/flights/detail/029/029308.json diff --git a/source/flights/detail/029310.json b/source/flights/detail/029/029310.json similarity index 100% rename from source/flights/detail/029310.json rename to source/flights/detail/029/029310.json diff --git a/source/flights/detail/029321.json b/source/flights/detail/029/029321.json similarity index 100% rename from source/flights/detail/029321.json rename to source/flights/detail/029/029321.json diff --git a/source/flights/detail/029328.json b/source/flights/detail/029/029328.json similarity index 100% rename from source/flights/detail/029328.json rename to source/flights/detail/029/029328.json diff --git a/source/flights/detail/029329.json b/source/flights/detail/029/029329.json similarity index 100% rename from source/flights/detail/029329.json rename to source/flights/detail/029/029329.json diff --git a/source/flights/detail/029330.json b/source/flights/detail/029/029330.json similarity index 100% rename from source/flights/detail/029330.json rename to source/flights/detail/029/029330.json diff --git a/source/flights/detail/029331.json b/source/flights/detail/029/029331.json similarity index 100% rename from source/flights/detail/029331.json rename to source/flights/detail/029/029331.json diff --git a/source/flights/detail/029333.json b/source/flights/detail/029/029333.json similarity index 100% rename from source/flights/detail/029333.json rename to source/flights/detail/029/029333.json diff --git a/source/flights/detail/029334.json b/source/flights/detail/029/029334.json similarity index 100% rename from source/flights/detail/029334.json rename to source/flights/detail/029/029334.json diff --git a/source/flights/detail/029335.json b/source/flights/detail/029/029335.json similarity index 100% rename from source/flights/detail/029335.json rename to source/flights/detail/029/029335.json diff --git a/source/flights/detail/029336.json b/source/flights/detail/029/029336.json similarity index 100% rename from source/flights/detail/029336.json rename to source/flights/detail/029/029336.json diff --git a/source/flights/detail/029369.json b/source/flights/detail/029/029369.json similarity index 100% rename from source/flights/detail/029369.json rename to source/flights/detail/029/029369.json diff --git a/source/flights/detail/029377.json b/source/flights/detail/029/029377.json similarity index 100% rename from source/flights/detail/029377.json rename to source/flights/detail/029/029377.json diff --git a/source/flights/detail/029378.json b/source/flights/detail/029/029378.json similarity index 100% rename from source/flights/detail/029378.json rename to source/flights/detail/029/029378.json diff --git a/source/flights/detail/029382.json b/source/flights/detail/029/029382.json similarity index 100% rename from source/flights/detail/029382.json rename to source/flights/detail/029/029382.json diff --git a/source/flights/detail/029383.json b/source/flights/detail/029/029383.json similarity index 100% rename from source/flights/detail/029383.json rename to source/flights/detail/029/029383.json diff --git a/source/flights/detail/029385.json b/source/flights/detail/029/029385.json similarity index 100% rename from source/flights/detail/029385.json rename to source/flights/detail/029/029385.json diff --git a/source/flights/detail/029386.json b/source/flights/detail/029/029386.json similarity index 100% rename from source/flights/detail/029386.json rename to source/flights/detail/029/029386.json diff --git a/source/flights/detail/029397.json b/source/flights/detail/029/029397.json similarity index 100% rename from source/flights/detail/029397.json rename to source/flights/detail/029/029397.json diff --git a/source/flights/detail/029398.json b/source/flights/detail/029/029398.json similarity index 100% rename from source/flights/detail/029398.json rename to source/flights/detail/029/029398.json diff --git a/source/flights/detail/029399.json b/source/flights/detail/029/029399.json similarity index 100% rename from source/flights/detail/029399.json rename to source/flights/detail/029/029399.json diff --git a/source/flights/detail/029402.json b/source/flights/detail/029/029402.json similarity index 100% rename from source/flights/detail/029402.json rename to source/flights/detail/029/029402.json diff --git a/source/flights/detail/029405.json b/source/flights/detail/029/029405.json similarity index 100% rename from source/flights/detail/029405.json rename to source/flights/detail/029/029405.json diff --git a/source/flights/detail/029408.json b/source/flights/detail/029/029408.json similarity index 100% rename from source/flights/detail/029408.json rename to source/flights/detail/029/029408.json diff --git a/source/flights/detail/029409.json b/source/flights/detail/029/029409.json similarity index 100% rename from source/flights/detail/029409.json rename to source/flights/detail/029/029409.json diff --git a/source/flights/detail/029410.json b/source/flights/detail/029/029410.json similarity index 100% rename from source/flights/detail/029410.json rename to source/flights/detail/029/029410.json diff --git a/source/flights/detail/029413.json b/source/flights/detail/029/029413.json similarity index 100% rename from source/flights/detail/029413.json rename to source/flights/detail/029/029413.json diff --git a/source/flights/detail/029419.json b/source/flights/detail/029/029419.json similarity index 100% rename from source/flights/detail/029419.json rename to source/flights/detail/029/029419.json diff --git a/source/flights/detail/029420.json b/source/flights/detail/029/029420.json similarity index 100% rename from source/flights/detail/029420.json rename to source/flights/detail/029/029420.json diff --git a/source/flights/detail/029421.json b/source/flights/detail/029/029421.json similarity index 100% rename from source/flights/detail/029421.json rename to source/flights/detail/029/029421.json diff --git a/source/flights/detail/029436.json b/source/flights/detail/029/029436.json similarity index 100% rename from source/flights/detail/029436.json rename to source/flights/detail/029/029436.json diff --git a/source/flights/detail/029438.json b/source/flights/detail/029/029438.json similarity index 100% rename from source/flights/detail/029438.json rename to source/flights/detail/029/029438.json diff --git a/source/flights/detail/029439.json b/source/flights/detail/029/029439.json similarity index 100% rename from source/flights/detail/029439.json rename to source/flights/detail/029/029439.json diff --git a/source/flights/detail/029441.json b/source/flights/detail/029/029441.json similarity index 100% rename from source/flights/detail/029441.json rename to source/flights/detail/029/029441.json diff --git a/source/flights/detail/029453.json b/source/flights/detail/029/029453.json similarity index 100% rename from source/flights/detail/029453.json rename to source/flights/detail/029/029453.json diff --git a/source/flights/detail/029455.json b/source/flights/detail/029/029455.json similarity index 100% rename from source/flights/detail/029455.json rename to source/flights/detail/029/029455.json diff --git a/source/flights/detail/029470.json b/source/flights/detail/029/029470.json similarity index 100% rename from source/flights/detail/029470.json rename to source/flights/detail/029/029470.json diff --git a/source/flights/detail/029478.json b/source/flights/detail/029/029478.json similarity index 100% rename from source/flights/detail/029478.json rename to source/flights/detail/029/029478.json diff --git a/source/flights/detail/029479.json b/source/flights/detail/029/029479.json similarity index 100% rename from source/flights/detail/029479.json rename to source/flights/detail/029/029479.json diff --git a/source/flights/detail/029481.json b/source/flights/detail/029/029481.json similarity index 100% rename from source/flights/detail/029481.json rename to source/flights/detail/029/029481.json diff --git a/source/flights/detail/029490.json b/source/flights/detail/029/029490.json similarity index 100% rename from source/flights/detail/029490.json rename to source/flights/detail/029/029490.json diff --git a/source/flights/detail/029491.json b/source/flights/detail/029/029491.json similarity index 100% rename from source/flights/detail/029491.json rename to source/flights/detail/029/029491.json diff --git a/source/flights/detail/029492.json b/source/flights/detail/029/029492.json similarity index 100% rename from source/flights/detail/029492.json rename to source/flights/detail/029/029492.json diff --git a/source/flights/detail/029493.json b/source/flights/detail/029/029493.json similarity index 100% rename from source/flights/detail/029493.json rename to source/flights/detail/029/029493.json diff --git a/source/flights/detail/029494.json b/source/flights/detail/029/029494.json similarity index 100% rename from source/flights/detail/029494.json rename to source/flights/detail/029/029494.json diff --git a/source/flights/detail/029498.json b/source/flights/detail/029/029498.json similarity index 100% rename from source/flights/detail/029498.json rename to source/flights/detail/029/029498.json diff --git a/source/flights/detail/029504.json b/source/flights/detail/029/029504.json similarity index 100% rename from source/flights/detail/029504.json rename to source/flights/detail/029/029504.json diff --git a/source/flights/detail/029507.json b/source/flights/detail/029/029507.json similarity index 100% rename from source/flights/detail/029507.json rename to source/flights/detail/029/029507.json diff --git a/source/flights/detail/029536.json b/source/flights/detail/029/029536.json similarity index 100% rename from source/flights/detail/029536.json rename to source/flights/detail/029/029536.json diff --git a/source/flights/detail/029542.json b/source/flights/detail/029/029542.json similarity index 100% rename from source/flights/detail/029542.json rename to source/flights/detail/029/029542.json diff --git a/source/flights/detail/029544.json b/source/flights/detail/029/029544.json similarity index 100% rename from source/flights/detail/029544.json rename to source/flights/detail/029/029544.json diff --git a/source/flights/detail/029546.json b/source/flights/detail/029/029546.json similarity index 100% rename from source/flights/detail/029546.json rename to source/flights/detail/029/029546.json diff --git a/source/flights/detail/029563.json b/source/flights/detail/029/029563.json similarity index 100% rename from source/flights/detail/029563.json rename to source/flights/detail/029/029563.json diff --git a/source/flights/detail/029565.json b/source/flights/detail/029/029565.json similarity index 100% rename from source/flights/detail/029565.json rename to source/flights/detail/029/029565.json diff --git a/source/flights/detail/029572.json b/source/flights/detail/029/029572.json similarity index 100% rename from source/flights/detail/029572.json rename to source/flights/detail/029/029572.json diff --git a/source/flights/detail/029573.json b/source/flights/detail/029/029573.json similarity index 100% rename from source/flights/detail/029573.json rename to source/flights/detail/029/029573.json diff --git a/source/flights/detail/029575.json b/source/flights/detail/029/029575.json similarity index 100% rename from source/flights/detail/029575.json rename to source/flights/detail/029/029575.json diff --git a/source/flights/detail/029594.json b/source/flights/detail/029/029594.json similarity index 100% rename from source/flights/detail/029594.json rename to source/flights/detail/029/029594.json diff --git a/source/flights/detail/029596.json b/source/flights/detail/029/029596.json similarity index 100% rename from source/flights/detail/029596.json rename to source/flights/detail/029/029596.json diff --git a/source/flights/detail/029609.json b/source/flights/detail/029/029609.json similarity index 100% rename from source/flights/detail/029609.json rename to source/flights/detail/029/029609.json diff --git a/source/flights/detail/029610.json b/source/flights/detail/029/029610.json similarity index 100% rename from source/flights/detail/029610.json rename to source/flights/detail/029/029610.json diff --git a/source/flights/detail/029611.json b/source/flights/detail/029/029611.json similarity index 100% rename from source/flights/detail/029611.json rename to source/flights/detail/029/029611.json diff --git a/source/flights/detail/029614.json b/source/flights/detail/029/029614.json similarity index 100% rename from source/flights/detail/029614.json rename to source/flights/detail/029/029614.json diff --git a/source/flights/detail/029615.json b/source/flights/detail/029/029615.json similarity index 100% rename from source/flights/detail/029615.json rename to source/flights/detail/029/029615.json diff --git a/source/flights/detail/029616.json b/source/flights/detail/029/029616.json similarity index 100% rename from source/flights/detail/029616.json rename to source/flights/detail/029/029616.json diff --git a/source/flights/detail/029617.json b/source/flights/detail/029/029617.json similarity index 100% rename from source/flights/detail/029617.json rename to source/flights/detail/029/029617.json diff --git a/source/flights/detail/029622.json b/source/flights/detail/029/029622.json similarity index 100% rename from source/flights/detail/029622.json rename to source/flights/detail/029/029622.json diff --git a/source/flights/detail/029623.json b/source/flights/detail/029/029623.json similarity index 100% rename from source/flights/detail/029623.json rename to source/flights/detail/029/029623.json diff --git a/source/flights/detail/029628.json b/source/flights/detail/029/029628.json similarity index 100% rename from source/flights/detail/029628.json rename to source/flights/detail/029/029628.json diff --git a/source/flights/detail/029629.json b/source/flights/detail/029/029629.json similarity index 100% rename from source/flights/detail/029629.json rename to source/flights/detail/029/029629.json diff --git a/source/flights/detail/029643.json b/source/flights/detail/029/029643.json similarity index 100% rename from source/flights/detail/029643.json rename to source/flights/detail/029/029643.json diff --git a/source/flights/detail/029650.json b/source/flights/detail/029/029650.json similarity index 100% rename from source/flights/detail/029650.json rename to source/flights/detail/029/029650.json diff --git a/source/flights/detail/029703.json b/source/flights/detail/029/029703.json similarity index 100% rename from source/flights/detail/029703.json rename to source/flights/detail/029/029703.json diff --git a/source/flights/detail/029708.json b/source/flights/detail/029/029708.json similarity index 100% rename from source/flights/detail/029708.json rename to source/flights/detail/029/029708.json diff --git a/source/flights/detail/029713.json b/source/flights/detail/029/029713.json similarity index 100% rename from source/flights/detail/029713.json rename to source/flights/detail/029/029713.json diff --git a/source/flights/detail/029716.json b/source/flights/detail/029/029716.json similarity index 100% rename from source/flights/detail/029716.json rename to source/flights/detail/029/029716.json diff --git a/source/flights/detail/029717.json b/source/flights/detail/029/029717.json similarity index 100% rename from source/flights/detail/029717.json rename to source/flights/detail/029/029717.json diff --git a/source/flights/detail/029722.json b/source/flights/detail/029/029722.json similarity index 100% rename from source/flights/detail/029722.json rename to source/flights/detail/029/029722.json diff --git a/source/flights/detail/029723.json b/source/flights/detail/029/029723.json similarity index 100% rename from source/flights/detail/029723.json rename to source/flights/detail/029/029723.json diff --git a/source/flights/detail/029724.json b/source/flights/detail/029/029724.json similarity index 100% rename from source/flights/detail/029724.json rename to source/flights/detail/029/029724.json diff --git a/source/flights/detail/029726.json b/source/flights/detail/029/029726.json similarity index 100% rename from source/flights/detail/029726.json rename to source/flights/detail/029/029726.json diff --git a/source/flights/detail/029727.json b/source/flights/detail/029/029727.json similarity index 100% rename from source/flights/detail/029727.json rename to source/flights/detail/029/029727.json diff --git a/source/flights/detail/029729.json b/source/flights/detail/029/029729.json similarity index 100% rename from source/flights/detail/029729.json rename to source/flights/detail/029/029729.json diff --git a/source/flights/detail/029730.json b/source/flights/detail/029/029730.json similarity index 100% rename from source/flights/detail/029730.json rename to source/flights/detail/029/029730.json diff --git a/source/flights/detail/029732.json b/source/flights/detail/029/029732.json similarity index 100% rename from source/flights/detail/029732.json rename to source/flights/detail/029/029732.json diff --git a/source/flights/detail/029733.json b/source/flights/detail/029/029733.json similarity index 100% rename from source/flights/detail/029733.json rename to source/flights/detail/029/029733.json diff --git a/source/flights/detail/029734.json b/source/flights/detail/029/029734.json similarity index 100% rename from source/flights/detail/029734.json rename to source/flights/detail/029/029734.json diff --git a/source/flights/detail/029738.json b/source/flights/detail/029/029738.json similarity index 100% rename from source/flights/detail/029738.json rename to source/flights/detail/029/029738.json diff --git a/source/flights/detail/029739.json b/source/flights/detail/029/029739.json similarity index 100% rename from source/flights/detail/029739.json rename to source/flights/detail/029/029739.json diff --git a/source/flights/detail/029743.json b/source/flights/detail/029/029743.json similarity index 100% rename from source/flights/detail/029743.json rename to source/flights/detail/029/029743.json diff --git a/source/flights/detail/029748.json b/source/flights/detail/029/029748.json similarity index 100% rename from source/flights/detail/029748.json rename to source/flights/detail/029/029748.json diff --git a/source/flights/detail/029749.json b/source/flights/detail/029/029749.json similarity index 100% rename from source/flights/detail/029749.json rename to source/flights/detail/029/029749.json diff --git a/source/flights/detail/029764.json b/source/flights/detail/029/029764.json similarity index 100% rename from source/flights/detail/029764.json rename to source/flights/detail/029/029764.json diff --git a/source/flights/detail/029797.json b/source/flights/detail/029/029797.json similarity index 100% rename from source/flights/detail/029797.json rename to source/flights/detail/029/029797.json diff --git a/source/flights/detail/029803.json b/source/flights/detail/029/029803.json similarity index 100% rename from source/flights/detail/029803.json rename to source/flights/detail/029/029803.json diff --git a/source/flights/detail/029806.json b/source/flights/detail/029/029806.json similarity index 100% rename from source/flights/detail/029806.json rename to source/flights/detail/029/029806.json diff --git a/source/flights/detail/029807.json b/source/flights/detail/029/029807.json similarity index 100% rename from source/flights/detail/029807.json rename to source/flights/detail/029/029807.json diff --git a/source/flights/detail/029808.json b/source/flights/detail/029/029808.json similarity index 100% rename from source/flights/detail/029808.json rename to source/flights/detail/029/029808.json diff --git a/source/flights/detail/029809.json b/source/flights/detail/029/029809.json similarity index 100% rename from source/flights/detail/029809.json rename to source/flights/detail/029/029809.json diff --git a/source/flights/detail/029810.json b/source/flights/detail/029/029810.json similarity index 100% rename from source/flights/detail/029810.json rename to source/flights/detail/029/029810.json diff --git a/source/flights/detail/029819.json b/source/flights/detail/029/029819.json similarity index 100% rename from source/flights/detail/029819.json rename to source/flights/detail/029/029819.json diff --git a/source/flights/detail/029820.json b/source/flights/detail/029/029820.json similarity index 100% rename from source/flights/detail/029820.json rename to source/flights/detail/029/029820.json diff --git a/source/flights/detail/029832.json b/source/flights/detail/029/029832.json similarity index 100% rename from source/flights/detail/029832.json rename to source/flights/detail/029/029832.json diff --git a/source/flights/detail/029834.json b/source/flights/detail/029/029834.json similarity index 100% rename from source/flights/detail/029834.json rename to source/flights/detail/029/029834.json diff --git a/source/flights/detail/029836.json b/source/flights/detail/029/029836.json similarity index 100% rename from source/flights/detail/029836.json rename to source/flights/detail/029/029836.json diff --git a/source/flights/detail/029846.json b/source/flights/detail/029/029846.json similarity index 100% rename from source/flights/detail/029846.json rename to source/flights/detail/029/029846.json diff --git a/source/flights/detail/029848.json b/source/flights/detail/029/029848.json similarity index 100% rename from source/flights/detail/029848.json rename to source/flights/detail/029/029848.json diff --git a/source/flights/detail/029857.json b/source/flights/detail/029/029857.json similarity index 100% rename from source/flights/detail/029857.json rename to source/flights/detail/029/029857.json diff --git a/source/flights/detail/029861.json b/source/flights/detail/029/029861.json similarity index 100% rename from source/flights/detail/029861.json rename to source/flights/detail/029/029861.json diff --git a/source/flights/detail/029865.json b/source/flights/detail/029/029865.json similarity index 100% rename from source/flights/detail/029865.json rename to source/flights/detail/029/029865.json diff --git a/source/flights/detail/029870.json b/source/flights/detail/029/029870.json similarity index 100% rename from source/flights/detail/029870.json rename to source/flights/detail/029/029870.json diff --git a/source/flights/detail/029879.json b/source/flights/detail/029/029879.json similarity index 100% rename from source/flights/detail/029879.json rename to source/flights/detail/029/029879.json diff --git a/source/flights/detail/029880.json b/source/flights/detail/029/029880.json similarity index 100% rename from source/flights/detail/029880.json rename to source/flights/detail/029/029880.json diff --git a/source/flights/detail/029881.json b/source/flights/detail/029/029881.json similarity index 100% rename from source/flights/detail/029881.json rename to source/flights/detail/029/029881.json diff --git a/source/flights/detail/029882.json b/source/flights/detail/029/029882.json similarity index 100% rename from source/flights/detail/029882.json rename to source/flights/detail/029/029882.json diff --git a/source/flights/detail/029883.json b/source/flights/detail/029/029883.json similarity index 100% rename from source/flights/detail/029883.json rename to source/flights/detail/029/029883.json diff --git a/source/flights/detail/029938.json b/source/flights/detail/029/029938.json similarity index 100% rename from source/flights/detail/029938.json rename to source/flights/detail/029/029938.json diff --git a/source/flights/detail/029939.json b/source/flights/detail/029/029939.json similarity index 100% rename from source/flights/detail/029939.json rename to source/flights/detail/029/029939.json diff --git a/source/flights/detail/029940.json b/source/flights/detail/029/029940.json similarity index 100% rename from source/flights/detail/029940.json rename to source/flights/detail/029/029940.json diff --git a/source/flights/detail/029941.json b/source/flights/detail/029/029941.json similarity index 100% rename from source/flights/detail/029941.json rename to source/flights/detail/029/029941.json diff --git a/source/flights/detail/029942.json b/source/flights/detail/029/029942.json similarity index 100% rename from source/flights/detail/029942.json rename to source/flights/detail/029/029942.json diff --git a/source/flights/detail/029943.json b/source/flights/detail/029/029943.json similarity index 100% rename from source/flights/detail/029943.json rename to source/flights/detail/029/029943.json diff --git a/source/flights/detail/029944.json b/source/flights/detail/029/029944.json similarity index 100% rename from source/flights/detail/029944.json rename to source/flights/detail/029/029944.json diff --git a/source/flights/detail/029945.json b/source/flights/detail/029/029945.json similarity index 100% rename from source/flights/detail/029945.json rename to source/flights/detail/029/029945.json diff --git a/source/flights/detail/029952.json b/source/flights/detail/029/029952.json similarity index 100% rename from source/flights/detail/029952.json rename to source/flights/detail/029/029952.json diff --git a/source/flights/detail/029968.json b/source/flights/detail/029/029968.json similarity index 100% rename from source/flights/detail/029968.json rename to source/flights/detail/029/029968.json diff --git a/source/flights/detail/029975.json b/source/flights/detail/029/029975.json similarity index 100% rename from source/flights/detail/029975.json rename to source/flights/detail/029/029975.json diff --git a/source/flights/detail/029976.json b/source/flights/detail/029/029976.json similarity index 100% rename from source/flights/detail/029976.json rename to source/flights/detail/029/029976.json diff --git a/source/flights/detail/029977.json b/source/flights/detail/029/029977.json similarity index 100% rename from source/flights/detail/029977.json rename to source/flights/detail/029/029977.json diff --git a/source/flights/detail/030100.json b/source/flights/detail/030/030100.json similarity index 100% rename from source/flights/detail/030100.json rename to source/flights/detail/030/030100.json diff --git a/source/flights/detail/030103.json b/source/flights/detail/030/030103.json similarity index 100% rename from source/flights/detail/030103.json rename to source/flights/detail/030/030103.json diff --git a/source/flights/detail/030113.json b/source/flights/detail/030/030113.json similarity index 100% rename from source/flights/detail/030113.json rename to source/flights/detail/030/030113.json diff --git a/source/flights/detail/030123.json b/source/flights/detail/030/030123.json similarity index 100% rename from source/flights/detail/030123.json rename to source/flights/detail/030/030123.json diff --git a/source/flights/detail/030124.json b/source/flights/detail/030/030124.json similarity index 100% rename from source/flights/detail/030124.json rename to source/flights/detail/030/030124.json diff --git a/source/flights/detail/030125.json b/source/flights/detail/030/030125.json similarity index 100% rename from source/flights/detail/030125.json rename to source/flights/detail/030/030125.json diff --git a/source/flights/detail/030132.json b/source/flights/detail/030/030132.json similarity index 100% rename from source/flights/detail/030132.json rename to source/flights/detail/030/030132.json diff --git a/source/flights/detail/030133.json b/source/flights/detail/030/030133.json similarity index 100% rename from source/flights/detail/030133.json rename to source/flights/detail/030/030133.json diff --git a/source/flights/detail/030134.json b/source/flights/detail/030/030134.json similarity index 100% rename from source/flights/detail/030134.json rename to source/flights/detail/030/030134.json diff --git a/source/flights/detail/030135.json b/source/flights/detail/030/030135.json similarity index 100% rename from source/flights/detail/030135.json rename to source/flights/detail/030/030135.json diff --git a/source/flights/detail/030136.json b/source/flights/detail/030/030136.json similarity index 100% rename from source/flights/detail/030136.json rename to source/flights/detail/030/030136.json diff --git a/source/flights/detail/030144.json b/source/flights/detail/030/030144.json similarity index 100% rename from source/flights/detail/030144.json rename to source/flights/detail/030/030144.json diff --git a/source/flights/detail/030149.json b/source/flights/detail/030/030149.json similarity index 100% rename from source/flights/detail/030149.json rename to source/flights/detail/030/030149.json diff --git a/source/flights/detail/030150.json b/source/flights/detail/030/030150.json similarity index 100% rename from source/flights/detail/030150.json rename to source/flights/detail/030/030150.json diff --git a/source/flights/detail/030153.json b/source/flights/detail/030/030153.json similarity index 100% rename from source/flights/detail/030153.json rename to source/flights/detail/030/030153.json diff --git a/source/flights/detail/030154.json b/source/flights/detail/030/030154.json similarity index 100% rename from source/flights/detail/030154.json rename to source/flights/detail/030/030154.json diff --git a/source/flights/detail/030155.json b/source/flights/detail/030/030155.json similarity index 100% rename from source/flights/detail/030155.json rename to source/flights/detail/030/030155.json diff --git a/source/flights/detail/030157.json b/source/flights/detail/030/030157.json similarity index 100% rename from source/flights/detail/030157.json rename to source/flights/detail/030/030157.json diff --git a/source/flights/detail/030158.json b/source/flights/detail/030/030158.json similarity index 100% rename from source/flights/detail/030158.json rename to source/flights/detail/030/030158.json diff --git a/source/flights/detail/030162.json b/source/flights/detail/030/030162.json similarity index 100% rename from source/flights/detail/030162.json rename to source/flights/detail/030/030162.json diff --git a/source/flights/detail/030163.json b/source/flights/detail/030/030163.json similarity index 100% rename from source/flights/detail/030163.json rename to source/flights/detail/030/030163.json diff --git a/source/flights/detail/030169.json b/source/flights/detail/030/030169.json similarity index 100% rename from source/flights/detail/030169.json rename to source/flights/detail/030/030169.json diff --git a/source/flights/detail/030171.json b/source/flights/detail/030/030171.json similarity index 100% rename from source/flights/detail/030171.json rename to source/flights/detail/030/030171.json diff --git a/source/flights/detail/030172.json b/source/flights/detail/030/030172.json similarity index 100% rename from source/flights/detail/030172.json rename to source/flights/detail/030/030172.json diff --git a/source/flights/detail/030173.json b/source/flights/detail/030/030173.json similarity index 100% rename from source/flights/detail/030173.json rename to source/flights/detail/030/030173.json diff --git a/source/flights/detail/030174.json b/source/flights/detail/030/030174.json similarity index 100% rename from source/flights/detail/030174.json rename to source/flights/detail/030/030174.json diff --git a/source/flights/detail/030175.json b/source/flights/detail/030/030175.json similarity index 100% rename from source/flights/detail/030175.json rename to source/flights/detail/030/030175.json diff --git a/source/flights/detail/030176.json b/source/flights/detail/030/030176.json similarity index 100% rename from source/flights/detail/030176.json rename to source/flights/detail/030/030176.json diff --git a/source/flights/detail/030189.json b/source/flights/detail/030/030189.json similarity index 100% rename from source/flights/detail/030189.json rename to source/flights/detail/030/030189.json diff --git a/source/flights/detail/030194.json b/source/flights/detail/030/030194.json similarity index 100% rename from source/flights/detail/030194.json rename to source/flights/detail/030/030194.json diff --git a/source/flights/detail/030208.json b/source/flights/detail/030/030208.json similarity index 100% rename from source/flights/detail/030208.json rename to source/flights/detail/030/030208.json diff --git a/source/flights/detail/030211.json b/source/flights/detail/030/030211.json similarity index 100% rename from source/flights/detail/030211.json rename to source/flights/detail/030/030211.json diff --git a/source/flights/detail/030214.json b/source/flights/detail/030/030214.json similarity index 100% rename from source/flights/detail/030214.json rename to source/flights/detail/030/030214.json diff --git a/source/flights/detail/030232.json b/source/flights/detail/030/030232.json similarity index 100% rename from source/flights/detail/030232.json rename to source/flights/detail/030/030232.json diff --git a/source/flights/detail/030237.json b/source/flights/detail/030/030237.json similarity index 100% rename from source/flights/detail/030237.json rename to source/flights/detail/030/030237.json diff --git a/source/flights/detail/030241.json b/source/flights/detail/030/030241.json similarity index 100% rename from source/flights/detail/030241.json rename to source/flights/detail/030/030241.json diff --git a/source/flights/detail/030245.json b/source/flights/detail/030/030245.json similarity index 100% rename from source/flights/detail/030245.json rename to source/flights/detail/030/030245.json diff --git a/source/flights/detail/030246.json b/source/flights/detail/030/030246.json similarity index 100% rename from source/flights/detail/030246.json rename to source/flights/detail/030/030246.json diff --git a/source/flights/detail/030247.json b/source/flights/detail/030/030247.json similarity index 100% rename from source/flights/detail/030247.json rename to source/flights/detail/030/030247.json diff --git a/source/flights/detail/030248.json b/source/flights/detail/030/030248.json similarity index 100% rename from source/flights/detail/030248.json rename to source/flights/detail/030/030248.json diff --git a/source/flights/detail/030264.json b/source/flights/detail/030/030264.json similarity index 100% rename from source/flights/detail/030264.json rename to source/flights/detail/030/030264.json diff --git a/source/flights/detail/030267.json b/source/flights/detail/030/030267.json similarity index 100% rename from source/flights/detail/030267.json rename to source/flights/detail/030/030267.json diff --git a/source/flights/detail/030286.json b/source/flights/detail/030/030286.json similarity index 100% rename from source/flights/detail/030286.json rename to source/flights/detail/030/030286.json diff --git a/source/flights/detail/030287.json b/source/flights/detail/030/030287.json similarity index 100% rename from source/flights/detail/030287.json rename to source/flights/detail/030/030287.json diff --git a/source/flights/detail/030310.json b/source/flights/detail/030/030310.json similarity index 100% rename from source/flights/detail/030310.json rename to source/flights/detail/030/030310.json diff --git a/source/flights/detail/030314.json b/source/flights/detail/030/030314.json similarity index 100% rename from source/flights/detail/030314.json rename to source/flights/detail/030/030314.json diff --git a/source/flights/detail/030315.json b/source/flights/detail/030/030315.json similarity index 100% rename from source/flights/detail/030315.json rename to source/flights/detail/030/030315.json diff --git a/source/flights/detail/030337.json b/source/flights/detail/030/030337.json similarity index 100% rename from source/flights/detail/030337.json rename to source/flights/detail/030/030337.json diff --git a/source/flights/detail/030350.json b/source/flights/detail/030/030350.json similarity index 100% rename from source/flights/detail/030350.json rename to source/flights/detail/030/030350.json diff --git a/source/flights/detail/030357.json b/source/flights/detail/030/030357.json similarity index 100% rename from source/flights/detail/030357.json rename to source/flights/detail/030/030357.json diff --git a/source/flights/detail/030362.json b/source/flights/detail/030/030362.json similarity index 100% rename from source/flights/detail/030362.json rename to source/flights/detail/030/030362.json diff --git a/source/flights/detail/030365.json b/source/flights/detail/030/030365.json similarity index 100% rename from source/flights/detail/030365.json rename to source/flights/detail/030/030365.json diff --git a/source/flights/detail/030374.json b/source/flights/detail/030/030374.json similarity index 100% rename from source/flights/detail/030374.json rename to source/flights/detail/030/030374.json diff --git a/source/flights/detail/030375.json b/source/flights/detail/030/030375.json similarity index 100% rename from source/flights/detail/030375.json rename to source/flights/detail/030/030375.json diff --git a/source/flights/detail/030377.json b/source/flights/detail/030/030377.json similarity index 100% rename from source/flights/detail/030377.json rename to source/flights/detail/030/030377.json diff --git a/source/flights/detail/030378.json b/source/flights/detail/030/030378.json similarity index 100% rename from source/flights/detail/030378.json rename to source/flights/detail/030/030378.json diff --git a/source/flights/detail/030379.json b/source/flights/detail/030/030379.json similarity index 100% rename from source/flights/detail/030379.json rename to source/flights/detail/030/030379.json diff --git a/source/flights/detail/030380.json b/source/flights/detail/030/030380.json similarity index 100% rename from source/flights/detail/030380.json rename to source/flights/detail/030/030380.json diff --git a/source/flights/detail/030381.json b/source/flights/detail/030/030381.json similarity index 100% rename from source/flights/detail/030381.json rename to source/flights/detail/030/030381.json diff --git a/source/flights/detail/030382.json b/source/flights/detail/030/030382.json similarity index 100% rename from source/flights/detail/030382.json rename to source/flights/detail/030/030382.json diff --git a/source/flights/detail/030383.json b/source/flights/detail/030/030383.json similarity index 100% rename from source/flights/detail/030383.json rename to source/flights/detail/030/030383.json diff --git a/source/flights/detail/030384.json b/source/flights/detail/030/030384.json similarity index 100% rename from source/flights/detail/030384.json rename to source/flights/detail/030/030384.json diff --git a/source/flights/detail/030385.json b/source/flights/detail/030/030385.json similarity index 100% rename from source/flights/detail/030385.json rename to source/flights/detail/030/030385.json diff --git a/source/flights/detail/030388.json b/source/flights/detail/030/030388.json similarity index 100% rename from source/flights/detail/030388.json rename to source/flights/detail/030/030388.json diff --git a/source/flights/detail/030389.json b/source/flights/detail/030/030389.json similarity index 100% rename from source/flights/detail/030389.json rename to source/flights/detail/030/030389.json diff --git a/source/flights/detail/030391.json b/source/flights/detail/030/030391.json similarity index 100% rename from source/flights/detail/030391.json rename to source/flights/detail/030/030391.json diff --git a/source/flights/detail/030392.json b/source/flights/detail/030/030392.json similarity index 100% rename from source/flights/detail/030392.json rename to source/flights/detail/030/030392.json diff --git a/source/flights/detail/030393.json b/source/flights/detail/030/030393.json similarity index 100% rename from source/flights/detail/030393.json rename to source/flights/detail/030/030393.json diff --git a/source/flights/detail/030394.json b/source/flights/detail/030/030394.json similarity index 100% rename from source/flights/detail/030394.json rename to source/flights/detail/030/030394.json diff --git a/source/flights/detail/030395.json b/source/flights/detail/030/030395.json similarity index 100% rename from source/flights/detail/030395.json rename to source/flights/detail/030/030395.json diff --git a/source/flights/detail/030396.json b/source/flights/detail/030/030396.json similarity index 100% rename from source/flights/detail/030396.json rename to source/flights/detail/030/030396.json diff --git a/source/flights/detail/030399.json b/source/flights/detail/030/030399.json similarity index 100% rename from source/flights/detail/030399.json rename to source/flights/detail/030/030399.json diff --git a/source/flights/detail/030400.json b/source/flights/detail/030/030400.json similarity index 100% rename from source/flights/detail/030400.json rename to source/flights/detail/030/030400.json diff --git a/source/flights/detail/030401.json b/source/flights/detail/030/030401.json similarity index 100% rename from source/flights/detail/030401.json rename to source/flights/detail/030/030401.json diff --git a/source/flights/detail/030402.json b/source/flights/detail/030/030402.json similarity index 100% rename from source/flights/detail/030402.json rename to source/flights/detail/030/030402.json diff --git a/source/flights/detail/030407.json b/source/flights/detail/030/030407.json similarity index 100% rename from source/flights/detail/030407.json rename to source/flights/detail/030/030407.json diff --git a/source/flights/detail/030412.json b/source/flights/detail/030/030412.json similarity index 100% rename from source/flights/detail/030412.json rename to source/flights/detail/030/030412.json diff --git a/source/flights/detail/030413.json b/source/flights/detail/030/030413.json similarity index 100% rename from source/flights/detail/030413.json rename to source/flights/detail/030/030413.json diff --git a/source/flights/detail/030414.json b/source/flights/detail/030/030414.json similarity index 100% rename from source/flights/detail/030414.json rename to source/flights/detail/030/030414.json diff --git a/source/flights/detail/030434.json b/source/flights/detail/030/030434.json similarity index 100% rename from source/flights/detail/030434.json rename to source/flights/detail/030/030434.json diff --git a/source/flights/detail/030436.json b/source/flights/detail/030/030436.json similarity index 100% rename from source/flights/detail/030436.json rename to source/flights/detail/030/030436.json diff --git a/source/flights/detail/030437.json b/source/flights/detail/030/030437.json similarity index 100% rename from source/flights/detail/030437.json rename to source/flights/detail/030/030437.json diff --git a/source/flights/detail/030439.json b/source/flights/detail/030/030439.json similarity index 100% rename from source/flights/detail/030439.json rename to source/flights/detail/030/030439.json diff --git a/source/flights/detail/030444.json b/source/flights/detail/030/030444.json similarity index 100% rename from source/flights/detail/030444.json rename to source/flights/detail/030/030444.json diff --git a/source/flights/detail/030446.json b/source/flights/detail/030/030446.json similarity index 100% rename from source/flights/detail/030446.json rename to source/flights/detail/030/030446.json diff --git a/source/flights/detail/030447.json b/source/flights/detail/030/030447.json similarity index 100% rename from source/flights/detail/030447.json rename to source/flights/detail/030/030447.json diff --git a/source/flights/detail/030448.json b/source/flights/detail/030/030448.json similarity index 100% rename from source/flights/detail/030448.json rename to source/flights/detail/030/030448.json diff --git a/source/flights/detail/030449.json b/source/flights/detail/030/030449.json similarity index 100% rename from source/flights/detail/030449.json rename to source/flights/detail/030/030449.json diff --git a/source/flights/detail/030450.json b/source/flights/detail/030/030450.json similarity index 100% rename from source/flights/detail/030450.json rename to source/flights/detail/030/030450.json diff --git a/source/flights/detail/030451.json b/source/flights/detail/030/030451.json similarity index 100% rename from source/flights/detail/030451.json rename to source/flights/detail/030/030451.json diff --git a/source/flights/detail/030452.json b/source/flights/detail/030/030452.json similarity index 100% rename from source/flights/detail/030452.json rename to source/flights/detail/030/030452.json diff --git a/source/flights/detail/030454.json b/source/flights/detail/030/030454.json similarity index 100% rename from source/flights/detail/030454.json rename to source/flights/detail/030/030454.json diff --git a/source/flights/detail/030455.json b/source/flights/detail/030/030455.json similarity index 100% rename from source/flights/detail/030455.json rename to source/flights/detail/030/030455.json diff --git a/source/flights/detail/030458.json b/source/flights/detail/030/030458.json similarity index 100% rename from source/flights/detail/030458.json rename to source/flights/detail/030/030458.json diff --git a/source/flights/detail/030466.json b/source/flights/detail/030/030466.json similarity index 100% rename from source/flights/detail/030466.json rename to source/flights/detail/030/030466.json diff --git a/source/flights/detail/030467.json b/source/flights/detail/030/030467.json similarity index 100% rename from source/flights/detail/030467.json rename to source/flights/detail/030/030467.json diff --git a/source/flights/detail/030468.json b/source/flights/detail/030/030468.json similarity index 100% rename from source/flights/detail/030468.json rename to source/flights/detail/030/030468.json diff --git a/source/flights/detail/030469.json b/source/flights/detail/030/030469.json similarity index 100% rename from source/flights/detail/030469.json rename to source/flights/detail/030/030469.json diff --git a/source/flights/detail/030497.json b/source/flights/detail/030/030497.json similarity index 100% rename from source/flights/detail/030497.json rename to source/flights/detail/030/030497.json diff --git a/source/flights/detail/030498.json b/source/flights/detail/030/030498.json similarity index 100% rename from source/flights/detail/030498.json rename to source/flights/detail/030/030498.json diff --git a/source/flights/detail/030500.json b/source/flights/detail/030/030500.json similarity index 100% rename from source/flights/detail/030500.json rename to source/flights/detail/030/030500.json diff --git a/source/flights/detail/030501.json b/source/flights/detail/030/030501.json similarity index 100% rename from source/flights/detail/030501.json rename to source/flights/detail/030/030501.json diff --git a/source/flights/detail/030503.json b/source/flights/detail/030/030503.json similarity index 100% rename from source/flights/detail/030503.json rename to source/flights/detail/030/030503.json diff --git a/source/flights/detail/030504.json b/source/flights/detail/030/030504.json similarity index 100% rename from source/flights/detail/030504.json rename to source/flights/detail/030/030504.json diff --git a/source/flights/detail/030505.json b/source/flights/detail/030/030505.json similarity index 100% rename from source/flights/detail/030505.json rename to source/flights/detail/030/030505.json diff --git a/source/flights/detail/030507.json b/source/flights/detail/030/030507.json similarity index 100% rename from source/flights/detail/030507.json rename to source/flights/detail/030/030507.json diff --git a/source/flights/detail/030510.json b/source/flights/detail/030/030510.json similarity index 100% rename from source/flights/detail/030510.json rename to source/flights/detail/030/030510.json diff --git a/source/flights/detail/030512.json b/source/flights/detail/030/030512.json similarity index 100% rename from source/flights/detail/030512.json rename to source/flights/detail/030/030512.json diff --git a/source/flights/detail/030515.json b/source/flights/detail/030/030515.json similarity index 100% rename from source/flights/detail/030515.json rename to source/flights/detail/030/030515.json diff --git a/source/flights/detail/030516.json b/source/flights/detail/030/030516.json similarity index 100% rename from source/flights/detail/030516.json rename to source/flights/detail/030/030516.json diff --git a/source/flights/detail/030517.json b/source/flights/detail/030/030517.json similarity index 100% rename from source/flights/detail/030517.json rename to source/flights/detail/030/030517.json diff --git a/source/flights/detail/030525.json b/source/flights/detail/030/030525.json similarity index 100% rename from source/flights/detail/030525.json rename to source/flights/detail/030/030525.json diff --git a/source/flights/detail/030526.json b/source/flights/detail/030/030526.json similarity index 100% rename from source/flights/detail/030526.json rename to source/flights/detail/030/030526.json diff --git a/source/flights/detail/030527.json b/source/flights/detail/030/030527.json similarity index 100% rename from source/flights/detail/030527.json rename to source/flights/detail/030/030527.json diff --git a/source/flights/detail/030529.json b/source/flights/detail/030/030529.json similarity index 100% rename from source/flights/detail/030529.json rename to source/flights/detail/030/030529.json diff --git a/source/flights/detail/030532.json b/source/flights/detail/030/030532.json similarity index 100% rename from source/flights/detail/030532.json rename to source/flights/detail/030/030532.json diff --git a/source/flights/detail/030539.json b/source/flights/detail/030/030539.json similarity index 100% rename from source/flights/detail/030539.json rename to source/flights/detail/030/030539.json diff --git a/source/flights/detail/030546.json b/source/flights/detail/030/030546.json similarity index 100% rename from source/flights/detail/030546.json rename to source/flights/detail/030/030546.json diff --git a/source/flights/detail/030552.json b/source/flights/detail/030/030552.json similarity index 100% rename from source/flights/detail/030552.json rename to source/flights/detail/030/030552.json diff --git a/source/flights/detail/030566.json b/source/flights/detail/030/030566.json similarity index 100% rename from source/flights/detail/030566.json rename to source/flights/detail/030/030566.json diff --git a/source/flights/detail/030568.json b/source/flights/detail/030/030568.json similarity index 100% rename from source/flights/detail/030568.json rename to source/flights/detail/030/030568.json diff --git a/source/flights/detail/030588.json b/source/flights/detail/030/030588.json similarity index 100% rename from source/flights/detail/030588.json rename to source/flights/detail/030/030588.json diff --git a/source/flights/detail/030589.json b/source/flights/detail/030/030589.json similarity index 100% rename from source/flights/detail/030589.json rename to source/flights/detail/030/030589.json diff --git a/source/flights/detail/030590.json b/source/flights/detail/030/030590.json similarity index 100% rename from source/flights/detail/030590.json rename to source/flights/detail/030/030590.json diff --git a/source/flights/detail/030596.json b/source/flights/detail/030/030596.json similarity index 100% rename from source/flights/detail/030596.json rename to source/flights/detail/030/030596.json diff --git a/source/flights/detail/030597.json b/source/flights/detail/030/030597.json similarity index 100% rename from source/flights/detail/030597.json rename to source/flights/detail/030/030597.json diff --git a/source/flights/detail/030601.json b/source/flights/detail/030/030601.json similarity index 100% rename from source/flights/detail/030601.json rename to source/flights/detail/030/030601.json diff --git a/source/flights/detail/030604.json b/source/flights/detail/030/030604.json similarity index 100% rename from source/flights/detail/030604.json rename to source/flights/detail/030/030604.json diff --git a/source/flights/detail/030607.json b/source/flights/detail/030/030607.json similarity index 100% rename from source/flights/detail/030607.json rename to source/flights/detail/030/030607.json diff --git a/source/flights/detail/030615.json b/source/flights/detail/030/030615.json similarity index 100% rename from source/flights/detail/030615.json rename to source/flights/detail/030/030615.json diff --git a/source/flights/detail/030623.json b/source/flights/detail/030/030623.json similarity index 100% rename from source/flights/detail/030623.json rename to source/flights/detail/030/030623.json diff --git a/source/flights/detail/030624.json b/source/flights/detail/030/030624.json similarity index 100% rename from source/flights/detail/030624.json rename to source/flights/detail/030/030624.json diff --git a/source/flights/detail/030635.json b/source/flights/detail/030/030635.json similarity index 100% rename from source/flights/detail/030635.json rename to source/flights/detail/030/030635.json diff --git a/source/flights/detail/030636.json b/source/flights/detail/030/030636.json similarity index 100% rename from source/flights/detail/030636.json rename to source/flights/detail/030/030636.json diff --git a/source/flights/detail/030637.json b/source/flights/detail/030/030637.json similarity index 100% rename from source/flights/detail/030637.json rename to source/flights/detail/030/030637.json diff --git a/source/flights/detail/030638.json b/source/flights/detail/030/030638.json similarity index 100% rename from source/flights/detail/030638.json rename to source/flights/detail/030/030638.json diff --git a/source/flights/detail/030639.json b/source/flights/detail/030/030639.json similarity index 100% rename from source/flights/detail/030639.json rename to source/flights/detail/030/030639.json diff --git a/source/flights/detail/030644.json b/source/flights/detail/030/030644.json similarity index 100% rename from source/flights/detail/030644.json rename to source/flights/detail/030/030644.json diff --git a/source/flights/detail/030645.json b/source/flights/detail/030/030645.json similarity index 100% rename from source/flights/detail/030645.json rename to source/flights/detail/030/030645.json diff --git a/source/flights/detail/030648.json b/source/flights/detail/030/030648.json similarity index 100% rename from source/flights/detail/030648.json rename to source/flights/detail/030/030648.json diff --git a/source/flights/detail/030651.json b/source/flights/detail/030/030651.json similarity index 100% rename from source/flights/detail/030651.json rename to source/flights/detail/030/030651.json diff --git a/source/flights/detail/030657.json b/source/flights/detail/030/030657.json similarity index 100% rename from source/flights/detail/030657.json rename to source/flights/detail/030/030657.json diff --git a/source/flights/detail/030659.json b/source/flights/detail/030/030659.json similarity index 100% rename from source/flights/detail/030659.json rename to source/flights/detail/030/030659.json diff --git a/source/flights/detail/030660.json b/source/flights/detail/030/030660.json similarity index 100% rename from source/flights/detail/030660.json rename to source/flights/detail/030/030660.json diff --git a/source/flights/detail/030664.json b/source/flights/detail/030/030664.json similarity index 100% rename from source/flights/detail/030664.json rename to source/flights/detail/030/030664.json diff --git a/source/flights/detail/030686.json b/source/flights/detail/030/030686.json similarity index 100% rename from source/flights/detail/030686.json rename to source/flights/detail/030/030686.json diff --git a/source/flights/detail/030687.json b/source/flights/detail/030/030687.json similarity index 100% rename from source/flights/detail/030687.json rename to source/flights/detail/030/030687.json diff --git a/source/flights/detail/030688.json b/source/flights/detail/030/030688.json similarity index 100% rename from source/flights/detail/030688.json rename to source/flights/detail/030/030688.json diff --git a/source/flights/detail/030692.json b/source/flights/detail/030/030692.json similarity index 100% rename from source/flights/detail/030692.json rename to source/flights/detail/030/030692.json diff --git a/source/flights/detail/030696.json b/source/flights/detail/030/030696.json similarity index 100% rename from source/flights/detail/030696.json rename to source/flights/detail/030/030696.json diff --git a/source/flights/detail/030700.json b/source/flights/detail/030/030700.json similarity index 100% rename from source/flights/detail/030700.json rename to source/flights/detail/030/030700.json diff --git a/source/flights/detail/030720.json b/source/flights/detail/030/030720.json similarity index 100% rename from source/flights/detail/030720.json rename to source/flights/detail/030/030720.json diff --git a/source/flights/detail/030721.json b/source/flights/detail/030/030721.json similarity index 100% rename from source/flights/detail/030721.json rename to source/flights/detail/030/030721.json diff --git a/source/flights/detail/030731.json b/source/flights/detail/030/030731.json similarity index 100% rename from source/flights/detail/030731.json rename to source/flights/detail/030/030731.json diff --git a/source/flights/detail/030732.json b/source/flights/detail/030/030732.json similarity index 100% rename from source/flights/detail/030732.json rename to source/flights/detail/030/030732.json diff --git a/source/flights/detail/030735.json b/source/flights/detail/030/030735.json similarity index 100% rename from source/flights/detail/030735.json rename to source/flights/detail/030/030735.json diff --git a/source/flights/detail/030736.json b/source/flights/detail/030/030736.json similarity index 100% rename from source/flights/detail/030736.json rename to source/flights/detail/030/030736.json diff --git a/source/flights/detail/030737.json b/source/flights/detail/030/030737.json similarity index 100% rename from source/flights/detail/030737.json rename to source/flights/detail/030/030737.json diff --git a/source/flights/detail/030738.json b/source/flights/detail/030/030738.json similarity index 100% rename from source/flights/detail/030738.json rename to source/flights/detail/030/030738.json diff --git a/source/flights/detail/030740.json b/source/flights/detail/030/030740.json similarity index 100% rename from source/flights/detail/030740.json rename to source/flights/detail/030/030740.json diff --git a/source/flights/detail/030741.json b/source/flights/detail/030/030741.json similarity index 100% rename from source/flights/detail/030741.json rename to source/flights/detail/030/030741.json diff --git a/source/flights/detail/030742.json b/source/flights/detail/030/030742.json similarity index 100% rename from source/flights/detail/030742.json rename to source/flights/detail/030/030742.json diff --git a/source/flights/detail/030748.json b/source/flights/detail/030/030748.json similarity index 100% rename from source/flights/detail/030748.json rename to source/flights/detail/030/030748.json diff --git a/source/flights/detail/030749.json b/source/flights/detail/030/030749.json similarity index 100% rename from source/flights/detail/030749.json rename to source/flights/detail/030/030749.json diff --git a/source/flights/detail/030758.json b/source/flights/detail/030/030758.json similarity index 100% rename from source/flights/detail/030758.json rename to source/flights/detail/030/030758.json diff --git a/source/flights/detail/030773.json b/source/flights/detail/030/030773.json similarity index 100% rename from source/flights/detail/030773.json rename to source/flights/detail/030/030773.json diff --git a/source/flights/detail/030789.json b/source/flights/detail/030/030789.json similarity index 100% rename from source/flights/detail/030789.json rename to source/flights/detail/030/030789.json diff --git a/source/flights/detail/030790.json b/source/flights/detail/030/030790.json similarity index 100% rename from source/flights/detail/030790.json rename to source/flights/detail/030/030790.json diff --git a/source/flights/detail/030791.json b/source/flights/detail/030/030791.json similarity index 100% rename from source/flights/detail/030791.json rename to source/flights/detail/030/030791.json diff --git a/source/flights/detail/030792.json b/source/flights/detail/030/030792.json similarity index 100% rename from source/flights/detail/030792.json rename to source/flights/detail/030/030792.json diff --git a/source/flights/detail/030793.json b/source/flights/detail/030/030793.json similarity index 100% rename from source/flights/detail/030793.json rename to source/flights/detail/030/030793.json diff --git a/source/flights/detail/030797.json b/source/flights/detail/030/030797.json similarity index 100% rename from source/flights/detail/030797.json rename to source/flights/detail/030/030797.json diff --git a/source/flights/detail/030799.json b/source/flights/detail/030/030799.json similarity index 100% rename from source/flights/detail/030799.json rename to source/flights/detail/030/030799.json diff --git a/source/flights/detail/030800.json b/source/flights/detail/030/030800.json similarity index 100% rename from source/flights/detail/030800.json rename to source/flights/detail/030/030800.json diff --git a/source/flights/detail/030818.json b/source/flights/detail/030/030818.json similarity index 100% rename from source/flights/detail/030818.json rename to source/flights/detail/030/030818.json diff --git a/source/flights/detail/030826.json b/source/flights/detail/030/030826.json similarity index 100% rename from source/flights/detail/030826.json rename to source/flights/detail/030/030826.json diff --git a/source/flights/detail/030828.json b/source/flights/detail/030/030828.json similarity index 100% rename from source/flights/detail/030828.json rename to source/flights/detail/030/030828.json diff --git a/source/flights/detail/030829.json b/source/flights/detail/030/030829.json similarity index 100% rename from source/flights/detail/030829.json rename to source/flights/detail/030/030829.json diff --git a/source/flights/detail/030831.json b/source/flights/detail/030/030831.json similarity index 100% rename from source/flights/detail/030831.json rename to source/flights/detail/030/030831.json diff --git a/source/flights/detail/030832.json b/source/flights/detail/030/030832.json similarity index 100% rename from source/flights/detail/030832.json rename to source/flights/detail/030/030832.json diff --git a/source/flights/detail/030845.json b/source/flights/detail/030/030845.json similarity index 100% rename from source/flights/detail/030845.json rename to source/flights/detail/030/030845.json diff --git a/source/flights/detail/030846.json b/source/flights/detail/030/030846.json similarity index 100% rename from source/flights/detail/030846.json rename to source/flights/detail/030/030846.json diff --git a/source/flights/detail/030852.json b/source/flights/detail/030/030852.json similarity index 100% rename from source/flights/detail/030852.json rename to source/flights/detail/030/030852.json diff --git a/source/flights/detail/030854.json b/source/flights/detail/030/030854.json similarity index 100% rename from source/flights/detail/030854.json rename to source/flights/detail/030/030854.json diff --git a/source/flights/detail/030859.json b/source/flights/detail/030/030859.json similarity index 100% rename from source/flights/detail/030859.json rename to source/flights/detail/030/030859.json diff --git a/source/flights/detail/030862.json b/source/flights/detail/030/030862.json similarity index 100% rename from source/flights/detail/030862.json rename to source/flights/detail/030/030862.json diff --git a/source/flights/detail/030870.json b/source/flights/detail/030/030870.json similarity index 100% rename from source/flights/detail/030870.json rename to source/flights/detail/030/030870.json diff --git a/source/flights/detail/030871.json b/source/flights/detail/030/030871.json similarity index 100% rename from source/flights/detail/030871.json rename to source/flights/detail/030/030871.json diff --git a/source/flights/detail/030872.json b/source/flights/detail/030/030872.json similarity index 100% rename from source/flights/detail/030872.json rename to source/flights/detail/030/030872.json diff --git a/source/flights/detail/030873.json b/source/flights/detail/030/030873.json similarity index 100% rename from source/flights/detail/030873.json rename to source/flights/detail/030/030873.json diff --git a/source/flights/detail/030879.json b/source/flights/detail/030/030879.json similarity index 100% rename from source/flights/detail/030879.json rename to source/flights/detail/030/030879.json diff --git a/source/flights/detail/030915.json b/source/flights/detail/030/030915.json similarity index 100% rename from source/flights/detail/030915.json rename to source/flights/detail/030/030915.json diff --git a/source/flights/detail/030925.json b/source/flights/detail/030/030925.json similarity index 100% rename from source/flights/detail/030925.json rename to source/flights/detail/030/030925.json diff --git a/source/flights/detail/030936.json b/source/flights/detail/030/030936.json similarity index 100% rename from source/flights/detail/030936.json rename to source/flights/detail/030/030936.json diff --git a/source/flights/detail/030937.json b/source/flights/detail/030/030937.json similarity index 100% rename from source/flights/detail/030937.json rename to source/flights/detail/030/030937.json diff --git a/source/flights/detail/030938.json b/source/flights/detail/030/030938.json similarity index 100% rename from source/flights/detail/030938.json rename to source/flights/detail/030/030938.json diff --git a/source/flights/detail/030940.json b/source/flights/detail/030/030940.json similarity index 100% rename from source/flights/detail/030940.json rename to source/flights/detail/030/030940.json diff --git a/source/flights/detail/030942.json b/source/flights/detail/030/030942.json similarity index 100% rename from source/flights/detail/030942.json rename to source/flights/detail/030/030942.json diff --git a/source/flights/detail/030943.json b/source/flights/detail/030/030943.json similarity index 100% rename from source/flights/detail/030943.json rename to source/flights/detail/030/030943.json diff --git a/source/flights/detail/030945.json b/source/flights/detail/030/030945.json similarity index 100% rename from source/flights/detail/030945.json rename to source/flights/detail/030/030945.json diff --git a/source/flights/detail/030946.json b/source/flights/detail/030/030946.json similarity index 100% rename from source/flights/detail/030946.json rename to source/flights/detail/030/030946.json diff --git a/source/flights/detail/030947.json b/source/flights/detail/030/030947.json similarity index 100% rename from source/flights/detail/030947.json rename to source/flights/detail/030/030947.json diff --git a/source/flights/detail/030951.json b/source/flights/detail/030/030951.json similarity index 100% rename from source/flights/detail/030951.json rename to source/flights/detail/030/030951.json diff --git a/source/flights/detail/030953.json b/source/flights/detail/030/030953.json similarity index 100% rename from source/flights/detail/030953.json rename to source/flights/detail/030/030953.json diff --git a/source/flights/detail/030957.json b/source/flights/detail/030/030957.json similarity index 100% rename from source/flights/detail/030957.json rename to source/flights/detail/030/030957.json diff --git a/source/flights/detail/030961.json b/source/flights/detail/030/030961.json similarity index 100% rename from source/flights/detail/030961.json rename to source/flights/detail/030/030961.json diff --git a/source/flights/detail/030962.json b/source/flights/detail/030/030962.json similarity index 100% rename from source/flights/detail/030962.json rename to source/flights/detail/030/030962.json diff --git a/source/flights/detail/030973.json b/source/flights/detail/030/030973.json similarity index 100% rename from source/flights/detail/030973.json rename to source/flights/detail/030/030973.json diff --git a/source/flights/detail/030985.json b/source/flights/detail/030/030985.json similarity index 100% rename from source/flights/detail/030985.json rename to source/flights/detail/030/030985.json diff --git a/source/flights/detail/030996.json b/source/flights/detail/030/030996.json similarity index 100% rename from source/flights/detail/030996.json rename to source/flights/detail/030/030996.json diff --git a/source/flights/detail/031061.json b/source/flights/detail/031/031061.json similarity index 100% rename from source/flights/detail/031061.json rename to source/flights/detail/031/031061.json diff --git a/source/flights/detail/031065.json b/source/flights/detail/031/031065.json similarity index 100% rename from source/flights/detail/031065.json rename to source/flights/detail/031/031065.json diff --git a/source/flights/detail/031067.json b/source/flights/detail/031/031067.json similarity index 100% rename from source/flights/detail/031067.json rename to source/flights/detail/031/031067.json diff --git a/source/flights/detail/031068.json b/source/flights/detail/031/031068.json similarity index 100% rename from source/flights/detail/031068.json rename to source/flights/detail/031/031068.json diff --git a/source/flights/detail/031070.json b/source/flights/detail/031/031070.json similarity index 100% rename from source/flights/detail/031070.json rename to source/flights/detail/031/031070.json diff --git a/source/flights/detail/031080.json b/source/flights/detail/031/031080.json similarity index 100% rename from source/flights/detail/031080.json rename to source/flights/detail/031/031080.json diff --git a/source/flights/detail/031081.json b/source/flights/detail/031/031081.json similarity index 100% rename from source/flights/detail/031081.json rename to source/flights/detail/031/031081.json diff --git a/source/flights/detail/031082.json b/source/flights/detail/031/031082.json similarity index 100% rename from source/flights/detail/031082.json rename to source/flights/detail/031/031082.json diff --git a/source/flights/detail/031083.json b/source/flights/detail/031/031083.json similarity index 100% rename from source/flights/detail/031083.json rename to source/flights/detail/031/031083.json diff --git a/source/flights/detail/031084.json b/source/flights/detail/031/031084.json similarity index 100% rename from source/flights/detail/031084.json rename to source/flights/detail/031/031084.json diff --git a/source/flights/detail/031085.json b/source/flights/detail/031/031085.json similarity index 100% rename from source/flights/detail/031085.json rename to source/flights/detail/031/031085.json diff --git a/source/flights/detail/031086.json b/source/flights/detail/031/031086.json similarity index 100% rename from source/flights/detail/031086.json rename to source/flights/detail/031/031086.json diff --git a/source/flights/detail/031087.json b/source/flights/detail/031/031087.json similarity index 100% rename from source/flights/detail/031087.json rename to source/flights/detail/031/031087.json diff --git a/source/flights/detail/031089.json b/source/flights/detail/031/031089.json similarity index 100% rename from source/flights/detail/031089.json rename to source/flights/detail/031/031089.json diff --git a/source/flights/detail/031107.json b/source/flights/detail/031/031107.json similarity index 100% rename from source/flights/detail/031107.json rename to source/flights/detail/031/031107.json diff --git a/source/flights/detail/031108.json b/source/flights/detail/031/031108.json similarity index 100% rename from source/flights/detail/031108.json rename to source/flights/detail/031/031108.json diff --git a/source/flights/detail/031110.json b/source/flights/detail/031/031110.json similarity index 100% rename from source/flights/detail/031110.json rename to source/flights/detail/031/031110.json diff --git a/source/flights/detail/031111.json b/source/flights/detail/031/031111.json similarity index 100% rename from source/flights/detail/031111.json rename to source/flights/detail/031/031111.json diff --git a/source/flights/detail/031113.json b/source/flights/detail/031/031113.json similarity index 100% rename from source/flights/detail/031113.json rename to source/flights/detail/031/031113.json diff --git a/source/flights/detail/031116.json b/source/flights/detail/031/031116.json similarity index 100% rename from source/flights/detail/031116.json rename to source/flights/detail/031/031116.json diff --git a/source/flights/detail/031118.json b/source/flights/detail/031/031118.json similarity index 100% rename from source/flights/detail/031118.json rename to source/flights/detail/031/031118.json diff --git a/source/flights/detail/031124.json b/source/flights/detail/031/031124.json similarity index 100% rename from source/flights/detail/031124.json rename to source/flights/detail/031/031124.json diff --git a/source/flights/detail/031125.json b/source/flights/detail/031/031125.json similarity index 100% rename from source/flights/detail/031125.json rename to source/flights/detail/031/031125.json diff --git a/source/flights/detail/031152.json b/source/flights/detail/031/031152.json similarity index 100% rename from source/flights/detail/031152.json rename to source/flights/detail/031/031152.json diff --git a/source/flights/detail/031153.json b/source/flights/detail/031/031153.json similarity index 100% rename from source/flights/detail/031153.json rename to source/flights/detail/031/031153.json diff --git a/source/flights/detail/031155.json b/source/flights/detail/031/031155.json similarity index 100% rename from source/flights/detail/031155.json rename to source/flights/detail/031/031155.json diff --git a/source/flights/detail/031156.json b/source/flights/detail/031/031156.json similarity index 100% rename from source/flights/detail/031156.json rename to source/flights/detail/031/031156.json diff --git a/source/flights/detail/031157.json b/source/flights/detail/031/031157.json similarity index 100% rename from source/flights/detail/031157.json rename to source/flights/detail/031/031157.json diff --git a/source/flights/detail/031158.json b/source/flights/detail/031/031158.json similarity index 100% rename from source/flights/detail/031158.json rename to source/flights/detail/031/031158.json diff --git a/source/flights/detail/031162.json b/source/flights/detail/031/031162.json similarity index 100% rename from source/flights/detail/031162.json rename to source/flights/detail/031/031162.json diff --git a/source/flights/detail/031163.json b/source/flights/detail/031/031163.json similarity index 100% rename from source/flights/detail/031163.json rename to source/flights/detail/031/031163.json diff --git a/source/flights/detail/031164.json b/source/flights/detail/031/031164.json similarity index 100% rename from source/flights/detail/031164.json rename to source/flights/detail/031/031164.json diff --git a/source/flights/detail/031165.json b/source/flights/detail/031/031165.json similarity index 100% rename from source/flights/detail/031165.json rename to source/flights/detail/031/031165.json diff --git a/source/flights/detail/031166.json b/source/flights/detail/031/031166.json similarity index 100% rename from source/flights/detail/031166.json rename to source/flights/detail/031/031166.json diff --git a/source/flights/detail/031167.json b/source/flights/detail/031/031167.json similarity index 100% rename from source/flights/detail/031167.json rename to source/flights/detail/031/031167.json diff --git a/source/flights/detail/031173.json b/source/flights/detail/031/031173.json similarity index 100% rename from source/flights/detail/031173.json rename to source/flights/detail/031/031173.json diff --git a/source/flights/detail/031174.json b/source/flights/detail/031/031174.json similarity index 100% rename from source/flights/detail/031174.json rename to source/flights/detail/031/031174.json diff --git a/source/flights/detail/031175.json b/source/flights/detail/031/031175.json similarity index 100% rename from source/flights/detail/031175.json rename to source/flights/detail/031/031175.json diff --git a/source/flights/detail/031177.json b/source/flights/detail/031/031177.json similarity index 100% rename from source/flights/detail/031177.json rename to source/flights/detail/031/031177.json diff --git a/source/flights/detail/031200.json b/source/flights/detail/031/031200.json similarity index 100% rename from source/flights/detail/031200.json rename to source/flights/detail/031/031200.json diff --git a/source/flights/detail/031203.json b/source/flights/detail/031/031203.json similarity index 100% rename from source/flights/detail/031203.json rename to source/flights/detail/031/031203.json diff --git a/source/flights/detail/031210.json b/source/flights/detail/031/031210.json similarity index 100% rename from source/flights/detail/031210.json rename to source/flights/detail/031/031210.json diff --git a/source/flights/detail/031212.json b/source/flights/detail/031/031212.json similarity index 100% rename from source/flights/detail/031212.json rename to source/flights/detail/031/031212.json diff --git a/source/flights/detail/031229.json b/source/flights/detail/031/031229.json similarity index 100% rename from source/flights/detail/031229.json rename to source/flights/detail/031/031229.json diff --git a/source/flights/detail/031233.json b/source/flights/detail/031/031233.json similarity index 100% rename from source/flights/detail/031233.json rename to source/flights/detail/031/031233.json diff --git a/source/flights/detail/031235.json b/source/flights/detail/031/031235.json similarity index 100% rename from source/flights/detail/031235.json rename to source/flights/detail/031/031235.json diff --git a/source/flights/detail/031236.json b/source/flights/detail/031/031236.json similarity index 100% rename from source/flights/detail/031236.json rename to source/flights/detail/031/031236.json diff --git a/source/flights/detail/031238.json b/source/flights/detail/031/031238.json similarity index 100% rename from source/flights/detail/031238.json rename to source/flights/detail/031/031238.json diff --git a/source/flights/detail/031240.json b/source/flights/detail/031/031240.json similarity index 100% rename from source/flights/detail/031240.json rename to source/flights/detail/031/031240.json diff --git a/source/flights/detail/031241.json b/source/flights/detail/031/031241.json similarity index 100% rename from source/flights/detail/031241.json rename to source/flights/detail/031/031241.json diff --git a/source/flights/detail/031246.json b/source/flights/detail/031/031246.json similarity index 100% rename from source/flights/detail/031246.json rename to source/flights/detail/031/031246.json diff --git a/source/flights/detail/031253.json b/source/flights/detail/031/031253.json similarity index 100% rename from source/flights/detail/031253.json rename to source/flights/detail/031/031253.json diff --git a/source/flights/detail/031254.json b/source/flights/detail/031/031254.json similarity index 100% rename from source/flights/detail/031254.json rename to source/flights/detail/031/031254.json diff --git a/source/flights/detail/031256.json b/source/flights/detail/031/031256.json similarity index 100% rename from source/flights/detail/031256.json rename to source/flights/detail/031/031256.json diff --git a/source/flights/detail/031258.json b/source/flights/detail/031/031258.json similarity index 100% rename from source/flights/detail/031258.json rename to source/flights/detail/031/031258.json diff --git a/source/flights/detail/031261.json b/source/flights/detail/031/031261.json similarity index 100% rename from source/flights/detail/031261.json rename to source/flights/detail/031/031261.json diff --git a/source/flights/detail/031262.json b/source/flights/detail/031/031262.json similarity index 100% rename from source/flights/detail/031262.json rename to source/flights/detail/031/031262.json diff --git a/source/flights/detail/031263.json b/source/flights/detail/031/031263.json similarity index 100% rename from source/flights/detail/031263.json rename to source/flights/detail/031/031263.json diff --git a/source/flights/detail/031267.json b/source/flights/detail/031/031267.json similarity index 100% rename from source/flights/detail/031267.json rename to source/flights/detail/031/031267.json diff --git a/source/flights/detail/031268.json b/source/flights/detail/031/031268.json similarity index 100% rename from source/flights/detail/031268.json rename to source/flights/detail/031/031268.json diff --git a/source/flights/detail/031271.json b/source/flights/detail/031/031271.json similarity index 100% rename from source/flights/detail/031271.json rename to source/flights/detail/031/031271.json diff --git a/source/flights/detail/031272.json b/source/flights/detail/031/031272.json similarity index 100% rename from source/flights/detail/031272.json rename to source/flights/detail/031/031272.json diff --git a/source/flights/detail/031273.json b/source/flights/detail/031/031273.json similarity index 100% rename from source/flights/detail/031273.json rename to source/flights/detail/031/031273.json diff --git a/source/flights/detail/031274.json b/source/flights/detail/031/031274.json similarity index 100% rename from source/flights/detail/031274.json rename to source/flights/detail/031/031274.json diff --git a/source/flights/detail/031275.json b/source/flights/detail/031/031275.json similarity index 100% rename from source/flights/detail/031275.json rename to source/flights/detail/031/031275.json diff --git a/source/flights/detail/031284.json b/source/flights/detail/031/031284.json similarity index 100% rename from source/flights/detail/031284.json rename to source/flights/detail/031/031284.json diff --git a/source/flights/detail/031297.json b/source/flights/detail/031/031297.json similarity index 100% rename from source/flights/detail/031297.json rename to source/flights/detail/031/031297.json diff --git a/source/flights/detail/031302.json b/source/flights/detail/031/031302.json similarity index 100% rename from source/flights/detail/031302.json rename to source/flights/detail/031/031302.json diff --git a/source/flights/detail/031303.json b/source/flights/detail/031/031303.json similarity index 100% rename from source/flights/detail/031303.json rename to source/flights/detail/031/031303.json diff --git a/source/flights/detail/031304.json b/source/flights/detail/031/031304.json similarity index 100% rename from source/flights/detail/031304.json rename to source/flights/detail/031/031304.json diff --git a/source/flights/detail/031328.json b/source/flights/detail/031/031328.json similarity index 100% rename from source/flights/detail/031328.json rename to source/flights/detail/031/031328.json diff --git a/source/flights/detail/031329.json b/source/flights/detail/031/031329.json similarity index 100% rename from source/flights/detail/031329.json rename to source/flights/detail/031/031329.json diff --git a/source/flights/detail/031331.json b/source/flights/detail/031/031331.json similarity index 100% rename from source/flights/detail/031331.json rename to source/flights/detail/031/031331.json diff --git a/source/flights/detail/031332.json b/source/flights/detail/031/031332.json similarity index 100% rename from source/flights/detail/031332.json rename to source/flights/detail/031/031332.json diff --git a/source/flights/detail/031333.json b/source/flights/detail/031/031333.json similarity index 100% rename from source/flights/detail/031333.json rename to source/flights/detail/031/031333.json diff --git a/source/flights/detail/031341.json b/source/flights/detail/031/031341.json similarity index 100% rename from source/flights/detail/031341.json rename to source/flights/detail/031/031341.json diff --git a/source/flights/detail/031342.json b/source/flights/detail/031/031342.json similarity index 100% rename from source/flights/detail/031342.json rename to source/flights/detail/031/031342.json diff --git a/source/flights/detail/031343.json b/source/flights/detail/031/031343.json similarity index 100% rename from source/flights/detail/031343.json rename to source/flights/detail/031/031343.json diff --git a/source/flights/detail/031344.json b/source/flights/detail/031/031344.json similarity index 100% rename from source/flights/detail/031344.json rename to source/flights/detail/031/031344.json diff --git a/source/flights/detail/031345.json b/source/flights/detail/031/031345.json similarity index 100% rename from source/flights/detail/031345.json rename to source/flights/detail/031/031345.json diff --git a/source/flights/detail/031348.json b/source/flights/detail/031/031348.json similarity index 100% rename from source/flights/detail/031348.json rename to source/flights/detail/031/031348.json diff --git a/source/flights/detail/031409.json b/source/flights/detail/031/031409.json similarity index 100% rename from source/flights/detail/031409.json rename to source/flights/detail/031/031409.json diff --git a/source/flights/detail/031418.json b/source/flights/detail/031/031418.json similarity index 100% rename from source/flights/detail/031418.json rename to source/flights/detail/031/031418.json diff --git a/source/flights/detail/031419.json b/source/flights/detail/031/031419.json similarity index 100% rename from source/flights/detail/031419.json rename to source/flights/detail/031/031419.json diff --git a/source/flights/detail/031422.json b/source/flights/detail/031/031422.json similarity index 100% rename from source/flights/detail/031422.json rename to source/flights/detail/031/031422.json diff --git a/source/flights/detail/031428.json b/source/flights/detail/031/031428.json similarity index 100% rename from source/flights/detail/031428.json rename to source/flights/detail/031/031428.json diff --git a/source/flights/detail/031442.json b/source/flights/detail/031/031442.json similarity index 100% rename from source/flights/detail/031442.json rename to source/flights/detail/031/031442.json diff --git a/source/flights/detail/031448.json b/source/flights/detail/031/031448.json similarity index 100% rename from source/flights/detail/031448.json rename to source/flights/detail/031/031448.json diff --git a/source/flights/detail/031454.json b/source/flights/detail/031/031454.json similarity index 100% rename from source/flights/detail/031454.json rename to source/flights/detail/031/031454.json diff --git a/source/flights/detail/031491.json b/source/flights/detail/031/031491.json similarity index 100% rename from source/flights/detail/031491.json rename to source/flights/detail/031/031491.json diff --git a/source/flights/detail/031493.json b/source/flights/detail/031/031493.json similarity index 100% rename from source/flights/detail/031493.json rename to source/flights/detail/031/031493.json diff --git a/source/flights/detail/031520.json b/source/flights/detail/031/031520.json similarity index 100% rename from source/flights/detail/031520.json rename to source/flights/detail/031/031520.json diff --git a/source/flights/detail/031521.json b/source/flights/detail/031/031521.json similarity index 100% rename from source/flights/detail/031521.json rename to source/flights/detail/031/031521.json diff --git a/source/flights/detail/031522.json b/source/flights/detail/031/031522.json similarity index 100% rename from source/flights/detail/031522.json rename to source/flights/detail/031/031522.json diff --git a/source/flights/detail/031527.json b/source/flights/detail/031/031527.json similarity index 100% rename from source/flights/detail/031527.json rename to source/flights/detail/031/031527.json diff --git a/source/flights/detail/031529.json b/source/flights/detail/031/031529.json similarity index 100% rename from source/flights/detail/031529.json rename to source/flights/detail/031/031529.json diff --git a/source/flights/detail/031531.json b/source/flights/detail/031/031531.json similarity index 100% rename from source/flights/detail/031531.json rename to source/flights/detail/031/031531.json diff --git a/source/flights/detail/031588.json b/source/flights/detail/031/031588.json similarity index 100% rename from source/flights/detail/031588.json rename to source/flights/detail/031/031588.json diff --git a/source/flights/detail/031591.json b/source/flights/detail/031/031591.json similarity index 100% rename from source/flights/detail/031591.json rename to source/flights/detail/031/031591.json diff --git a/source/flights/detail/031595.json b/source/flights/detail/031/031595.json similarity index 100% rename from source/flights/detail/031595.json rename to source/flights/detail/031/031595.json diff --git a/source/flights/detail/031596.json b/source/flights/detail/031/031596.json similarity index 100% rename from source/flights/detail/031596.json rename to source/flights/detail/031/031596.json diff --git a/source/flights/detail/031600.json b/source/flights/detail/031/031600.json similarity index 100% rename from source/flights/detail/031600.json rename to source/flights/detail/031/031600.json diff --git a/source/flights/detail/031601.json b/source/flights/detail/031/031601.json similarity index 100% rename from source/flights/detail/031601.json rename to source/flights/detail/031/031601.json diff --git a/source/flights/detail/031605.json b/source/flights/detail/031/031605.json similarity index 100% rename from source/flights/detail/031605.json rename to source/flights/detail/031/031605.json diff --git a/source/flights/detail/031606.json b/source/flights/detail/031/031606.json similarity index 100% rename from source/flights/detail/031606.json rename to source/flights/detail/031/031606.json diff --git a/source/flights/detail/031607.json b/source/flights/detail/031/031607.json similarity index 100% rename from source/flights/detail/031607.json rename to source/flights/detail/031/031607.json diff --git a/source/flights/detail/031608.json b/source/flights/detail/031/031608.json similarity index 100% rename from source/flights/detail/031608.json rename to source/flights/detail/031/031608.json diff --git a/source/flights/detail/031610.json b/source/flights/detail/031/031610.json similarity index 100% rename from source/flights/detail/031610.json rename to source/flights/detail/031/031610.json diff --git a/source/flights/detail/031611.json b/source/flights/detail/031/031611.json similarity index 100% rename from source/flights/detail/031611.json rename to source/flights/detail/031/031611.json diff --git a/source/flights/detail/031612.json b/source/flights/detail/031/031612.json similarity index 100% rename from source/flights/detail/031612.json rename to source/flights/detail/031/031612.json diff --git a/source/flights/detail/031614.json b/source/flights/detail/031/031614.json similarity index 100% rename from source/flights/detail/031614.json rename to source/flights/detail/031/031614.json diff --git a/source/flights/detail/031617.json b/source/flights/detail/031/031617.json similarity index 100% rename from source/flights/detail/031617.json rename to source/flights/detail/031/031617.json diff --git a/source/flights/detail/031618.json b/source/flights/detail/031/031618.json similarity index 100% rename from source/flights/detail/031618.json rename to source/flights/detail/031/031618.json diff --git a/source/flights/detail/031622.json b/source/flights/detail/031/031622.json similarity index 100% rename from source/flights/detail/031622.json rename to source/flights/detail/031/031622.json diff --git a/source/flights/detail/031623.json b/source/flights/detail/031/031623.json similarity index 100% rename from source/flights/detail/031623.json rename to source/flights/detail/031/031623.json diff --git a/source/flights/detail/031624.json b/source/flights/detail/031/031624.json similarity index 100% rename from source/flights/detail/031624.json rename to source/flights/detail/031/031624.json diff --git a/source/flights/detail/031652.json b/source/flights/detail/031/031652.json similarity index 100% rename from source/flights/detail/031652.json rename to source/flights/detail/031/031652.json diff --git a/source/flights/detail/031653.json b/source/flights/detail/031/031653.json similarity index 100% rename from source/flights/detail/031653.json rename to source/flights/detail/031/031653.json diff --git a/source/flights/detail/031668.json b/source/flights/detail/031/031668.json similarity index 100% rename from source/flights/detail/031668.json rename to source/flights/detail/031/031668.json diff --git a/source/flights/detail/031669.json b/source/flights/detail/031/031669.json similarity index 100% rename from source/flights/detail/031669.json rename to source/flights/detail/031/031669.json diff --git a/source/flights/detail/031670.json b/source/flights/detail/031/031670.json similarity index 100% rename from source/flights/detail/031670.json rename to source/flights/detail/031/031670.json diff --git a/source/flights/detail/031671.json b/source/flights/detail/031/031671.json similarity index 100% rename from source/flights/detail/031671.json rename to source/flights/detail/031/031671.json diff --git a/source/flights/detail/031673.json b/source/flights/detail/031/031673.json similarity index 100% rename from source/flights/detail/031673.json rename to source/flights/detail/031/031673.json diff --git a/source/flights/detail/031677.json b/source/flights/detail/031/031677.json similarity index 100% rename from source/flights/detail/031677.json rename to source/flights/detail/031/031677.json diff --git a/source/flights/detail/031689.json b/source/flights/detail/031/031689.json similarity index 100% rename from source/flights/detail/031689.json rename to source/flights/detail/031/031689.json diff --git a/source/flights/detail/031694.json b/source/flights/detail/031/031694.json similarity index 100% rename from source/flights/detail/031694.json rename to source/flights/detail/031/031694.json diff --git a/source/flights/detail/031703.json b/source/flights/detail/031/031703.json similarity index 100% rename from source/flights/detail/031703.json rename to source/flights/detail/031/031703.json diff --git a/source/flights/detail/031704.json b/source/flights/detail/031/031704.json similarity index 100% rename from source/flights/detail/031704.json rename to source/flights/detail/031/031704.json diff --git a/source/flights/detail/031711.json b/source/flights/detail/031/031711.json similarity index 100% rename from source/flights/detail/031711.json rename to source/flights/detail/031/031711.json diff --git a/source/flights/detail/031729.json b/source/flights/detail/031/031729.json similarity index 100% rename from source/flights/detail/031729.json rename to source/flights/detail/031/031729.json diff --git a/source/flights/detail/031794.json b/source/flights/detail/031/031794.json similarity index 100% rename from source/flights/detail/031794.json rename to source/flights/detail/031/031794.json diff --git a/source/flights/detail/031795.json b/source/flights/detail/031/031795.json similarity index 100% rename from source/flights/detail/031795.json rename to source/flights/detail/031/031795.json diff --git a/source/flights/detail/031796.json b/source/flights/detail/031/031796.json similarity index 100% rename from source/flights/detail/031796.json rename to source/flights/detail/031/031796.json diff --git a/source/flights/detail/031797.json b/source/flights/detail/031/031797.json similarity index 100% rename from source/flights/detail/031797.json rename to source/flights/detail/031/031797.json diff --git a/source/flights/detail/031798.json b/source/flights/detail/031/031798.json similarity index 100% rename from source/flights/detail/031798.json rename to source/flights/detail/031/031798.json diff --git a/source/flights/detail/031801.json b/source/flights/detail/031/031801.json similarity index 100% rename from source/flights/detail/031801.json rename to source/flights/detail/031/031801.json diff --git a/source/flights/detail/031802.json b/source/flights/detail/031/031802.json similarity index 100% rename from source/flights/detail/031802.json rename to source/flights/detail/031/031802.json diff --git a/source/flights/detail/031803.json b/source/flights/detail/031/031803.json similarity index 100% rename from source/flights/detail/031803.json rename to source/flights/detail/031/031803.json diff --git a/source/flights/detail/031804.json b/source/flights/detail/031/031804.json similarity index 100% rename from source/flights/detail/031804.json rename to source/flights/detail/031/031804.json diff --git a/source/flights/detail/031805.json b/source/flights/detail/031/031805.json similarity index 100% rename from source/flights/detail/031805.json rename to source/flights/detail/031/031805.json diff --git a/source/flights/detail/031808.json b/source/flights/detail/031/031808.json similarity index 100% rename from source/flights/detail/031808.json rename to source/flights/detail/031/031808.json diff --git a/source/flights/detail/031809.json b/source/flights/detail/031/031809.json similarity index 100% rename from source/flights/detail/031809.json rename to source/flights/detail/031/031809.json diff --git a/source/flights/detail/031811.json b/source/flights/detail/031/031811.json similarity index 100% rename from source/flights/detail/031811.json rename to source/flights/detail/031/031811.json diff --git a/source/flights/detail/031812.json b/source/flights/detail/031/031812.json similarity index 100% rename from source/flights/detail/031812.json rename to source/flights/detail/031/031812.json diff --git a/source/flights/detail/031813.json b/source/flights/detail/031/031813.json similarity index 100% rename from source/flights/detail/031813.json rename to source/flights/detail/031/031813.json diff --git a/source/flights/detail/031814.json b/source/flights/detail/031/031814.json similarity index 100% rename from source/flights/detail/031814.json rename to source/flights/detail/031/031814.json diff --git a/source/flights/detail/031815.json b/source/flights/detail/031/031815.json similarity index 100% rename from source/flights/detail/031815.json rename to source/flights/detail/031/031815.json diff --git a/source/flights/detail/031819.json b/source/flights/detail/031/031819.json similarity index 100% rename from source/flights/detail/031819.json rename to source/flights/detail/031/031819.json diff --git a/source/flights/detail/031823.json b/source/flights/detail/031/031823.json similarity index 100% rename from source/flights/detail/031823.json rename to source/flights/detail/031/031823.json diff --git a/source/flights/detail/031824.json b/source/flights/detail/031/031824.json similarity index 100% rename from source/flights/detail/031824.json rename to source/flights/detail/031/031824.json diff --git a/source/flights/detail/031825.json b/source/flights/detail/031/031825.json similarity index 100% rename from source/flights/detail/031825.json rename to source/flights/detail/031/031825.json diff --git a/source/flights/detail/031828.json b/source/flights/detail/031/031828.json similarity index 100% rename from source/flights/detail/031828.json rename to source/flights/detail/031/031828.json diff --git a/source/flights/detail/031832.json b/source/flights/detail/031/031832.json similarity index 100% rename from source/flights/detail/031832.json rename to source/flights/detail/031/031832.json diff --git a/source/flights/detail/031839.json b/source/flights/detail/031/031839.json similarity index 100% rename from source/flights/detail/031839.json rename to source/flights/detail/031/031839.json diff --git a/source/flights/detail/031840.json b/source/flights/detail/031/031840.json similarity index 100% rename from source/flights/detail/031840.json rename to source/flights/detail/031/031840.json diff --git a/source/flights/detail/031841.json b/source/flights/detail/031/031841.json similarity index 100% rename from source/flights/detail/031841.json rename to source/flights/detail/031/031841.json diff --git a/source/flights/detail/031854.json b/source/flights/detail/031/031854.json similarity index 100% rename from source/flights/detail/031854.json rename to source/flights/detail/031/031854.json diff --git a/source/flights/detail/031869.json b/source/flights/detail/031/031869.json similarity index 100% rename from source/flights/detail/031869.json rename to source/flights/detail/031/031869.json diff --git a/source/flights/detail/031870.json b/source/flights/detail/031/031870.json similarity index 100% rename from source/flights/detail/031870.json rename to source/flights/detail/031/031870.json diff --git a/source/flights/detail/031874.json b/source/flights/detail/031/031874.json similarity index 100% rename from source/flights/detail/031874.json rename to source/flights/detail/031/031874.json diff --git a/source/flights/detail/031884.json b/source/flights/detail/031/031884.json similarity index 100% rename from source/flights/detail/031884.json rename to source/flights/detail/031/031884.json diff --git a/source/flights/detail/031890.json b/source/flights/detail/031/031890.json similarity index 100% rename from source/flights/detail/031890.json rename to source/flights/detail/031/031890.json diff --git a/source/flights/detail/031891.json b/source/flights/detail/031/031891.json similarity index 100% rename from source/flights/detail/031891.json rename to source/flights/detail/031/031891.json diff --git a/source/flights/detail/031892.json b/source/flights/detail/031/031892.json similarity index 100% rename from source/flights/detail/031892.json rename to source/flights/detail/031/031892.json diff --git a/source/flights/detail/031893.json b/source/flights/detail/031/031893.json similarity index 100% rename from source/flights/detail/031893.json rename to source/flights/detail/031/031893.json diff --git a/source/flights/detail/031895.json b/source/flights/detail/031/031895.json similarity index 100% rename from source/flights/detail/031895.json rename to source/flights/detail/031/031895.json diff --git a/source/flights/detail/031899.json b/source/flights/detail/031/031899.json similarity index 100% rename from source/flights/detail/031899.json rename to source/flights/detail/031/031899.json diff --git a/source/flights/detail/031900.json b/source/flights/detail/031/031900.json similarity index 100% rename from source/flights/detail/031900.json rename to source/flights/detail/031/031900.json diff --git a/source/flights/detail/031901.json b/source/flights/detail/031/031901.json similarity index 100% rename from source/flights/detail/031901.json rename to source/flights/detail/031/031901.json diff --git a/source/flights/detail/031902.json b/source/flights/detail/031/031902.json similarity index 100% rename from source/flights/detail/031902.json rename to source/flights/detail/031/031902.json diff --git a/source/flights/detail/031906.json b/source/flights/detail/031/031906.json similarity index 100% rename from source/flights/detail/031906.json rename to source/flights/detail/031/031906.json diff --git a/source/flights/detail/031907.json b/source/flights/detail/031/031907.json similarity index 100% rename from source/flights/detail/031907.json rename to source/flights/detail/031/031907.json diff --git a/source/flights/detail/031909.json b/source/flights/detail/031/031909.json similarity index 100% rename from source/flights/detail/031909.json rename to source/flights/detail/031/031909.json diff --git a/source/flights/detail/031911.json b/source/flights/detail/031/031911.json similarity index 100% rename from source/flights/detail/031911.json rename to source/flights/detail/031/031911.json diff --git a/source/flights/detail/031912.json b/source/flights/detail/031/031912.json similarity index 100% rename from source/flights/detail/031912.json rename to source/flights/detail/031/031912.json diff --git a/source/flights/detail/031913.json b/source/flights/detail/031/031913.json similarity index 100% rename from source/flights/detail/031913.json rename to source/flights/detail/031/031913.json diff --git a/source/flights/detail/031914.json b/source/flights/detail/031/031914.json similarity index 100% rename from source/flights/detail/031914.json rename to source/flights/detail/031/031914.json diff --git a/source/flights/detail/031915.json b/source/flights/detail/031/031915.json similarity index 100% rename from source/flights/detail/031915.json rename to source/flights/detail/031/031915.json diff --git a/source/flights/detail/031921.json b/source/flights/detail/031/031921.json similarity index 100% rename from source/flights/detail/031921.json rename to source/flights/detail/031/031921.json diff --git a/source/flights/detail/031922.json b/source/flights/detail/031/031922.json similarity index 100% rename from source/flights/detail/031922.json rename to source/flights/detail/031/031922.json diff --git a/source/flights/detail/031924.json b/source/flights/detail/031/031924.json similarity index 100% rename from source/flights/detail/031924.json rename to source/flights/detail/031/031924.json diff --git a/source/flights/detail/031925.json b/source/flights/detail/031/031925.json similarity index 100% rename from source/flights/detail/031925.json rename to source/flights/detail/031/031925.json diff --git a/source/flights/detail/031928.json b/source/flights/detail/031/031928.json similarity index 100% rename from source/flights/detail/031928.json rename to source/flights/detail/031/031928.json diff --git a/source/flights/detail/031929.json b/source/flights/detail/031/031929.json similarity index 100% rename from source/flights/detail/031929.json rename to source/flights/detail/031/031929.json diff --git a/source/flights/detail/031931.json b/source/flights/detail/031/031931.json similarity index 100% rename from source/flights/detail/031931.json rename to source/flights/detail/031/031931.json diff --git a/source/flights/detail/031937.json b/source/flights/detail/031/031937.json similarity index 100% rename from source/flights/detail/031937.json rename to source/flights/detail/031/031937.json diff --git a/source/flights/detail/031946.json b/source/flights/detail/031/031946.json similarity index 100% rename from source/flights/detail/031946.json rename to source/flights/detail/031/031946.json diff --git a/source/flights/detail/031948.json b/source/flights/detail/031/031948.json similarity index 100% rename from source/flights/detail/031948.json rename to source/flights/detail/031/031948.json diff --git a/source/flights/detail/031949.json b/source/flights/detail/031/031949.json similarity index 100% rename from source/flights/detail/031949.json rename to source/flights/detail/031/031949.json diff --git a/source/flights/detail/031955.json b/source/flights/detail/031/031955.json similarity index 100% rename from source/flights/detail/031955.json rename to source/flights/detail/031/031955.json diff --git a/source/flights/detail/031956.json b/source/flights/detail/031/031956.json similarity index 100% rename from source/flights/detail/031956.json rename to source/flights/detail/031/031956.json diff --git a/source/flights/detail/031957.json b/source/flights/detail/031/031957.json similarity index 100% rename from source/flights/detail/031957.json rename to source/flights/detail/031/031957.json diff --git a/source/flights/detail/031962.json b/source/flights/detail/031/031962.json similarity index 100% rename from source/flights/detail/031962.json rename to source/flights/detail/031/031962.json diff --git a/source/flights/detail/031967.json b/source/flights/detail/031/031967.json similarity index 100% rename from source/flights/detail/031967.json rename to source/flights/detail/031/031967.json diff --git a/source/flights/detail/031968.json b/source/flights/detail/031/031968.json similarity index 100% rename from source/flights/detail/031968.json rename to source/flights/detail/031/031968.json diff --git a/source/flights/detail/031969.json b/source/flights/detail/031/031969.json similarity index 100% rename from source/flights/detail/031969.json rename to source/flights/detail/031/031969.json diff --git a/source/flights/detail/031971.json b/source/flights/detail/031/031971.json similarity index 100% rename from source/flights/detail/031971.json rename to source/flights/detail/031/031971.json diff --git a/source/flights/detail/031974.json b/source/flights/detail/031/031974.json similarity index 100% rename from source/flights/detail/031974.json rename to source/flights/detail/031/031974.json diff --git a/source/flights/detail/031975.json b/source/flights/detail/031/031975.json similarity index 100% rename from source/flights/detail/031975.json rename to source/flights/detail/031/031975.json diff --git a/source/flights/detail/031981.json b/source/flights/detail/031/031981.json similarity index 100% rename from source/flights/detail/031981.json rename to source/flights/detail/031/031981.json diff --git a/source/flights/detail/031983.json b/source/flights/detail/031/031983.json similarity index 100% rename from source/flights/detail/031983.json rename to source/flights/detail/031/031983.json diff --git a/source/flights/detail/031990.json b/source/flights/detail/031/031990.json similarity index 100% rename from source/flights/detail/031990.json rename to source/flights/detail/031/031990.json diff --git a/source/flights/detail/031997.json b/source/flights/detail/031/031997.json similarity index 100% rename from source/flights/detail/031997.json rename to source/flights/detail/031/031997.json diff --git a/source/flights/detail/031998.json b/source/flights/detail/031/031998.json similarity index 100% rename from source/flights/detail/031998.json rename to source/flights/detail/031/031998.json diff --git a/source/flights/detail/032005.json b/source/flights/detail/032/032005.json similarity index 100% rename from source/flights/detail/032005.json rename to source/flights/detail/032/032005.json diff --git a/source/flights/detail/032009.json b/source/flights/detail/032/032009.json similarity index 100% rename from source/flights/detail/032009.json rename to source/flights/detail/032/032009.json diff --git a/source/flights/detail/032019.json b/source/flights/detail/032/032019.json similarity index 100% rename from source/flights/detail/032019.json rename to source/flights/detail/032/032019.json diff --git a/source/flights/detail/032025.json b/source/flights/detail/032/032025.json similarity index 100% rename from source/flights/detail/032025.json rename to source/flights/detail/032/032025.json diff --git a/source/flights/detail/032026.json b/source/flights/detail/032/032026.json similarity index 100% rename from source/flights/detail/032026.json rename to source/flights/detail/032/032026.json diff --git a/source/flights/detail/032030.json b/source/flights/detail/032/032030.json similarity index 100% rename from source/flights/detail/032030.json rename to source/flights/detail/032/032030.json diff --git a/source/flights/detail/032033.json b/source/flights/detail/032/032033.json similarity index 100% rename from source/flights/detail/032033.json rename to source/flights/detail/032/032033.json diff --git a/source/flights/detail/032035.json b/source/flights/detail/032/032035.json similarity index 100% rename from source/flights/detail/032035.json rename to source/flights/detail/032/032035.json diff --git a/source/flights/detail/032036.json b/source/flights/detail/032/032036.json similarity index 100% rename from source/flights/detail/032036.json rename to source/flights/detail/032/032036.json diff --git a/source/flights/detail/032051.json b/source/flights/detail/032/032051.json similarity index 100% rename from source/flights/detail/032051.json rename to source/flights/detail/032/032051.json diff --git a/source/flights/detail/032053.json b/source/flights/detail/032/032053.json similarity index 100% rename from source/flights/detail/032053.json rename to source/flights/detail/032/032053.json diff --git a/source/flights/detail/032054.json b/source/flights/detail/032/032054.json similarity index 100% rename from source/flights/detail/032054.json rename to source/flights/detail/032/032054.json diff --git a/source/flights/detail/032097.json b/source/flights/detail/032/032097.json similarity index 100% rename from source/flights/detail/032097.json rename to source/flights/detail/032/032097.json diff --git a/source/flights/detail/032098.json b/source/flights/detail/032/032098.json similarity index 100% rename from source/flights/detail/032098.json rename to source/flights/detail/032/032098.json diff --git a/source/flights/detail/032103.json b/source/flights/detail/032/032103.json similarity index 100% rename from source/flights/detail/032103.json rename to source/flights/detail/032/032103.json diff --git a/source/flights/detail/032118.json b/source/flights/detail/032/032118.json similarity index 100% rename from source/flights/detail/032118.json rename to source/flights/detail/032/032118.json diff --git a/source/flights/detail/032121.json b/source/flights/detail/032/032121.json similarity index 100% rename from source/flights/detail/032121.json rename to source/flights/detail/032/032121.json diff --git a/source/flights/detail/032122.json b/source/flights/detail/032/032122.json similarity index 100% rename from source/flights/detail/032122.json rename to source/flights/detail/032/032122.json diff --git a/source/flights/detail/032125.json b/source/flights/detail/032/032125.json similarity index 100% rename from source/flights/detail/032125.json rename to source/flights/detail/032/032125.json diff --git a/source/flights/detail/032126.json b/source/flights/detail/032/032126.json similarity index 100% rename from source/flights/detail/032126.json rename to source/flights/detail/032/032126.json diff --git a/source/flights/detail/032127.json b/source/flights/detail/032/032127.json similarity index 100% rename from source/flights/detail/032127.json rename to source/flights/detail/032/032127.json diff --git a/source/flights/detail/032128.json b/source/flights/detail/032/032128.json similarity index 100% rename from source/flights/detail/032128.json rename to source/flights/detail/032/032128.json diff --git a/source/flights/detail/032149.json b/source/flights/detail/032/032149.json similarity index 100% rename from source/flights/detail/032149.json rename to source/flights/detail/032/032149.json diff --git a/source/flights/detail/032150.json b/source/flights/detail/032/032150.json similarity index 100% rename from source/flights/detail/032150.json rename to source/flights/detail/032/032150.json diff --git a/source/flights/detail/032154.json b/source/flights/detail/032/032154.json similarity index 100% rename from source/flights/detail/032154.json rename to source/flights/detail/032/032154.json diff --git a/source/flights/detail/032155.json b/source/flights/detail/032/032155.json similarity index 100% rename from source/flights/detail/032155.json rename to source/flights/detail/032/032155.json diff --git a/source/flights/detail/032156.json b/source/flights/detail/032/032156.json similarity index 100% rename from source/flights/detail/032156.json rename to source/flights/detail/032/032156.json diff --git a/source/flights/detail/032163.json b/source/flights/detail/032/032163.json similarity index 100% rename from source/flights/detail/032163.json rename to source/flights/detail/032/032163.json diff --git a/source/flights/detail/032164.json b/source/flights/detail/032/032164.json similarity index 100% rename from source/flights/detail/032164.json rename to source/flights/detail/032/032164.json diff --git a/source/flights/detail/032166.json b/source/flights/detail/032/032166.json similarity index 100% rename from source/flights/detail/032166.json rename to source/flights/detail/032/032166.json diff --git a/source/flights/detail/032167.json b/source/flights/detail/032/032167.json similarity index 100% rename from source/flights/detail/032167.json rename to source/flights/detail/032/032167.json diff --git a/source/flights/detail/032168.json b/source/flights/detail/032/032168.json similarity index 100% rename from source/flights/detail/032168.json rename to source/flights/detail/032/032168.json diff --git a/source/flights/detail/032169.json b/source/flights/detail/032/032169.json similarity index 100% rename from source/flights/detail/032169.json rename to source/flights/detail/032/032169.json diff --git a/source/flights/detail/032174.json b/source/flights/detail/032/032174.json similarity index 100% rename from source/flights/detail/032174.json rename to source/flights/detail/032/032174.json diff --git a/source/flights/detail/032185.json b/source/flights/detail/032/032185.json similarity index 100% rename from source/flights/detail/032185.json rename to source/flights/detail/032/032185.json diff --git a/source/flights/detail/032210.json b/source/flights/detail/032/032210.json similarity index 100% rename from source/flights/detail/032210.json rename to source/flights/detail/032/032210.json diff --git a/source/flights/detail/032211.json b/source/flights/detail/032/032211.json similarity index 100% rename from source/flights/detail/032211.json rename to source/flights/detail/032/032211.json diff --git a/source/flights/detail/032213.json b/source/flights/detail/032/032213.json similarity index 100% rename from source/flights/detail/032213.json rename to source/flights/detail/032/032213.json diff --git a/source/flights/detail/032216.json b/source/flights/detail/032/032216.json similarity index 100% rename from source/flights/detail/032216.json rename to source/flights/detail/032/032216.json diff --git a/source/flights/detail/032217.json b/source/flights/detail/032/032217.json similarity index 100% rename from source/flights/detail/032217.json rename to source/flights/detail/032/032217.json diff --git a/source/flights/detail/032220.json b/source/flights/detail/032/032220.json similarity index 100% rename from source/flights/detail/032220.json rename to source/flights/detail/032/032220.json diff --git a/source/flights/detail/032221.json b/source/flights/detail/032/032221.json similarity index 100% rename from source/flights/detail/032221.json rename to source/flights/detail/032/032221.json diff --git a/source/flights/detail/032226.json b/source/flights/detail/032/032226.json similarity index 100% rename from source/flights/detail/032226.json rename to source/flights/detail/032/032226.json diff --git a/source/flights/detail/032228.json b/source/flights/detail/032/032228.json similarity index 100% rename from source/flights/detail/032228.json rename to source/flights/detail/032/032228.json diff --git a/source/flights/detail/032231.json b/source/flights/detail/032/032231.json similarity index 100% rename from source/flights/detail/032231.json rename to source/flights/detail/032/032231.json diff --git a/source/flights/detail/032234.json b/source/flights/detail/032/032234.json similarity index 100% rename from source/flights/detail/032234.json rename to source/flights/detail/032/032234.json diff --git a/source/flights/detail/032236.json b/source/flights/detail/032/032236.json similarity index 100% rename from source/flights/detail/032236.json rename to source/flights/detail/032/032236.json diff --git a/source/flights/detail/032238.json b/source/flights/detail/032/032238.json similarity index 100% rename from source/flights/detail/032238.json rename to source/flights/detail/032/032238.json diff --git a/source/flights/detail/032242.json b/source/flights/detail/032/032242.json similarity index 100% rename from source/flights/detail/032242.json rename to source/flights/detail/032/032242.json diff --git a/source/flights/detail/032244.json b/source/flights/detail/032/032244.json similarity index 100% rename from source/flights/detail/032244.json rename to source/flights/detail/032/032244.json diff --git a/source/flights/detail/032245.json b/source/flights/detail/032/032245.json similarity index 100% rename from source/flights/detail/032245.json rename to source/flights/detail/032/032245.json diff --git a/source/flights/detail/032246.json b/source/flights/detail/032/032246.json similarity index 100% rename from source/flights/detail/032246.json rename to source/flights/detail/032/032246.json diff --git a/source/flights/detail/032249.json b/source/flights/detail/032/032249.json similarity index 100% rename from source/flights/detail/032249.json rename to source/flights/detail/032/032249.json diff --git a/source/flights/detail/032251.json b/source/flights/detail/032/032251.json similarity index 100% rename from source/flights/detail/032251.json rename to source/flights/detail/032/032251.json diff --git a/source/flights/detail/032253.json b/source/flights/detail/032/032253.json similarity index 100% rename from source/flights/detail/032253.json rename to source/flights/detail/032/032253.json diff --git a/source/flights/detail/032256.json b/source/flights/detail/032/032256.json similarity index 100% rename from source/flights/detail/032256.json rename to source/flights/detail/032/032256.json diff --git a/source/flights/detail/032259.json b/source/flights/detail/032/032259.json similarity index 100% rename from source/flights/detail/032259.json rename to source/flights/detail/032/032259.json diff --git a/source/flights/detail/032261.json b/source/flights/detail/032/032261.json similarity index 100% rename from source/flights/detail/032261.json rename to source/flights/detail/032/032261.json diff --git a/source/flights/detail/032262.json b/source/flights/detail/032/032262.json similarity index 100% rename from source/flights/detail/032262.json rename to source/flights/detail/032/032262.json diff --git a/source/flights/detail/032263.json b/source/flights/detail/032/032263.json similarity index 100% rename from source/flights/detail/032263.json rename to source/flights/detail/032/032263.json diff --git a/source/flights/detail/032266.json b/source/flights/detail/032/032266.json similarity index 100% rename from source/flights/detail/032266.json rename to source/flights/detail/032/032266.json diff --git a/source/flights/detail/032268.json b/source/flights/detail/032/032268.json similarity index 100% rename from source/flights/detail/032268.json rename to source/flights/detail/032/032268.json diff --git a/source/flights/detail/032269.json b/source/flights/detail/032/032269.json similarity index 100% rename from source/flights/detail/032269.json rename to source/flights/detail/032/032269.json diff --git a/source/flights/detail/032298.json b/source/flights/detail/032/032298.json similarity index 100% rename from source/flights/detail/032298.json rename to source/flights/detail/032/032298.json diff --git a/source/flights/detail/032300.json b/source/flights/detail/032/032300.json similarity index 100% rename from source/flights/detail/032300.json rename to source/flights/detail/032/032300.json diff --git a/source/flights/detail/032304.json b/source/flights/detail/032/032304.json similarity index 100% rename from source/flights/detail/032304.json rename to source/flights/detail/032/032304.json diff --git a/source/flights/detail/032318.json b/source/flights/detail/032/032318.json similarity index 100% rename from source/flights/detail/032318.json rename to source/flights/detail/032/032318.json diff --git a/source/flights/detail/032345.json b/source/flights/detail/032/032345.json similarity index 100% rename from source/flights/detail/032345.json rename to source/flights/detail/032/032345.json diff --git a/source/flights/detail/032353.json b/source/flights/detail/032/032353.json similarity index 100% rename from source/flights/detail/032353.json rename to source/flights/detail/032/032353.json diff --git a/source/flights/detail/032354.json b/source/flights/detail/032/032354.json similarity index 100% rename from source/flights/detail/032354.json rename to source/flights/detail/032/032354.json diff --git a/source/flights/detail/032356.json b/source/flights/detail/032/032356.json similarity index 100% rename from source/flights/detail/032356.json rename to source/flights/detail/032/032356.json diff --git a/source/flights/detail/032370.json b/source/flights/detail/032/032370.json similarity index 100% rename from source/flights/detail/032370.json rename to source/flights/detail/032/032370.json diff --git a/source/flights/detail/032384.json b/source/flights/detail/032/032384.json similarity index 100% rename from source/flights/detail/032384.json rename to source/flights/detail/032/032384.json diff --git a/source/flights/detail/032385.json b/source/flights/detail/032/032385.json similarity index 100% rename from source/flights/detail/032385.json rename to source/flights/detail/032/032385.json diff --git a/source/flights/detail/032431.json b/source/flights/detail/032/032431.json similarity index 100% rename from source/flights/detail/032431.json rename to source/flights/detail/032/032431.json diff --git a/source/flights/detail/032432.json b/source/flights/detail/032/032432.json similarity index 100% rename from source/flights/detail/032432.json rename to source/flights/detail/032/032432.json diff --git a/source/flights/detail/032435.json b/source/flights/detail/032/032435.json similarity index 100% rename from source/flights/detail/032435.json rename to source/flights/detail/032/032435.json diff --git a/source/flights/detail/032436.json b/source/flights/detail/032/032436.json similarity index 100% rename from source/flights/detail/032436.json rename to source/flights/detail/032/032436.json diff --git a/source/flights/detail/032439.json b/source/flights/detail/032/032439.json similarity index 100% rename from source/flights/detail/032439.json rename to source/flights/detail/032/032439.json diff --git a/source/flights/detail/032440.json b/source/flights/detail/032/032440.json similarity index 100% rename from source/flights/detail/032440.json rename to source/flights/detail/032/032440.json diff --git a/source/flights/detail/032450.json b/source/flights/detail/032/032450.json similarity index 100% rename from source/flights/detail/032450.json rename to source/flights/detail/032/032450.json diff --git a/source/flights/detail/032455.json b/source/flights/detail/032/032455.json similarity index 100% rename from source/flights/detail/032455.json rename to source/flights/detail/032/032455.json diff --git a/source/flights/detail/032458.json b/source/flights/detail/032/032458.json similarity index 100% rename from source/flights/detail/032458.json rename to source/flights/detail/032/032458.json diff --git a/source/flights/detail/032459.json b/source/flights/detail/032/032459.json similarity index 100% rename from source/flights/detail/032459.json rename to source/flights/detail/032/032459.json diff --git a/source/flights/detail/032460.json b/source/flights/detail/032/032460.json similarity index 100% rename from source/flights/detail/032460.json rename to source/flights/detail/032/032460.json diff --git a/source/flights/detail/032461.json b/source/flights/detail/032/032461.json similarity index 100% rename from source/flights/detail/032461.json rename to source/flights/detail/032/032461.json diff --git a/source/flights/detail/032462.json b/source/flights/detail/032/032462.json similarity index 100% rename from source/flights/detail/032462.json rename to source/flights/detail/032/032462.json diff --git a/source/flights/detail/032463.json b/source/flights/detail/032/032463.json similarity index 100% rename from source/flights/detail/032463.json rename to source/flights/detail/032/032463.json diff --git a/source/flights/detail/032464.json b/source/flights/detail/032/032464.json similarity index 100% rename from source/flights/detail/032464.json rename to source/flights/detail/032/032464.json diff --git a/source/flights/detail/032465.json b/source/flights/detail/032/032465.json similarity index 100% rename from source/flights/detail/032465.json rename to source/flights/detail/032/032465.json diff --git a/source/flights/detail/032466.json b/source/flights/detail/032/032466.json similarity index 100% rename from source/flights/detail/032466.json rename to source/flights/detail/032/032466.json diff --git a/source/flights/detail/032467.json b/source/flights/detail/032/032467.json similarity index 100% rename from source/flights/detail/032467.json rename to source/flights/detail/032/032467.json diff --git a/source/flights/detail/032468.json b/source/flights/detail/032/032468.json similarity index 100% rename from source/flights/detail/032468.json rename to source/flights/detail/032/032468.json diff --git a/source/flights/detail/032469.json b/source/flights/detail/032/032469.json similarity index 100% rename from source/flights/detail/032469.json rename to source/flights/detail/032/032469.json diff --git a/source/flights/detail/032470.json b/source/flights/detail/032/032470.json similarity index 100% rename from source/flights/detail/032470.json rename to source/flights/detail/032/032470.json diff --git a/source/flights/detail/032471.json b/source/flights/detail/032/032471.json similarity index 100% rename from source/flights/detail/032471.json rename to source/flights/detail/032/032471.json diff --git a/source/flights/detail/032472.json b/source/flights/detail/032/032472.json similarity index 100% rename from source/flights/detail/032472.json rename to source/flights/detail/032/032472.json diff --git a/source/flights/detail/032473.json b/source/flights/detail/032/032473.json similarity index 100% rename from source/flights/detail/032473.json rename to source/flights/detail/032/032473.json diff --git a/source/flights/detail/032474.json b/source/flights/detail/032/032474.json similarity index 100% rename from source/flights/detail/032474.json rename to source/flights/detail/032/032474.json diff --git a/source/flights/detail/032475.json b/source/flights/detail/032/032475.json similarity index 100% rename from source/flights/detail/032475.json rename to source/flights/detail/032/032475.json diff --git a/source/flights/detail/032476.json b/source/flights/detail/032/032476.json similarity index 100% rename from source/flights/detail/032476.json rename to source/flights/detail/032/032476.json diff --git a/source/flights/detail/032477.json b/source/flights/detail/032/032477.json similarity index 100% rename from source/flights/detail/032477.json rename to source/flights/detail/032/032477.json diff --git a/source/flights/detail/032479.json b/source/flights/detail/032/032479.json similarity index 100% rename from source/flights/detail/032479.json rename to source/flights/detail/032/032479.json diff --git a/source/flights/detail/032480.json b/source/flights/detail/032/032480.json similarity index 100% rename from source/flights/detail/032480.json rename to source/flights/detail/032/032480.json diff --git a/source/flights/detail/032483.json b/source/flights/detail/032/032483.json similarity index 100% rename from source/flights/detail/032483.json rename to source/flights/detail/032/032483.json diff --git a/source/flights/detail/032493.json b/source/flights/detail/032/032493.json similarity index 100% rename from source/flights/detail/032493.json rename to source/flights/detail/032/032493.json diff --git a/source/flights/detail/032497.json b/source/flights/detail/032/032497.json similarity index 100% rename from source/flights/detail/032497.json rename to source/flights/detail/032/032497.json diff --git a/source/flights/detail/032503.json b/source/flights/detail/032/032503.json similarity index 100% rename from source/flights/detail/032503.json rename to source/flights/detail/032/032503.json diff --git a/source/flights/detail/032504.json b/source/flights/detail/032/032504.json similarity index 100% rename from source/flights/detail/032504.json rename to source/flights/detail/032/032504.json diff --git a/source/flights/detail/032507.json b/source/flights/detail/032/032507.json similarity index 100% rename from source/flights/detail/032507.json rename to source/flights/detail/032/032507.json diff --git a/source/flights/detail/032509.json b/source/flights/detail/032/032509.json similarity index 100% rename from source/flights/detail/032509.json rename to source/flights/detail/032/032509.json diff --git a/source/flights/detail/032510.json b/source/flights/detail/032/032510.json similarity index 100% rename from source/flights/detail/032510.json rename to source/flights/detail/032/032510.json diff --git a/source/flights/detail/032511.json b/source/flights/detail/032/032511.json similarity index 100% rename from source/flights/detail/032511.json rename to source/flights/detail/032/032511.json diff --git a/source/flights/detail/032547.json b/source/flights/detail/032/032547.json similarity index 100% rename from source/flights/detail/032547.json rename to source/flights/detail/032/032547.json diff --git a/source/flights/detail/032594.json b/source/flights/detail/032/032594.json similarity index 100% rename from source/flights/detail/032594.json rename to source/flights/detail/032/032594.json diff --git a/source/flights/detail/032640.json b/source/flights/detail/032/032640.json similarity index 100% rename from source/flights/detail/032640.json rename to source/flights/detail/032/032640.json diff --git a/source/flights/detail/032641.json b/source/flights/detail/032/032641.json similarity index 100% rename from source/flights/detail/032641.json rename to source/flights/detail/032/032641.json diff --git a/source/flights/detail/032642.json b/source/flights/detail/032/032642.json similarity index 100% rename from source/flights/detail/032642.json rename to source/flights/detail/032/032642.json diff --git a/source/flights/detail/032643.json b/source/flights/detail/032/032643.json similarity index 100% rename from source/flights/detail/032643.json rename to source/flights/detail/032/032643.json diff --git a/source/flights/detail/032644.json b/source/flights/detail/032/032644.json similarity index 100% rename from source/flights/detail/032644.json rename to source/flights/detail/032/032644.json diff --git a/source/flights/detail/032645.json b/source/flights/detail/032/032645.json similarity index 100% rename from source/flights/detail/032645.json rename to source/flights/detail/032/032645.json diff --git a/source/flights/detail/032646.json b/source/flights/detail/032/032646.json similarity index 100% rename from source/flights/detail/032646.json rename to source/flights/detail/032/032646.json diff --git a/source/flights/detail/032648.json b/source/flights/detail/032/032648.json similarity index 100% rename from source/flights/detail/032648.json rename to source/flights/detail/032/032648.json diff --git a/source/flights/detail/032649.json b/source/flights/detail/032/032649.json similarity index 100% rename from source/flights/detail/032649.json rename to source/flights/detail/032/032649.json diff --git a/source/flights/detail/032650.json b/source/flights/detail/032/032650.json similarity index 100% rename from source/flights/detail/032650.json rename to source/flights/detail/032/032650.json diff --git a/source/flights/detail/032651.json b/source/flights/detail/032/032651.json similarity index 100% rename from source/flights/detail/032651.json rename to source/flights/detail/032/032651.json diff --git a/source/flights/detail/032652.json b/source/flights/detail/032/032652.json similarity index 100% rename from source/flights/detail/032652.json rename to source/flights/detail/032/032652.json diff --git a/source/flights/detail/032655.json b/source/flights/detail/032/032655.json similarity index 100% rename from source/flights/detail/032655.json rename to source/flights/detail/032/032655.json diff --git a/source/flights/detail/032657.json b/source/flights/detail/032/032657.json similarity index 100% rename from source/flights/detail/032657.json rename to source/flights/detail/032/032657.json diff --git a/source/flights/detail/032658.json b/source/flights/detail/032/032658.json similarity index 100% rename from source/flights/detail/032658.json rename to source/flights/detail/032/032658.json diff --git a/source/flights/detail/032664.json b/source/flights/detail/032/032664.json similarity index 100% rename from source/flights/detail/032664.json rename to source/flights/detail/032/032664.json diff --git a/source/flights/detail/032665.json b/source/flights/detail/032/032665.json similarity index 100% rename from source/flights/detail/032665.json rename to source/flights/detail/032/032665.json diff --git a/source/flights/detail/032667.json b/source/flights/detail/032/032667.json similarity index 100% rename from source/flights/detail/032667.json rename to source/flights/detail/032/032667.json diff --git a/source/flights/detail/032672.json b/source/flights/detail/032/032672.json similarity index 100% rename from source/flights/detail/032672.json rename to source/flights/detail/032/032672.json diff --git a/source/flights/detail/032673.json b/source/flights/detail/032/032673.json similarity index 100% rename from source/flights/detail/032673.json rename to source/flights/detail/032/032673.json diff --git a/source/flights/detail/032683.json b/source/flights/detail/032/032683.json similarity index 100% rename from source/flights/detail/032683.json rename to source/flights/detail/032/032683.json diff --git a/source/flights/detail/032684.json b/source/flights/detail/032/032684.json similarity index 100% rename from source/flights/detail/032684.json rename to source/flights/detail/032/032684.json diff --git a/source/flights/detail/032687.json b/source/flights/detail/032/032687.json similarity index 100% rename from source/flights/detail/032687.json rename to source/flights/detail/032/032687.json diff --git a/source/flights/detail/032690.json b/source/flights/detail/032/032690.json similarity index 100% rename from source/flights/detail/032690.json rename to source/flights/detail/032/032690.json diff --git a/source/flights/detail/032692.json b/source/flights/detail/032/032692.json similarity index 100% rename from source/flights/detail/032692.json rename to source/flights/detail/032/032692.json diff --git a/source/flights/detail/032695.json b/source/flights/detail/032/032695.json similarity index 100% rename from source/flights/detail/032695.json rename to source/flights/detail/032/032695.json diff --git a/source/flights/detail/032696.json b/source/flights/detail/032/032696.json similarity index 100% rename from source/flights/detail/032696.json rename to source/flights/detail/032/032696.json diff --git a/source/flights/detail/032700.json b/source/flights/detail/032/032700.json similarity index 100% rename from source/flights/detail/032700.json rename to source/flights/detail/032/032700.json diff --git a/source/flights/detail/032701.json b/source/flights/detail/032/032701.json similarity index 100% rename from source/flights/detail/032701.json rename to source/flights/detail/032/032701.json diff --git a/source/flights/detail/032702.json b/source/flights/detail/032/032702.json similarity index 100% rename from source/flights/detail/032702.json rename to source/flights/detail/032/032702.json diff --git a/source/flights/detail/032704.json b/source/flights/detail/032/032704.json similarity index 100% rename from source/flights/detail/032704.json rename to source/flights/detail/032/032704.json diff --git a/source/flights/detail/032706.json b/source/flights/detail/032/032706.json similarity index 100% rename from source/flights/detail/032706.json rename to source/flights/detail/032/032706.json diff --git a/source/flights/detail/032714.json b/source/flights/detail/032/032714.json similarity index 100% rename from source/flights/detail/032714.json rename to source/flights/detail/032/032714.json diff --git a/source/flights/detail/032715.json b/source/flights/detail/032/032715.json similarity index 100% rename from source/flights/detail/032715.json rename to source/flights/detail/032/032715.json diff --git a/source/flights/detail/032717.json b/source/flights/detail/032/032717.json similarity index 100% rename from source/flights/detail/032717.json rename to source/flights/detail/032/032717.json diff --git a/source/flights/detail/032722.json b/source/flights/detail/032/032722.json similarity index 100% rename from source/flights/detail/032722.json rename to source/flights/detail/032/032722.json diff --git a/source/flights/detail/032725.json b/source/flights/detail/032/032725.json similarity index 100% rename from source/flights/detail/032725.json rename to source/flights/detail/032/032725.json diff --git a/source/flights/detail/032726.json b/source/flights/detail/032/032726.json similarity index 100% rename from source/flights/detail/032726.json rename to source/flights/detail/032/032726.json diff --git a/source/flights/detail/032728.json b/source/flights/detail/032/032728.json similarity index 100% rename from source/flights/detail/032728.json rename to source/flights/detail/032/032728.json diff --git a/source/flights/detail/032729.json b/source/flights/detail/032/032729.json similarity index 100% rename from source/flights/detail/032729.json rename to source/flights/detail/032/032729.json diff --git a/source/flights/detail/032730.json b/source/flights/detail/032/032730.json similarity index 100% rename from source/flights/detail/032730.json rename to source/flights/detail/032/032730.json diff --git a/source/flights/detail/032733.json b/source/flights/detail/032/032733.json similarity index 100% rename from source/flights/detail/032733.json rename to source/flights/detail/032/032733.json diff --git a/source/flights/detail/032735.json b/source/flights/detail/032/032735.json similarity index 100% rename from source/flights/detail/032735.json rename to source/flights/detail/032/032735.json diff --git a/source/flights/detail/032737.json b/source/flights/detail/032/032737.json similarity index 100% rename from source/flights/detail/032737.json rename to source/flights/detail/032/032737.json diff --git a/source/flights/detail/032738.json b/source/flights/detail/032/032738.json similarity index 100% rename from source/flights/detail/032738.json rename to source/flights/detail/032/032738.json diff --git a/source/flights/detail/032749.json b/source/flights/detail/032/032749.json similarity index 100% rename from source/flights/detail/032749.json rename to source/flights/detail/032/032749.json diff --git a/source/flights/detail/032750.json b/source/flights/detail/032/032750.json similarity index 100% rename from source/flights/detail/032750.json rename to source/flights/detail/032/032750.json diff --git a/source/flights/detail/032751.json b/source/flights/detail/032/032751.json similarity index 100% rename from source/flights/detail/032751.json rename to source/flights/detail/032/032751.json diff --git a/source/flights/detail/032752.json b/source/flights/detail/032/032752.json similarity index 100% rename from source/flights/detail/032752.json rename to source/flights/detail/032/032752.json diff --git a/source/flights/detail/032754.json b/source/flights/detail/032/032754.json similarity index 100% rename from source/flights/detail/032754.json rename to source/flights/detail/032/032754.json diff --git a/source/flights/detail/032755.json b/source/flights/detail/032/032755.json similarity index 100% rename from source/flights/detail/032755.json rename to source/flights/detail/032/032755.json diff --git a/source/flights/detail/032756.json b/source/flights/detail/032/032756.json similarity index 100% rename from source/flights/detail/032756.json rename to source/flights/detail/032/032756.json diff --git a/source/flights/detail/032757.json b/source/flights/detail/032/032757.json similarity index 100% rename from source/flights/detail/032757.json rename to source/flights/detail/032/032757.json diff --git a/source/flights/detail/032758.json b/source/flights/detail/032/032758.json similarity index 100% rename from source/flights/detail/032758.json rename to source/flights/detail/032/032758.json diff --git a/source/flights/detail/032759.json b/source/flights/detail/032/032759.json similarity index 100% rename from source/flights/detail/032759.json rename to source/flights/detail/032/032759.json diff --git a/source/flights/detail/032763.json b/source/flights/detail/032/032763.json similarity index 100% rename from source/flights/detail/032763.json rename to source/flights/detail/032/032763.json diff --git a/source/flights/detail/032769.json b/source/flights/detail/032/032769.json similarity index 100% rename from source/flights/detail/032769.json rename to source/flights/detail/032/032769.json diff --git a/source/flights/detail/032770.json b/source/flights/detail/032/032770.json similarity index 100% rename from source/flights/detail/032770.json rename to source/flights/detail/032/032770.json diff --git a/source/flights/detail/032771.json b/source/flights/detail/032/032771.json similarity index 100% rename from source/flights/detail/032771.json rename to source/flights/detail/032/032771.json diff --git a/source/flights/detail/032772.json b/source/flights/detail/032/032772.json similarity index 100% rename from source/flights/detail/032772.json rename to source/flights/detail/032/032772.json diff --git a/source/flights/detail/032776.json b/source/flights/detail/032/032776.json similarity index 100% rename from source/flights/detail/032776.json rename to source/flights/detail/032/032776.json diff --git a/source/flights/detail/032779.json b/source/flights/detail/032/032779.json similarity index 100% rename from source/flights/detail/032779.json rename to source/flights/detail/032/032779.json diff --git a/source/flights/detail/032794.json b/source/flights/detail/032/032794.json similarity index 100% rename from source/flights/detail/032794.json rename to source/flights/detail/032/032794.json diff --git a/source/flights/detail/032795.json b/source/flights/detail/032/032795.json similarity index 100% rename from source/flights/detail/032795.json rename to source/flights/detail/032/032795.json diff --git a/source/flights/detail/032796.json b/source/flights/detail/032/032796.json similarity index 100% rename from source/flights/detail/032796.json rename to source/flights/detail/032/032796.json diff --git a/source/flights/detail/032797.json b/source/flights/detail/032/032797.json similarity index 100% rename from source/flights/detail/032797.json rename to source/flights/detail/032/032797.json diff --git a/source/flights/detail/032798.json b/source/flights/detail/032/032798.json similarity index 100% rename from source/flights/detail/032798.json rename to source/flights/detail/032/032798.json diff --git a/source/flights/detail/032799.json b/source/flights/detail/032/032799.json similarity index 100% rename from source/flights/detail/032799.json rename to source/flights/detail/032/032799.json diff --git a/source/flights/detail/032805.json b/source/flights/detail/032/032805.json similarity index 100% rename from source/flights/detail/032805.json rename to source/flights/detail/032/032805.json diff --git a/source/flights/detail/032807.json b/source/flights/detail/032/032807.json similarity index 100% rename from source/flights/detail/032807.json rename to source/flights/detail/032/032807.json diff --git a/source/flights/detail/032809.json b/source/flights/detail/032/032809.json similarity index 100% rename from source/flights/detail/032809.json rename to source/flights/detail/032/032809.json diff --git a/source/flights/detail/032813.json b/source/flights/detail/032/032813.json similarity index 100% rename from source/flights/detail/032813.json rename to source/flights/detail/032/032813.json diff --git a/source/flights/detail/032814.json b/source/flights/detail/032/032814.json similarity index 100% rename from source/flights/detail/032814.json rename to source/flights/detail/032/032814.json diff --git a/source/flights/detail/032818.json b/source/flights/detail/032/032818.json similarity index 100% rename from source/flights/detail/032818.json rename to source/flights/detail/032/032818.json diff --git a/source/flights/detail/032819.json b/source/flights/detail/032/032819.json similarity index 100% rename from source/flights/detail/032819.json rename to source/flights/detail/032/032819.json diff --git a/source/flights/detail/032823.json b/source/flights/detail/032/032823.json similarity index 100% rename from source/flights/detail/032823.json rename to source/flights/detail/032/032823.json diff --git a/source/flights/detail/032826.json b/source/flights/detail/032/032826.json similarity index 100% rename from source/flights/detail/032826.json rename to source/flights/detail/032/032826.json diff --git a/source/flights/detail/032827.json b/source/flights/detail/032/032827.json similarity index 100% rename from source/flights/detail/032827.json rename to source/flights/detail/032/032827.json diff --git a/source/flights/detail/032843.json b/source/flights/detail/032/032843.json similarity index 100% rename from source/flights/detail/032843.json rename to source/flights/detail/032/032843.json diff --git a/source/flights/detail/032848.json b/source/flights/detail/032/032848.json similarity index 100% rename from source/flights/detail/032848.json rename to source/flights/detail/032/032848.json diff --git a/source/flights/detail/032853.json b/source/flights/detail/032/032853.json similarity index 100% rename from source/flights/detail/032853.json rename to source/flights/detail/032/032853.json diff --git a/source/flights/detail/032854.json b/source/flights/detail/032/032854.json similarity index 100% rename from source/flights/detail/032854.json rename to source/flights/detail/032/032854.json diff --git a/source/flights/detail/032856.json b/source/flights/detail/032/032856.json similarity index 100% rename from source/flights/detail/032856.json rename to source/flights/detail/032/032856.json diff --git a/source/flights/detail/032861.json b/source/flights/detail/032/032861.json similarity index 100% rename from source/flights/detail/032861.json rename to source/flights/detail/032/032861.json diff --git a/source/flights/detail/032863.json b/source/flights/detail/032/032863.json similarity index 100% rename from source/flights/detail/032863.json rename to source/flights/detail/032/032863.json diff --git a/source/flights/detail/032865.json b/source/flights/detail/032/032865.json similarity index 100% rename from source/flights/detail/032865.json rename to source/flights/detail/032/032865.json diff --git a/source/flights/detail/032870.json b/source/flights/detail/032/032870.json similarity index 100% rename from source/flights/detail/032870.json rename to source/flights/detail/032/032870.json diff --git a/source/flights/detail/032871.json b/source/flights/detail/032/032871.json similarity index 100% rename from source/flights/detail/032871.json rename to source/flights/detail/032/032871.json diff --git a/source/flights/detail/032872.json b/source/flights/detail/032/032872.json similarity index 100% rename from source/flights/detail/032872.json rename to source/flights/detail/032/032872.json diff --git a/source/flights/detail/032878.json b/source/flights/detail/032/032878.json similarity index 100% rename from source/flights/detail/032878.json rename to source/flights/detail/032/032878.json diff --git a/source/flights/detail/032879.json b/source/flights/detail/032/032879.json similarity index 100% rename from source/flights/detail/032879.json rename to source/flights/detail/032/032879.json diff --git a/source/flights/detail/032882.json b/source/flights/detail/032/032882.json similarity index 100% rename from source/flights/detail/032882.json rename to source/flights/detail/032/032882.json diff --git a/source/flights/detail/032891.json b/source/flights/detail/032/032891.json similarity index 100% rename from source/flights/detail/032891.json rename to source/flights/detail/032/032891.json diff --git a/source/flights/detail/032892.json b/source/flights/detail/032/032892.json similarity index 100% rename from source/flights/detail/032892.json rename to source/flights/detail/032/032892.json diff --git a/source/flights/detail/032893.json b/source/flights/detail/032/032893.json similarity index 100% rename from source/flights/detail/032893.json rename to source/flights/detail/032/032893.json diff --git a/source/flights/detail/032897.json b/source/flights/detail/032/032897.json similarity index 100% rename from source/flights/detail/032897.json rename to source/flights/detail/032/032897.json diff --git a/source/flights/detail/032902.json b/source/flights/detail/032/032902.json similarity index 100% rename from source/flights/detail/032902.json rename to source/flights/detail/032/032902.json diff --git a/source/flights/detail/032905.json b/source/flights/detail/032/032905.json similarity index 100% rename from source/flights/detail/032905.json rename to source/flights/detail/032/032905.json diff --git a/source/flights/detail/032909.json b/source/flights/detail/032/032909.json similarity index 100% rename from source/flights/detail/032909.json rename to source/flights/detail/032/032909.json diff --git a/source/flights/detail/032910.json b/source/flights/detail/032/032910.json similarity index 100% rename from source/flights/detail/032910.json rename to source/flights/detail/032/032910.json diff --git a/source/flights/detail/032911.json b/source/flights/detail/032/032911.json similarity index 100% rename from source/flights/detail/032911.json rename to source/flights/detail/032/032911.json diff --git a/source/flights/detail/032912.json b/source/flights/detail/032/032912.json similarity index 100% rename from source/flights/detail/032912.json rename to source/flights/detail/032/032912.json diff --git a/source/flights/detail/032915.json b/source/flights/detail/032/032915.json similarity index 100% rename from source/flights/detail/032915.json rename to source/flights/detail/032/032915.json diff --git a/source/flights/detail/032916.json b/source/flights/detail/032/032916.json similarity index 100% rename from source/flights/detail/032916.json rename to source/flights/detail/032/032916.json diff --git a/source/flights/detail/032917.json b/source/flights/detail/032/032917.json similarity index 100% rename from source/flights/detail/032917.json rename to source/flights/detail/032/032917.json diff --git a/source/flights/detail/032921.json b/source/flights/detail/032/032921.json similarity index 100% rename from source/flights/detail/032921.json rename to source/flights/detail/032/032921.json diff --git a/source/flights/detail/032922.json b/source/flights/detail/032/032922.json similarity index 100% rename from source/flights/detail/032922.json rename to source/flights/detail/032/032922.json diff --git a/source/flights/detail/032923.json b/source/flights/detail/032/032923.json similarity index 100% rename from source/flights/detail/032923.json rename to source/flights/detail/032/032923.json diff --git a/source/flights/detail/032927.json b/source/flights/detail/032/032927.json similarity index 100% rename from source/flights/detail/032927.json rename to source/flights/detail/032/032927.json diff --git a/source/flights/detail/032932.json b/source/flights/detail/032/032932.json similarity index 100% rename from source/flights/detail/032932.json rename to source/flights/detail/032/032932.json diff --git a/source/flights/detail/032936.json b/source/flights/detail/032/032936.json similarity index 100% rename from source/flights/detail/032936.json rename to source/flights/detail/032/032936.json diff --git a/source/flights/detail/032940.json b/source/flights/detail/032/032940.json similarity index 100% rename from source/flights/detail/032940.json rename to source/flights/detail/032/032940.json diff --git a/source/flights/detail/032941.json b/source/flights/detail/032/032941.json similarity index 100% rename from source/flights/detail/032941.json rename to source/flights/detail/032/032941.json diff --git a/source/flights/detail/032967.json b/source/flights/detail/032/032967.json similarity index 100% rename from source/flights/detail/032967.json rename to source/flights/detail/032/032967.json diff --git a/source/flights/detail/032968.json b/source/flights/detail/032/032968.json similarity index 100% rename from source/flights/detail/032968.json rename to source/flights/detail/032/032968.json diff --git a/source/flights/detail/032969.json b/source/flights/detail/032/032969.json similarity index 100% rename from source/flights/detail/032969.json rename to source/flights/detail/032/032969.json diff --git a/source/flights/detail/032970.json b/source/flights/detail/032/032970.json similarity index 100% rename from source/flights/detail/032970.json rename to source/flights/detail/032/032970.json diff --git a/source/flights/detail/032973.json b/source/flights/detail/032/032973.json similarity index 100% rename from source/flights/detail/032973.json rename to source/flights/detail/032/032973.json diff --git a/source/flights/detail/032976.json b/source/flights/detail/032/032976.json similarity index 100% rename from source/flights/detail/032976.json rename to source/flights/detail/032/032976.json diff --git a/source/flights/detail/032977.json b/source/flights/detail/032/032977.json similarity index 100% rename from source/flights/detail/032977.json rename to source/flights/detail/032/032977.json diff --git a/source/flights/detail/032978.json b/source/flights/detail/032/032978.json similarity index 100% rename from source/flights/detail/032978.json rename to source/flights/detail/032/032978.json diff --git a/source/flights/detail/032979.json b/source/flights/detail/032/032979.json similarity index 100% rename from source/flights/detail/032979.json rename to source/flights/detail/032/032979.json diff --git a/source/flights/detail/032984.json b/source/flights/detail/032/032984.json similarity index 100% rename from source/flights/detail/032984.json rename to source/flights/detail/032/032984.json diff --git a/source/flights/detail/033008.json b/source/flights/detail/033/033008.json similarity index 100% rename from source/flights/detail/033008.json rename to source/flights/detail/033/033008.json diff --git a/source/flights/detail/033011.json b/source/flights/detail/033/033011.json similarity index 100% rename from source/flights/detail/033011.json rename to source/flights/detail/033/033011.json diff --git a/source/flights/detail/033013.json b/source/flights/detail/033/033013.json similarity index 100% rename from source/flights/detail/033013.json rename to source/flights/detail/033/033013.json diff --git a/source/flights/detail/033030.json b/source/flights/detail/033/033030.json similarity index 100% rename from source/flights/detail/033030.json rename to source/flights/detail/033/033030.json diff --git a/source/flights/detail/033085.json b/source/flights/detail/033/033085.json similarity index 100% rename from source/flights/detail/033085.json rename to source/flights/detail/033/033085.json diff --git a/source/flights/detail/033086.json b/source/flights/detail/033/033086.json similarity index 100% rename from source/flights/detail/033086.json rename to source/flights/detail/033/033086.json diff --git a/source/flights/detail/033089.json b/source/flights/detail/033/033089.json similarity index 100% rename from source/flights/detail/033089.json rename to source/flights/detail/033/033089.json diff --git a/source/flights/detail/033096.json b/source/flights/detail/033/033096.json similarity index 100% rename from source/flights/detail/033096.json rename to source/flights/detail/033/033096.json diff --git a/source/flights/detail/033097.json b/source/flights/detail/033/033097.json similarity index 100% rename from source/flights/detail/033097.json rename to source/flights/detail/033/033097.json diff --git a/source/flights/detail/033103.json b/source/flights/detail/033/033103.json similarity index 100% rename from source/flights/detail/033103.json rename to source/flights/detail/033/033103.json diff --git a/source/flights/detail/033109.json b/source/flights/detail/033/033109.json similarity index 100% rename from source/flights/detail/033109.json rename to source/flights/detail/033/033109.json diff --git a/source/flights/detail/033110.json b/source/flights/detail/033/033110.json similarity index 100% rename from source/flights/detail/033110.json rename to source/flights/detail/033/033110.json diff --git a/source/flights/detail/033116.json b/source/flights/detail/033/033116.json similarity index 100% rename from source/flights/detail/033116.json rename to source/flights/detail/033/033116.json diff --git a/source/flights/detail/033123.json b/source/flights/detail/033/033123.json similarity index 100% rename from source/flights/detail/033123.json rename to source/flights/detail/033/033123.json diff --git a/source/flights/detail/033124.json b/source/flights/detail/033/033124.json similarity index 100% rename from source/flights/detail/033124.json rename to source/flights/detail/033/033124.json diff --git a/source/flights/detail/033125.json b/source/flights/detail/033/033125.json similarity index 100% rename from source/flights/detail/033125.json rename to source/flights/detail/033/033125.json diff --git a/source/flights/detail/033126.json b/source/flights/detail/033/033126.json similarity index 100% rename from source/flights/detail/033126.json rename to source/flights/detail/033/033126.json diff --git a/source/flights/detail/033127.json b/source/flights/detail/033/033127.json similarity index 100% rename from source/flights/detail/033127.json rename to source/flights/detail/033/033127.json diff --git a/source/flights/detail/033133.json b/source/flights/detail/033/033133.json similarity index 100% rename from source/flights/detail/033133.json rename to source/flights/detail/033/033133.json diff --git a/source/flights/detail/033134.json b/source/flights/detail/033/033134.json similarity index 100% rename from source/flights/detail/033134.json rename to source/flights/detail/033/033134.json diff --git a/source/flights/detail/033135.json b/source/flights/detail/033/033135.json similarity index 100% rename from source/flights/detail/033135.json rename to source/flights/detail/033/033135.json diff --git a/source/flights/detail/033138.json b/source/flights/detail/033/033138.json similarity index 100% rename from source/flights/detail/033138.json rename to source/flights/detail/033/033138.json diff --git a/source/flights/detail/033146.json b/source/flights/detail/033/033146.json similarity index 100% rename from source/flights/detail/033146.json rename to source/flights/detail/033/033146.json diff --git a/source/flights/detail/033147.json b/source/flights/detail/033/033147.json similarity index 100% rename from source/flights/detail/033147.json rename to source/flights/detail/033/033147.json diff --git a/source/flights/detail/033148.json b/source/flights/detail/033/033148.json similarity index 100% rename from source/flights/detail/033148.json rename to source/flights/detail/033/033148.json diff --git a/source/flights/detail/033154.json b/source/flights/detail/033/033154.json similarity index 100% rename from source/flights/detail/033154.json rename to source/flights/detail/033/033154.json diff --git a/source/flights/detail/033157.json b/source/flights/detail/033/033157.json similarity index 100% rename from source/flights/detail/033157.json rename to source/flights/detail/033/033157.json diff --git a/source/flights/detail/033198.json b/source/flights/detail/033/033198.json similarity index 100% rename from source/flights/detail/033198.json rename to source/flights/detail/033/033198.json diff --git a/source/flights/detail/033208.json b/source/flights/detail/033/033208.json similarity index 100% rename from source/flights/detail/033208.json rename to source/flights/detail/033/033208.json diff --git a/source/flights/detail/033227.json b/source/flights/detail/033/033227.json similarity index 100% rename from source/flights/detail/033227.json rename to source/flights/detail/033/033227.json diff --git a/source/flights/detail/033236.json b/source/flights/detail/033/033236.json similarity index 100% rename from source/flights/detail/033236.json rename to source/flights/detail/033/033236.json diff --git a/source/flights/detail/033237.json b/source/flights/detail/033/033237.json similarity index 100% rename from source/flights/detail/033237.json rename to source/flights/detail/033/033237.json diff --git a/source/flights/detail/033264.json b/source/flights/detail/033/033264.json similarity index 100% rename from source/flights/detail/033264.json rename to source/flights/detail/033/033264.json diff --git a/source/flights/detail/033266.json b/source/flights/detail/033/033266.json similarity index 100% rename from source/flights/detail/033266.json rename to source/flights/detail/033/033266.json diff --git a/source/flights/detail/033267.json b/source/flights/detail/033/033267.json similarity index 100% rename from source/flights/detail/033267.json rename to source/flights/detail/033/033267.json diff --git a/source/flights/detail/033305.json b/source/flights/detail/033/033305.json similarity index 100% rename from source/flights/detail/033305.json rename to source/flights/detail/033/033305.json diff --git a/source/flights/detail/033307.json b/source/flights/detail/033/033307.json similarity index 100% rename from source/flights/detail/033307.json rename to source/flights/detail/033/033307.json diff --git a/source/flights/detail/033308.json b/source/flights/detail/033/033308.json similarity index 100% rename from source/flights/detail/033308.json rename to source/flights/detail/033/033308.json diff --git a/source/flights/detail/033309.json b/source/flights/detail/033/033309.json similarity index 100% rename from source/flights/detail/033309.json rename to source/flights/detail/033/033309.json diff --git a/source/flights/detail/033310.json b/source/flights/detail/033/033310.json similarity index 100% rename from source/flights/detail/033310.json rename to source/flights/detail/033/033310.json diff --git a/source/flights/detail/033312.json b/source/flights/detail/033/033312.json similarity index 100% rename from source/flights/detail/033312.json rename to source/flights/detail/033/033312.json diff --git a/source/flights/detail/033313.json b/source/flights/detail/033/033313.json similarity index 100% rename from source/flights/detail/033313.json rename to source/flights/detail/033/033313.json diff --git a/source/flights/detail/033316.json b/source/flights/detail/033/033316.json similarity index 100% rename from source/flights/detail/033316.json rename to source/flights/detail/033/033316.json diff --git a/source/flights/detail/033319.json b/source/flights/detail/033/033319.json similarity index 100% rename from source/flights/detail/033319.json rename to source/flights/detail/033/033319.json diff --git a/source/flights/detail/033320.json b/source/flights/detail/033/033320.json similarity index 100% rename from source/flights/detail/033320.json rename to source/flights/detail/033/033320.json diff --git a/source/flights/detail/033322.json b/source/flights/detail/033/033322.json similarity index 100% rename from source/flights/detail/033322.json rename to source/flights/detail/033/033322.json diff --git a/source/flights/detail/033323.json b/source/flights/detail/033/033323.json similarity index 100% rename from source/flights/detail/033323.json rename to source/flights/detail/033/033323.json diff --git a/source/flights/detail/033324.json b/source/flights/detail/033/033324.json similarity index 100% rename from source/flights/detail/033324.json rename to source/flights/detail/033/033324.json diff --git a/source/flights/detail/033325.json b/source/flights/detail/033/033325.json similarity index 100% rename from source/flights/detail/033325.json rename to source/flights/detail/033/033325.json diff --git a/source/flights/detail/033326.json b/source/flights/detail/033/033326.json similarity index 100% rename from source/flights/detail/033326.json rename to source/flights/detail/033/033326.json diff --git a/source/flights/detail/033328.json b/source/flights/detail/033/033328.json similarity index 100% rename from source/flights/detail/033328.json rename to source/flights/detail/033/033328.json diff --git a/source/flights/detail/033329.json b/source/flights/detail/033/033329.json similarity index 100% rename from source/flights/detail/033329.json rename to source/flights/detail/033/033329.json diff --git a/source/flights/detail/033330.json b/source/flights/detail/033/033330.json similarity index 100% rename from source/flights/detail/033330.json rename to source/flights/detail/033/033330.json diff --git a/source/flights/detail/033331.json b/source/flights/detail/033/033331.json similarity index 100% rename from source/flights/detail/033331.json rename to source/flights/detail/033/033331.json diff --git a/source/flights/detail/033332.json b/source/flights/detail/033/033332.json similarity index 100% rename from source/flights/detail/033332.json rename to source/flights/detail/033/033332.json diff --git a/source/flights/detail/033333.json b/source/flights/detail/033/033333.json similarity index 100% rename from source/flights/detail/033333.json rename to source/flights/detail/033/033333.json diff --git a/source/flights/detail/033336.json b/source/flights/detail/033/033336.json similarity index 100% rename from source/flights/detail/033336.json rename to source/flights/detail/033/033336.json diff --git a/source/flights/detail/033337.json b/source/flights/detail/033/033337.json similarity index 100% rename from source/flights/detail/033337.json rename to source/flights/detail/033/033337.json diff --git a/source/flights/detail/033338.json b/source/flights/detail/033/033338.json similarity index 100% rename from source/flights/detail/033338.json rename to source/flights/detail/033/033338.json diff --git a/source/flights/detail/033339.json b/source/flights/detail/033/033339.json similarity index 100% rename from source/flights/detail/033339.json rename to source/flights/detail/033/033339.json diff --git a/source/flights/detail/033340.json b/source/flights/detail/033/033340.json similarity index 100% rename from source/flights/detail/033340.json rename to source/flights/detail/033/033340.json diff --git a/source/flights/detail/033343.json b/source/flights/detail/033/033343.json similarity index 100% rename from source/flights/detail/033343.json rename to source/flights/detail/033/033343.json diff --git a/source/flights/detail/033347.json b/source/flights/detail/033/033347.json similarity index 100% rename from source/flights/detail/033347.json rename to source/flights/detail/033/033347.json diff --git a/source/flights/detail/033348.json b/source/flights/detail/033/033348.json similarity index 100% rename from source/flights/detail/033348.json rename to source/flights/detail/033/033348.json diff --git a/source/flights/detail/033349.json b/source/flights/detail/033/033349.json similarity index 100% rename from source/flights/detail/033349.json rename to source/flights/detail/033/033349.json diff --git a/source/flights/detail/033350.json b/source/flights/detail/033/033350.json similarity index 100% rename from source/flights/detail/033350.json rename to source/flights/detail/033/033350.json diff --git a/source/flights/detail/033351.json b/source/flights/detail/033/033351.json similarity index 100% rename from source/flights/detail/033351.json rename to source/flights/detail/033/033351.json diff --git a/source/flights/detail/033355.json b/source/flights/detail/033/033355.json similarity index 100% rename from source/flights/detail/033355.json rename to source/flights/detail/033/033355.json diff --git a/source/flights/detail/033356.json b/source/flights/detail/033/033356.json similarity index 100% rename from source/flights/detail/033356.json rename to source/flights/detail/033/033356.json diff --git a/source/flights/detail/033357.json b/source/flights/detail/033/033357.json similarity index 100% rename from source/flights/detail/033357.json rename to source/flights/detail/033/033357.json diff --git a/source/flights/detail/033358.json b/source/flights/detail/033/033358.json similarity index 100% rename from source/flights/detail/033358.json rename to source/flights/detail/033/033358.json diff --git a/source/flights/detail/033359.json b/source/flights/detail/033/033359.json similarity index 100% rename from source/flights/detail/033359.json rename to source/flights/detail/033/033359.json diff --git a/source/flights/detail/033360.json b/source/flights/detail/033/033360.json similarity index 100% rename from source/flights/detail/033360.json rename to source/flights/detail/033/033360.json diff --git a/source/flights/detail/033361.json b/source/flights/detail/033/033361.json similarity index 100% rename from source/flights/detail/033361.json rename to source/flights/detail/033/033361.json diff --git a/source/flights/detail/033379.json b/source/flights/detail/033/033379.json similarity index 100% rename from source/flights/detail/033379.json rename to source/flights/detail/033/033379.json diff --git a/source/flights/detail/033386.json b/source/flights/detail/033/033386.json similarity index 100% rename from source/flights/detail/033386.json rename to source/flights/detail/033/033386.json diff --git a/source/flights/detail/033387.json b/source/flights/detail/033/033387.json similarity index 100% rename from source/flights/detail/033387.json rename to source/flights/detail/033/033387.json diff --git a/source/flights/detail/033409.json b/source/flights/detail/033/033409.json similarity index 100% rename from source/flights/detail/033409.json rename to source/flights/detail/033/033409.json diff --git a/source/flights/detail/033410.json b/source/flights/detail/033/033410.json similarity index 100% rename from source/flights/detail/033410.json rename to source/flights/detail/033/033410.json diff --git a/source/flights/detail/033413.json b/source/flights/detail/033/033413.json similarity index 100% rename from source/flights/detail/033413.json rename to source/flights/detail/033/033413.json diff --git a/source/flights/detail/033418.json b/source/flights/detail/033/033418.json similarity index 100% rename from source/flights/detail/033418.json rename to source/flights/detail/033/033418.json diff --git a/source/flights/detail/033422.json b/source/flights/detail/033/033422.json similarity index 100% rename from source/flights/detail/033422.json rename to source/flights/detail/033/033422.json diff --git a/source/flights/detail/033424.json b/source/flights/detail/033/033424.json similarity index 100% rename from source/flights/detail/033424.json rename to source/flights/detail/033/033424.json diff --git a/source/flights/detail/033531.json b/source/flights/detail/033/033531.json similarity index 100% rename from source/flights/detail/033531.json rename to source/flights/detail/033/033531.json diff --git a/source/flights/detail/033534.json b/source/flights/detail/033/033534.json similarity index 100% rename from source/flights/detail/033534.json rename to source/flights/detail/033/033534.json diff --git a/source/flights/detail/033536.json b/source/flights/detail/033/033536.json similarity index 100% rename from source/flights/detail/033536.json rename to source/flights/detail/033/033536.json diff --git a/source/flights/detail/033537.json b/source/flights/detail/033/033537.json similarity index 100% rename from source/flights/detail/033537.json rename to source/flights/detail/033/033537.json diff --git a/source/flights/detail/033538.json b/source/flights/detail/033/033538.json similarity index 100% rename from source/flights/detail/033538.json rename to source/flights/detail/033/033538.json diff --git a/source/flights/detail/033553.json b/source/flights/detail/033/033553.json similarity index 100% rename from source/flights/detail/033553.json rename to source/flights/detail/033/033553.json diff --git a/source/flights/detail/033556.json b/source/flights/detail/033/033556.json similarity index 100% rename from source/flights/detail/033556.json rename to source/flights/detail/033/033556.json diff --git a/source/flights/detail/033557.json b/source/flights/detail/033/033557.json similarity index 100% rename from source/flights/detail/033557.json rename to source/flights/detail/033/033557.json diff --git a/source/flights/detail/033558.json b/source/flights/detail/033/033558.json similarity index 100% rename from source/flights/detail/033558.json rename to source/flights/detail/033/033558.json diff --git a/source/flights/detail/033559.json b/source/flights/detail/033/033559.json similarity index 100% rename from source/flights/detail/033559.json rename to source/flights/detail/033/033559.json diff --git a/source/flights/detail/033571.json b/source/flights/detail/033/033571.json similarity index 100% rename from source/flights/detail/033571.json rename to source/flights/detail/033/033571.json diff --git a/source/flights/detail/033573.json b/source/flights/detail/033/033573.json similarity index 100% rename from source/flights/detail/033573.json rename to source/flights/detail/033/033573.json diff --git a/source/flights/detail/033580.json b/source/flights/detail/033/033580.json similarity index 100% rename from source/flights/detail/033580.json rename to source/flights/detail/033/033580.json diff --git a/source/flights/detail/033581.json b/source/flights/detail/033/033581.json similarity index 100% rename from source/flights/detail/033581.json rename to source/flights/detail/033/033581.json diff --git a/source/flights/detail/033582.json b/source/flights/detail/033/033582.json similarity index 100% rename from source/flights/detail/033582.json rename to source/flights/detail/033/033582.json diff --git a/source/flights/detail/033586.json b/source/flights/detail/033/033586.json similarity index 100% rename from source/flights/detail/033586.json rename to source/flights/detail/033/033586.json diff --git a/source/flights/detail/033620.json b/source/flights/detail/033/033620.json similarity index 100% rename from source/flights/detail/033620.json rename to source/flights/detail/033/033620.json diff --git a/source/flights/detail/033621.json b/source/flights/detail/033/033621.json similarity index 100% rename from source/flights/detail/033621.json rename to source/flights/detail/033/033621.json diff --git a/source/flights/detail/033622.json b/source/flights/detail/033/033622.json similarity index 100% rename from source/flights/detail/033622.json rename to source/flights/detail/033/033622.json diff --git a/source/flights/detail/033623.json b/source/flights/detail/033/033623.json similarity index 100% rename from source/flights/detail/033623.json rename to source/flights/detail/033/033623.json diff --git a/source/flights/detail/033633.json b/source/flights/detail/033/033633.json similarity index 100% rename from source/flights/detail/033633.json rename to source/flights/detail/033/033633.json diff --git a/source/flights/detail/033636.json b/source/flights/detail/033/033636.json similarity index 100% rename from source/flights/detail/033636.json rename to source/flights/detail/033/033636.json diff --git a/source/flights/detail/033640.json b/source/flights/detail/033/033640.json similarity index 100% rename from source/flights/detail/033640.json rename to source/flights/detail/033/033640.json diff --git a/source/flights/detail/033647.json b/source/flights/detail/033/033647.json similarity index 100% rename from source/flights/detail/033647.json rename to source/flights/detail/033/033647.json diff --git a/source/flights/detail/033649.json b/source/flights/detail/033/033649.json similarity index 100% rename from source/flights/detail/033649.json rename to source/flights/detail/033/033649.json diff --git a/source/flights/detail/033950.json b/source/flights/detail/033/033950.json similarity index 100% rename from source/flights/detail/033950.json rename to source/flights/detail/033/033950.json diff --git a/source/flights/detail/033953.json b/source/flights/detail/033/033953.json similarity index 100% rename from source/flights/detail/033953.json rename to source/flights/detail/033/033953.json diff --git a/source/flights/detail/033954.json b/source/flights/detail/033/033954.json similarity index 100% rename from source/flights/detail/033954.json rename to source/flights/detail/033/033954.json diff --git a/source/flights/detail/033980.json b/source/flights/detail/033/033980.json similarity index 100% rename from source/flights/detail/033980.json rename to source/flights/detail/033/033980.json diff --git a/source/flights/detail/033983.json b/source/flights/detail/033/033983.json similarity index 100% rename from source/flights/detail/033983.json rename to source/flights/detail/033/033983.json diff --git a/source/flights/detail/033984.json b/source/flights/detail/033/033984.json similarity index 100% rename from source/flights/detail/033984.json rename to source/flights/detail/033/033984.json diff --git a/source/flights/detail/033985.json b/source/flights/detail/033/033985.json similarity index 100% rename from source/flights/detail/033985.json rename to source/flights/detail/033/033985.json diff --git a/source/flights/detail/033986.json b/source/flights/detail/033/033986.json similarity index 100% rename from source/flights/detail/033986.json rename to source/flights/detail/033/033986.json diff --git a/source/flights/detail/033987.json b/source/flights/detail/033/033987.json similarity index 100% rename from source/flights/detail/033987.json rename to source/flights/detail/033/033987.json diff --git a/source/flights/detail/034121.json b/source/flights/detail/034/034121.json similarity index 100% rename from source/flights/detail/034121.json rename to source/flights/detail/034/034121.json diff --git a/source/flights/detail/034122.json b/source/flights/detail/034/034122.json similarity index 100% rename from source/flights/detail/034122.json rename to source/flights/detail/034/034122.json diff --git a/source/flights/detail/034123.json b/source/flights/detail/034/034123.json similarity index 100% rename from source/flights/detail/034123.json rename to source/flights/detail/034/034123.json diff --git a/source/flights/detail/034175.json b/source/flights/detail/034/034175.json similarity index 100% rename from source/flights/detail/034175.json rename to source/flights/detail/034/034175.json diff --git a/source/flights/detail/034176.json b/source/flights/detail/034/034176.json similarity index 100% rename from source/flights/detail/034176.json rename to source/flights/detail/034/034176.json diff --git a/source/flights/detail/034248.json b/source/flights/detail/034/034248.json similarity index 100% rename from source/flights/detail/034248.json rename to source/flights/detail/034/034248.json diff --git a/source/flights/detail/034249.json b/source/flights/detail/034/034249.json similarity index 100% rename from source/flights/detail/034249.json rename to source/flights/detail/034/034249.json diff --git a/source/flights/detail/034291.json b/source/flights/detail/034/034291.json similarity index 100% rename from source/flights/detail/034291.json rename to source/flights/detail/034/034291.json diff --git a/source/flights/detail/034292.json b/source/flights/detail/034/034292.json similarity index 100% rename from source/flights/detail/034292.json rename to source/flights/detail/034/034292.json diff --git a/source/flights/detail/034293.json b/source/flights/detail/034/034293.json similarity index 100% rename from source/flights/detail/034293.json rename to source/flights/detail/034/034293.json diff --git a/source/flights/detail/034294.json b/source/flights/detail/034/034294.json similarity index 100% rename from source/flights/detail/034294.json rename to source/flights/detail/034/034294.json diff --git a/source/flights/detail/034374.json b/source/flights/detail/034/034374.json similarity index 100% rename from source/flights/detail/034374.json rename to source/flights/detail/034/034374.json diff --git a/source/flights/detail/034375.json b/source/flights/detail/034/034375.json similarity index 100% rename from source/flights/detail/034375.json rename to source/flights/detail/034/034375.json diff --git a/source/flights/detail/034376.json b/source/flights/detail/034/034376.json similarity index 100% rename from source/flights/detail/034376.json rename to source/flights/detail/034/034376.json diff --git a/source/flights/detail/034377.json b/source/flights/detail/034/034377.json similarity index 100% rename from source/flights/detail/034377.json rename to source/flights/detail/034/034377.json diff --git a/source/flights/detail/034378.json b/source/flights/detail/034/034378.json similarity index 100% rename from source/flights/detail/034378.json rename to source/flights/detail/034/034378.json diff --git a/source/flights/detail/034379.json b/source/flights/detail/034/034379.json similarity index 100% rename from source/flights/detail/034379.json rename to source/flights/detail/034/034379.json diff --git a/source/flights/detail/034380.json b/source/flights/detail/034/034380.json similarity index 100% rename from source/flights/detail/034380.json rename to source/flights/detail/034/034380.json diff --git a/source/flights/detail/034381.json b/source/flights/detail/034/034381.json similarity index 100% rename from source/flights/detail/034381.json rename to source/flights/detail/034/034381.json diff --git a/source/flights/detail/034382.json b/source/flights/detail/034/034382.json similarity index 100% rename from source/flights/detail/034382.json rename to source/flights/detail/034/034382.json diff --git a/source/flights/detail/034403.json b/source/flights/detail/034/034403.json similarity index 100% rename from source/flights/detail/034403.json rename to source/flights/detail/034/034403.json diff --git a/source/flights/detail/034404.json b/source/flights/detail/034/034404.json similarity index 100% rename from source/flights/detail/034404.json rename to source/flights/detail/034/034404.json diff --git a/source/flights/detail/034406.json b/source/flights/detail/034/034406.json similarity index 100% rename from source/flights/detail/034406.json rename to source/flights/detail/034/034406.json diff --git a/source/flights/detail/034418.json b/source/flights/detail/034/034418.json similarity index 100% rename from source/flights/detail/034418.json rename to source/flights/detail/034/034418.json diff --git a/source/flights/detail/034419.json b/source/flights/detail/034/034419.json similarity index 100% rename from source/flights/detail/034419.json rename to source/flights/detail/034/034419.json diff --git a/source/flights/detail/034425.json b/source/flights/detail/034/034425.json similarity index 100% rename from source/flights/detail/034425.json rename to source/flights/detail/034/034425.json diff --git a/source/flights/detail/034426.json b/source/flights/detail/034/034426.json similarity index 100% rename from source/flights/detail/034426.json rename to source/flights/detail/034/034426.json diff --git a/source/flights/detail/034597.json b/source/flights/detail/034/034597.json similarity index 100% rename from source/flights/detail/034597.json rename to source/flights/detail/034/034597.json diff --git a/source/flights/detail/034600.json b/source/flights/detail/034/034600.json similarity index 100% rename from source/flights/detail/034600.json rename to source/flights/detail/034/034600.json diff --git a/source/flights/detail/034601.json b/source/flights/detail/034/034601.json similarity index 100% rename from source/flights/detail/034601.json rename to source/flights/detail/034/034601.json diff --git a/source/flights/detail/034602.json b/source/flights/detail/034/034602.json similarity index 100% rename from source/flights/detail/034602.json rename to source/flights/detail/034/034602.json diff --git a/source/flights/detail/034603.json b/source/flights/detail/034/034603.json similarity index 100% rename from source/flights/detail/034603.json rename to source/flights/detail/034/034603.json diff --git a/source/flights/detail/034604.json b/source/flights/detail/034/034604.json similarity index 100% rename from source/flights/detail/034604.json rename to source/flights/detail/034/034604.json diff --git a/source/flights/detail/034606.json b/source/flights/detail/034/034606.json similarity index 100% rename from source/flights/detail/034606.json rename to source/flights/detail/034/034606.json diff --git a/source/flights/detail/034607.json b/source/flights/detail/034/034607.json similarity index 100% rename from source/flights/detail/034607.json rename to source/flights/detail/034/034607.json diff --git a/source/flights/detail/034608.json b/source/flights/detail/034/034608.json similarity index 100% rename from source/flights/detail/034608.json rename to source/flights/detail/034/034608.json diff --git a/source/flights/detail/034609.json b/source/flights/detail/034/034609.json similarity index 100% rename from source/flights/detail/034609.json rename to source/flights/detail/034/034609.json diff --git a/source/flights/detail/034610.json b/source/flights/detail/034/034610.json similarity index 100% rename from source/flights/detail/034610.json rename to source/flights/detail/034/034610.json diff --git a/source/flights/detail/034611.json b/source/flights/detail/034/034611.json similarity index 100% rename from source/flights/detail/034611.json rename to source/flights/detail/034/034611.json diff --git a/source/flights/detail/034617.json b/source/flights/detail/034/034617.json similarity index 100% rename from source/flights/detail/034617.json rename to source/flights/detail/034/034617.json diff --git a/source/flights/detail/034649.json b/source/flights/detail/034/034649.json similarity index 100% rename from source/flights/detail/034649.json rename to source/flights/detail/034/034649.json diff --git a/source/flights/detail/034666.json b/source/flights/detail/034/034666.json similarity index 100% rename from source/flights/detail/034666.json rename to source/flights/detail/034/034666.json diff --git a/source/flights/detail/034667.json b/source/flights/detail/034/034667.json similarity index 100% rename from source/flights/detail/034667.json rename to source/flights/detail/034/034667.json diff --git a/source/flights/detail/034668.json b/source/flights/detail/034/034668.json similarity index 100% rename from source/flights/detail/034668.json rename to source/flights/detail/034/034668.json diff --git a/source/flights/detail/034825.json b/source/flights/detail/034/034825.json similarity index 100% rename from source/flights/detail/034825.json rename to source/flights/detail/034/034825.json diff --git a/source/flights/detail/034836.json b/source/flights/detail/034/034836.json similarity index 100% rename from source/flights/detail/034836.json rename to source/flights/detail/034/034836.json diff --git a/source/flights/detail/034837.json b/source/flights/detail/034/034837.json similarity index 100% rename from source/flights/detail/034837.json rename to source/flights/detail/034/034837.json diff --git a/source/flights/detail/034838.json b/source/flights/detail/034/034838.json similarity index 100% rename from source/flights/detail/034838.json rename to source/flights/detail/034/034838.json diff --git a/source/flights/detail/034839.json b/source/flights/detail/034/034839.json similarity index 100% rename from source/flights/detail/034839.json rename to source/flights/detail/034/034839.json diff --git a/source/flights/detail/034850.json b/source/flights/detail/034/034850.json similarity index 100% rename from source/flights/detail/034850.json rename to source/flights/detail/034/034850.json diff --git a/source/flights/detail/034860.json b/source/flights/detail/034/034860.json similarity index 100% rename from source/flights/detail/034860.json rename to source/flights/detail/034/034860.json diff --git a/source/flights/detail/034874.json b/source/flights/detail/034/034874.json similarity index 100% rename from source/flights/detail/034874.json rename to source/flights/detail/034/034874.json diff --git a/source/flights/detail/034894.json b/source/flights/detail/034/034894.json similarity index 100% rename from source/flights/detail/034894.json rename to source/flights/detail/034/034894.json diff --git a/source/flights/detail/034901.json b/source/flights/detail/034/034901.json similarity index 100% rename from source/flights/detail/034901.json rename to source/flights/detail/034/034901.json diff --git a/source/flights/detail/034902.json b/source/flights/detail/034/034902.json similarity index 100% rename from source/flights/detail/034902.json rename to source/flights/detail/034/034902.json diff --git a/source/flights/detail/034930.json b/source/flights/detail/034/034930.json similarity index 100% rename from source/flights/detail/034930.json rename to source/flights/detail/034/034930.json diff --git a/source/flights/detail/034931.json b/source/flights/detail/034/034931.json similarity index 100% rename from source/flights/detail/034931.json rename to source/flights/detail/034/034931.json diff --git a/source/flights/detail/034933.json b/source/flights/detail/034/034933.json similarity index 100% rename from source/flights/detail/034933.json rename to source/flights/detail/034/034933.json diff --git a/source/flights/detail/034934.json b/source/flights/detail/034/034934.json similarity index 100% rename from source/flights/detail/034934.json rename to source/flights/detail/034/034934.json diff --git a/source/flights/detail/034986.json b/source/flights/detail/034/034986.json similarity index 100% rename from source/flights/detail/034986.json rename to source/flights/detail/034/034986.json diff --git a/source/flights/detail/034987.json b/source/flights/detail/034/034987.json similarity index 100% rename from source/flights/detail/034987.json rename to source/flights/detail/034/034987.json diff --git a/source/flights/detail/034988.json b/source/flights/detail/034/034988.json similarity index 100% rename from source/flights/detail/034988.json rename to source/flights/detail/034/034988.json diff --git a/source/flights/detail/034989.json b/source/flights/detail/034/034989.json similarity index 100% rename from source/flights/detail/034989.json rename to source/flights/detail/034/034989.json diff --git a/source/flights/detail/035112.json b/source/flights/detail/035/035112.json similarity index 100% rename from source/flights/detail/035112.json rename to source/flights/detail/035/035112.json diff --git a/source/flights/detail/035113.json b/source/flights/detail/035/035113.json similarity index 100% rename from source/flights/detail/035113.json rename to source/flights/detail/035/035113.json diff --git a/source/flights/detail/035135.json b/source/flights/detail/035/035135.json similarity index 100% rename from source/flights/detail/035135.json rename to source/flights/detail/035/035135.json diff --git a/source/flights/detail/035136.json b/source/flights/detail/035/035136.json similarity index 100% rename from source/flights/detail/035136.json rename to source/flights/detail/035/035136.json diff --git a/source/flights/detail/035198.json b/source/flights/detail/035/035198.json similarity index 100% rename from source/flights/detail/035198.json rename to source/flights/detail/035/035198.json diff --git a/source/flights/detail/035199.json b/source/flights/detail/035/035199.json similarity index 100% rename from source/flights/detail/035199.json rename to source/flights/detail/035/035199.json diff --git a/source/flights/detail/035200.json b/source/flights/detail/035/035200.json similarity index 100% rename from source/flights/detail/035200.json rename to source/flights/detail/035/035200.json diff --git a/source/flights/detail/035207.json b/source/flights/detail/035/035207.json similarity index 100% rename from source/flights/detail/035207.json rename to source/flights/detail/035/035207.json diff --git a/source/flights/detail/035208.json b/source/flights/detail/035/035208.json similarity index 100% rename from source/flights/detail/035208.json rename to source/flights/detail/035/035208.json diff --git a/source/flights/detail/035209.json b/source/flights/detail/035/035209.json similarity index 100% rename from source/flights/detail/035209.json rename to source/flights/detail/035/035209.json diff --git a/source/flights/detail/035210.json b/source/flights/detail/035/035210.json similarity index 100% rename from source/flights/detail/035210.json rename to source/flights/detail/035/035210.json diff --git a/source/flights/detail/035211.json b/source/flights/detail/035/035211.json similarity index 100% rename from source/flights/detail/035211.json rename to source/flights/detail/035/035211.json diff --git a/source/flights/detail/035212.json b/source/flights/detail/035/035212.json similarity index 100% rename from source/flights/detail/035212.json rename to source/flights/detail/035/035212.json diff --git a/source/flights/detail/035213.json b/source/flights/detail/035/035213.json similarity index 100% rename from source/flights/detail/035213.json rename to source/flights/detail/035/035213.json diff --git a/source/flights/detail/035277.json b/source/flights/detail/035/035277.json similarity index 100% rename from source/flights/detail/035277.json rename to source/flights/detail/035/035277.json diff --git a/source/flights/detail/035278.json b/source/flights/detail/035/035278.json similarity index 100% rename from source/flights/detail/035278.json rename to source/flights/detail/035/035278.json diff --git a/source/flights/detail/035279.json b/source/flights/detail/035/035279.json similarity index 100% rename from source/flights/detail/035279.json rename to source/flights/detail/035/035279.json diff --git a/source/flights/detail/035280.json b/source/flights/detail/035/035280.json similarity index 100% rename from source/flights/detail/035280.json rename to source/flights/detail/035/035280.json diff --git a/source/flights/detail/035281.json b/source/flights/detail/035/035281.json similarity index 100% rename from source/flights/detail/035281.json rename to source/flights/detail/035/035281.json diff --git a/source/flights/detail/035284.json b/source/flights/detail/035/035284.json similarity index 100% rename from source/flights/detail/035284.json rename to source/flights/detail/035/035284.json diff --git a/source/flights/detail/035285.json b/source/flights/detail/035/035285.json similarity index 100% rename from source/flights/detail/035285.json rename to source/flights/detail/035/035285.json diff --git a/source/flights/detail/035317.json b/source/flights/detail/035/035317.json similarity index 100% rename from source/flights/detail/035317.json rename to source/flights/detail/035/035317.json diff --git a/source/flights/detail/035318.json b/source/flights/detail/035/035318.json similarity index 100% rename from source/flights/detail/035318.json rename to source/flights/detail/035/035318.json diff --git a/source/flights/detail/035321.json b/source/flights/detail/035/035321.json similarity index 100% rename from source/flights/detail/035321.json rename to source/flights/detail/035/035321.json diff --git a/source/flights/detail/035387.json b/source/flights/detail/035/035387.json similarity index 100% rename from source/flights/detail/035387.json rename to source/flights/detail/035/035387.json diff --git a/source/flights/detail/035388.json b/source/flights/detail/035/035388.json similarity index 100% rename from source/flights/detail/035388.json rename to source/flights/detail/035/035388.json diff --git a/source/flights/detail/035389.json b/source/flights/detail/035/035389.json similarity index 100% rename from source/flights/detail/035389.json rename to source/flights/detail/035/035389.json diff --git a/source/flights/detail/035397.json b/source/flights/detail/035/035397.json similarity index 100% rename from source/flights/detail/035397.json rename to source/flights/detail/035/035397.json diff --git a/source/flights/detail/035398.json b/source/flights/detail/035/035398.json similarity index 100% rename from source/flights/detail/035398.json rename to source/flights/detail/035/035398.json diff --git a/source/flights/detail/035399.json b/source/flights/detail/035/035399.json similarity index 100% rename from source/flights/detail/035399.json rename to source/flights/detail/035/035399.json diff --git a/source/flights/detail/035400.json b/source/flights/detail/035/035400.json similarity index 100% rename from source/flights/detail/035400.json rename to source/flights/detail/035/035400.json diff --git a/source/flights/detail/035401.json b/source/flights/detail/035/035401.json similarity index 100% rename from source/flights/detail/035401.json rename to source/flights/detail/035/035401.json diff --git a/source/flights/detail/035412.json b/source/flights/detail/035/035412.json similarity index 100% rename from source/flights/detail/035412.json rename to source/flights/detail/035/035412.json diff --git a/source/flights/detail/035441.json b/source/flights/detail/035/035441.json similarity index 100% rename from source/flights/detail/035441.json rename to source/flights/detail/035/035441.json diff --git a/source/flights/detail/035454.json b/source/flights/detail/035/035454.json similarity index 100% rename from source/flights/detail/035454.json rename to source/flights/detail/035/035454.json diff --git a/source/flights/detail/035469.json b/source/flights/detail/035/035469.json similarity index 100% rename from source/flights/detail/035469.json rename to source/flights/detail/035/035469.json diff --git a/source/flights/detail/035508.json b/source/flights/detail/035/035508.json similarity index 100% rename from source/flights/detail/035508.json rename to source/flights/detail/035/035508.json diff --git a/source/flights/detail/035569.json b/source/flights/detail/035/035569.json similarity index 100% rename from source/flights/detail/035569.json rename to source/flights/detail/035/035569.json diff --git a/source/flights/detail/035702.json b/source/flights/detail/035/035702.json similarity index 100% rename from source/flights/detail/035702.json rename to source/flights/detail/035/035702.json diff --git a/source/flights/detail/035730.json b/source/flights/detail/035/035730.json similarity index 100% rename from source/flights/detail/035730.json rename to source/flights/detail/035/035730.json diff --git a/source/flights/detail/035800.json b/source/flights/detail/035/035800.json similarity index 100% rename from source/flights/detail/035800.json rename to source/flights/detail/035/035800.json diff --git a/source/flights/detail/035801.json b/source/flights/detail/035/035801.json similarity index 100% rename from source/flights/detail/035801.json rename to source/flights/detail/035/035801.json diff --git a/source/flights/detail/035802.json b/source/flights/detail/035/035802.json similarity index 100% rename from source/flights/detail/035802.json rename to source/flights/detail/035/035802.json diff --git a/source/flights/detail/035814.json b/source/flights/detail/035/035814.json similarity index 100% rename from source/flights/detail/035814.json rename to source/flights/detail/035/035814.json diff --git a/source/flights/detail/035878.json b/source/flights/detail/035/035878.json similarity index 100% rename from source/flights/detail/035878.json rename to source/flights/detail/035/035878.json diff --git a/source/flights/detail/035879.json b/source/flights/detail/035/035879.json similarity index 100% rename from source/flights/detail/035879.json rename to source/flights/detail/035/035879.json diff --git a/source/flights/detail/035880.json b/source/flights/detail/035/035880.json similarity index 100% rename from source/flights/detail/035880.json rename to source/flights/detail/035/035880.json diff --git a/source/flights/detail/035890.json b/source/flights/detail/035/035890.json similarity index 100% rename from source/flights/detail/035890.json rename to source/flights/detail/035/035890.json diff --git a/source/flights/detail/035891.json b/source/flights/detail/035/035891.json similarity index 100% rename from source/flights/detail/035891.json rename to source/flights/detail/035/035891.json diff --git a/source/flights/detail/035894.json b/source/flights/detail/035/035894.json similarity index 100% rename from source/flights/detail/035894.json rename to source/flights/detail/035/035894.json diff --git a/source/flights/detail/035895.json b/source/flights/detail/035/035895.json similarity index 100% rename from source/flights/detail/035895.json rename to source/flights/detail/035/035895.json diff --git a/source/flights/detail/035900.json b/source/flights/detail/035/035900.json similarity index 100% rename from source/flights/detail/035900.json rename to source/flights/detail/035/035900.json diff --git a/source/flights/detail/035909.json b/source/flights/detail/035/035909.json similarity index 100% rename from source/flights/detail/035909.json rename to source/flights/detail/035/035909.json diff --git a/source/flights/detail/035950.json b/source/flights/detail/035/035950.json similarity index 100% rename from source/flights/detail/035950.json rename to source/flights/detail/035/035950.json diff --git a/source/flights/detail/035951.json b/source/flights/detail/035/035951.json similarity index 100% rename from source/flights/detail/035951.json rename to source/flights/detail/035/035951.json diff --git a/source/flights/detail/035952.json b/source/flights/detail/035/035952.json similarity index 100% rename from source/flights/detail/035952.json rename to source/flights/detail/035/035952.json diff --git a/source/flights/detail/035955.json b/source/flights/detail/035/035955.json similarity index 100% rename from source/flights/detail/035955.json rename to source/flights/detail/035/035955.json diff --git a/source/flights/detail/035956.json b/source/flights/detail/035/035956.json similarity index 100% rename from source/flights/detail/035956.json rename to source/flights/detail/035/035956.json diff --git a/source/flights/detail/035957.json b/source/flights/detail/035/035957.json similarity index 100% rename from source/flights/detail/035957.json rename to source/flights/detail/035/035957.json diff --git a/source/flights/detail/035958.json b/source/flights/detail/035/035958.json similarity index 100% rename from source/flights/detail/035958.json rename to source/flights/detail/035/035958.json diff --git a/source/flights/detail/035959.json b/source/flights/detail/035/035959.json similarity index 100% rename from source/flights/detail/035959.json rename to source/flights/detail/035/035959.json diff --git a/source/flights/detail/036053.json b/source/flights/detail/036/036053.json similarity index 100% rename from source/flights/detail/036053.json rename to source/flights/detail/036/036053.json diff --git a/source/flights/detail/036054.json b/source/flights/detail/036/036054.json similarity index 100% rename from source/flights/detail/036054.json rename to source/flights/detail/036/036054.json diff --git a/source/flights/detail/036055.json b/source/flights/detail/036/036055.json similarity index 100% rename from source/flights/detail/036055.json rename to source/flights/detail/036/036055.json diff --git a/source/flights/detail/036056.json b/source/flights/detail/036/036056.json similarity index 100% rename from source/flights/detail/036056.json rename to source/flights/detail/036/036056.json diff --git a/source/flights/detail/036216.json b/source/flights/detail/036/036216.json similarity index 100% rename from source/flights/detail/036216.json rename to source/flights/detail/036/036216.json diff --git a/source/flights/detail/036217.json b/source/flights/detail/036/036217.json similarity index 100% rename from source/flights/detail/036217.json rename to source/flights/detail/036/036217.json diff --git a/source/flights/detail/036229.json b/source/flights/detail/036/036229.json similarity index 100% rename from source/flights/detail/036229.json rename to source/flights/detail/036/036229.json diff --git a/source/flights/detail/036230.json b/source/flights/detail/036/036230.json similarity index 100% rename from source/flights/detail/036230.json rename to source/flights/detail/036/036230.json diff --git a/source/flights/detail/036232.json b/source/flights/detail/036/036232.json similarity index 100% rename from source/flights/detail/036232.json rename to source/flights/detail/036/036232.json diff --git a/source/flights/detail/036233.json b/source/flights/detail/036/036233.json similarity index 100% rename from source/flights/detail/036233.json rename to source/flights/detail/036/036233.json diff --git a/source/flights/detail/036234.json b/source/flights/detail/036/036234.json similarity index 100% rename from source/flights/detail/036234.json rename to source/flights/detail/036/036234.json diff --git a/source/flights/detail/036236.json b/source/flights/detail/036/036236.json similarity index 100% rename from source/flights/detail/036236.json rename to source/flights/detail/036/036236.json diff --git a/source/flights/detail/036250.json b/source/flights/detail/036/036250.json similarity index 100% rename from source/flights/detail/036250.json rename to source/flights/detail/036/036250.json diff --git a/source/flights/detail/036259.json b/source/flights/detail/036/036259.json similarity index 100% rename from source/flights/detail/036259.json rename to source/flights/detail/036/036259.json diff --git a/source/flights/detail/036260.json b/source/flights/detail/036/036260.json similarity index 100% rename from source/flights/detail/036260.json rename to source/flights/detail/036/036260.json diff --git a/source/flights/detail/036261.json b/source/flights/detail/036/036261.json similarity index 100% rename from source/flights/detail/036261.json rename to source/flights/detail/036/036261.json diff --git a/source/flights/detail/036265.json b/source/flights/detail/036/036265.json similarity index 100% rename from source/flights/detail/036265.json rename to source/flights/detail/036/036265.json diff --git a/source/flights/detail/036299.json b/source/flights/detail/036/036299.json similarity index 100% rename from source/flights/detail/036299.json rename to source/flights/detail/036/036299.json diff --git a/source/flights/detail/036300.json b/source/flights/detail/036/036300.json similarity index 100% rename from source/flights/detail/036300.json rename to source/flights/detail/036/036300.json diff --git a/source/flights/detail/036301.json b/source/flights/detail/036/036301.json similarity index 100% rename from source/flights/detail/036301.json rename to source/flights/detail/036/036301.json diff --git a/source/flights/detail/036327.json b/source/flights/detail/036/036327.json similarity index 100% rename from source/flights/detail/036327.json rename to source/flights/detail/036/036327.json diff --git a/source/flights/detail/036347.json b/source/flights/detail/036/036347.json similarity index 100% rename from source/flights/detail/036347.json rename to source/flights/detail/036/036347.json diff --git a/source/flights/detail/036348.json b/source/flights/detail/036/036348.json similarity index 100% rename from source/flights/detail/036348.json rename to source/flights/detail/036/036348.json diff --git a/source/flights/detail/036387.json b/source/flights/detail/036/036387.json similarity index 100% rename from source/flights/detail/036387.json rename to source/flights/detail/036/036387.json diff --git a/source/flights/detail/038455.json b/source/flights/detail/038/038455.json similarity index 100% rename from source/flights/detail/038455.json rename to source/flights/detail/038/038455.json diff --git a/source/flights/detail/038457.json b/source/flights/detail/038/038457.json similarity index 100% rename from source/flights/detail/038457.json rename to source/flights/detail/038/038457.json diff --git a/source/flights/detail/038460.json b/source/flights/detail/038/038460.json similarity index 100% rename from source/flights/detail/038460.json rename to source/flights/detail/038/038460.json diff --git a/source/flights/detail/038466.json b/source/flights/detail/038/038466.json similarity index 100% rename from source/flights/detail/038466.json rename to source/flights/detail/038/038466.json diff --git a/source/flights/detail/038467.json b/source/flights/detail/038/038467.json similarity index 100% rename from source/flights/detail/038467.json rename to source/flights/detail/038/038467.json diff --git a/source/flights/detail/038470.json b/source/flights/detail/038/038470.json similarity index 100% rename from source/flights/detail/038470.json rename to source/flights/detail/038/038470.json diff --git a/source/flights/detail/038471.json b/source/flights/detail/038/038471.json similarity index 100% rename from source/flights/detail/038471.json rename to source/flights/detail/038/038471.json diff --git a/source/flights/detail/038478.json b/source/flights/detail/038/038478.json similarity index 100% rename from source/flights/detail/038478.json rename to source/flights/detail/038/038478.json diff --git a/source/flights/detail/038479.json b/source/flights/detail/038/038479.json similarity index 100% rename from source/flights/detail/038479.json rename to source/flights/detail/038/038479.json diff --git a/source/flights/detail/038483.json b/source/flights/detail/038/038483.json similarity index 100% rename from source/flights/detail/038483.json rename to source/flights/detail/038/038483.json diff --git a/source/flights/detail/038484.json b/source/flights/detail/038/038484.json similarity index 100% rename from source/flights/detail/038484.json rename to source/flights/detail/038/038484.json diff --git a/source/flights/detail/038487.json b/source/flights/detail/038/038487.json similarity index 100% rename from source/flights/detail/038487.json rename to source/flights/detail/038/038487.json diff --git a/source/flights/detail/038489.json b/source/flights/detail/038/038489.json similarity index 100% rename from source/flights/detail/038489.json rename to source/flights/detail/038/038489.json diff --git a/source/flights/detail/038545.json b/source/flights/detail/038/038545.json similarity index 100% rename from source/flights/detail/038545.json rename to source/flights/detail/038/038545.json diff --git a/source/flights/detail/038550.json b/source/flights/detail/038/038550.json similarity index 100% rename from source/flights/detail/038550.json rename to source/flights/detail/038/038550.json diff --git a/source/flights/detail/038585.json b/source/flights/detail/038/038585.json similarity index 100% rename from source/flights/detail/038585.json rename to source/flights/detail/038/038585.json diff --git a/source/flights/detail/038591.json b/source/flights/detail/038/038591.json similarity index 100% rename from source/flights/detail/038591.json rename to source/flights/detail/038/038591.json diff --git a/source/flights/detail/038593.json b/source/flights/detail/038/038593.json similarity index 100% rename from source/flights/detail/038593.json rename to source/flights/detail/038/038593.json diff --git a/source/flights/detail/038655.json b/source/flights/detail/038/038655.json similarity index 100% rename from source/flights/detail/038655.json rename to source/flights/detail/038/038655.json diff --git a/source/flights/detail/038678.json b/source/flights/detail/038/038678.json similarity index 100% rename from source/flights/detail/038678.json rename to source/flights/detail/038/038678.json diff --git a/source/flights/detail/038695.json b/source/flights/detail/038/038695.json similarity index 100% rename from source/flights/detail/038695.json rename to source/flights/detail/038/038695.json diff --git a/source/flights/detail/038696.json b/source/flights/detail/038/038696.json similarity index 100% rename from source/flights/detail/038696.json rename to source/flights/detail/038/038696.json diff --git a/source/flights/detail/038702.json b/source/flights/detail/038/038702.json similarity index 100% rename from source/flights/detail/038702.json rename to source/flights/detail/038/038702.json diff --git a/source/flights/detail/038704.json b/source/flights/detail/038/038704.json similarity index 100% rename from source/flights/detail/038704.json rename to source/flights/detail/038/038704.json diff --git a/source/flights/detail/038714.json b/source/flights/detail/038/038714.json similarity index 100% rename from source/flights/detail/038714.json rename to source/flights/detail/038/038714.json diff --git a/source/flights/detail/038738.json b/source/flights/detail/038/038738.json similarity index 100% rename from source/flights/detail/038738.json rename to source/flights/detail/038/038738.json diff --git a/source/flights/detail/038741.json b/source/flights/detail/038/038741.json similarity index 100% rename from source/flights/detail/038741.json rename to source/flights/detail/038/038741.json diff --git a/source/flights/detail/038771.json b/source/flights/detail/038/038771.json similarity index 100% rename from source/flights/detail/038771.json rename to source/flights/detail/038/038771.json diff --git a/source/flights/detail/038797.json b/source/flights/detail/038/038797.json similarity index 100% rename from source/flights/detail/038797.json rename to source/flights/detail/038/038797.json diff --git a/source/flights/detail/038799.json b/source/flights/detail/038/038799.json similarity index 100% rename from source/flights/detail/038799.json rename to source/flights/detail/038/038799.json diff --git a/source/flights/detail/038804.json b/source/flights/detail/038/038804.json similarity index 100% rename from source/flights/detail/038804.json rename to source/flights/detail/038/038804.json diff --git a/source/flights/detail/038805.json b/source/flights/detail/038/038805.json similarity index 100% rename from source/flights/detail/038805.json rename to source/flights/detail/038/038805.json diff --git a/source/flights/detail/038806.json b/source/flights/detail/038/038806.json similarity index 100% rename from source/flights/detail/038806.json rename to source/flights/detail/038/038806.json diff --git a/source/flights/detail/038807.json b/source/flights/detail/038/038807.json similarity index 100% rename from source/flights/detail/038807.json rename to source/flights/detail/038/038807.json diff --git a/source/flights/detail/038812.json b/source/flights/detail/038/038812.json similarity index 100% rename from source/flights/detail/038812.json rename to source/flights/detail/038/038812.json diff --git a/source/flights/detail/038815.json b/source/flights/detail/038/038815.json similarity index 100% rename from source/flights/detail/038815.json rename to source/flights/detail/038/038815.json diff --git a/source/flights/detail/038816.json b/source/flights/detail/038/038816.json similarity index 100% rename from source/flights/detail/038816.json rename to source/flights/detail/038/038816.json diff --git a/source/flights/detail/038818.json b/source/flights/detail/038/038818.json similarity index 100% rename from source/flights/detail/038818.json rename to source/flights/detail/038/038818.json diff --git a/source/flights/detail/038851.json b/source/flights/detail/038/038851.json similarity index 100% rename from source/flights/detail/038851.json rename to source/flights/detail/038/038851.json diff --git a/source/flights/detail/038874.json b/source/flights/detail/038/038874.json similarity index 100% rename from source/flights/detail/038874.json rename to source/flights/detail/038/038874.json diff --git a/source/flights/detail/038883.json b/source/flights/detail/038/038883.json similarity index 100% rename from source/flights/detail/038883.json rename to source/flights/detail/038/038883.json diff --git a/source/flights/detail/038884.json b/source/flights/detail/038/038884.json similarity index 100% rename from source/flights/detail/038884.json rename to source/flights/detail/038/038884.json diff --git a/source/flights/detail/038895.json b/source/flights/detail/038/038895.json similarity index 100% rename from source/flights/detail/038895.json rename to source/flights/detail/038/038895.json diff --git a/source/flights/detail/038928.json b/source/flights/detail/038/038928.json similarity index 100% rename from source/flights/detail/038928.json rename to source/flights/detail/038/038928.json diff --git a/source/flights/detail/038930.json b/source/flights/detail/038/038930.json similarity index 100% rename from source/flights/detail/038930.json rename to source/flights/detail/038/038930.json diff --git a/source/flights/detail/038954.json b/source/flights/detail/038/038954.json similarity index 100% rename from source/flights/detail/038954.json rename to source/flights/detail/038/038954.json diff --git a/source/flights/detail/038960.json b/source/flights/detail/038/038960.json similarity index 100% rename from source/flights/detail/038960.json rename to source/flights/detail/038/038960.json diff --git a/source/flights/detail/038967.json b/source/flights/detail/038/038967.json similarity index 100% rename from source/flights/detail/038967.json rename to source/flights/detail/038/038967.json diff --git a/source/flights/detail/038978.json b/source/flights/detail/038/038978.json similarity index 100% rename from source/flights/detail/038978.json rename to source/flights/detail/038/038978.json diff --git a/source/flights/detail/038980.json b/source/flights/detail/038/038980.json similarity index 100% rename from source/flights/detail/038980.json rename to source/flights/detail/038/038980.json diff --git a/source/flights/detail/038994.json b/source/flights/detail/038/038994.json similarity index 100% rename from source/flights/detail/038994.json rename to source/flights/detail/038/038994.json diff --git a/source/flights/detail/038996.json b/source/flights/detail/038/038996.json similarity index 100% rename from source/flights/detail/038996.json rename to source/flights/detail/038/038996.json diff --git a/source/flights/detail/039000.json b/source/flights/detail/039/039000.json similarity index 100% rename from source/flights/detail/039000.json rename to source/flights/detail/039/039000.json diff --git a/source/flights/detail/039009.json b/source/flights/detail/039/039009.json similarity index 100% rename from source/flights/detail/039009.json rename to source/flights/detail/039/039009.json diff --git a/source/flights/detail/039010.json b/source/flights/detail/039/039010.json similarity index 100% rename from source/flights/detail/039010.json rename to source/flights/detail/039/039010.json diff --git a/source/flights/detail/039012.json b/source/flights/detail/039/039012.json similarity index 100% rename from source/flights/detail/039012.json rename to source/flights/detail/039/039012.json diff --git a/source/flights/detail/039013.json b/source/flights/detail/039/039013.json similarity index 100% rename from source/flights/detail/039013.json rename to source/flights/detail/039/039013.json diff --git a/source/flights/detail/039014.json b/source/flights/detail/039/039014.json similarity index 100% rename from source/flights/detail/039014.json rename to source/flights/detail/039/039014.json diff --git a/source/flights/detail/039024.json b/source/flights/detail/039/039024.json similarity index 100% rename from source/flights/detail/039024.json rename to source/flights/detail/039/039024.json diff --git a/source/flights/detail/039034.json b/source/flights/detail/039/039034.json similarity index 100% rename from source/flights/detail/039034.json rename to source/flights/detail/039/039034.json diff --git a/source/flights/detail/039035.json b/source/flights/detail/039/039035.json similarity index 100% rename from source/flights/detail/039035.json rename to source/flights/detail/039/039035.json diff --git a/source/flights/detail/039039.json b/source/flights/detail/039/039039.json similarity index 100% rename from source/flights/detail/039039.json rename to source/flights/detail/039/039039.json diff --git a/source/flights/detail/039049.json b/source/flights/detail/039/039049.json similarity index 100% rename from source/flights/detail/039049.json rename to source/flights/detail/039/039049.json diff --git a/source/flights/detail/039050.json b/source/flights/detail/039/039050.json similarity index 100% rename from source/flights/detail/039050.json rename to source/flights/detail/039/039050.json diff --git a/source/flights/detail/039057.json b/source/flights/detail/039/039057.json similarity index 100% rename from source/flights/detail/039057.json rename to source/flights/detail/039/039057.json diff --git a/source/flights/detail/039058.json b/source/flights/detail/039/039058.json similarity index 100% rename from source/flights/detail/039058.json rename to source/flights/detail/039/039058.json diff --git a/source/flights/detail/039070.json b/source/flights/detail/039/039070.json similarity index 100% rename from source/flights/detail/039070.json rename to source/flights/detail/039/039070.json diff --git a/source/flights/detail/039083.json b/source/flights/detail/039/039083.json similarity index 100% rename from source/flights/detail/039083.json rename to source/flights/detail/039/039083.json diff --git a/source/flights/detail/039099.json b/source/flights/detail/039/039099.json similarity index 100% rename from source/flights/detail/039099.json rename to source/flights/detail/039/039099.json diff --git a/source/flights/detail/039104.json b/source/flights/detail/039/039104.json similarity index 100% rename from source/flights/detail/039104.json rename to source/flights/detail/039/039104.json diff --git a/source/flights/detail/039128.json b/source/flights/detail/039/039128.json similarity index 100% rename from source/flights/detail/039128.json rename to source/flights/detail/039/039128.json diff --git a/source/flights/detail/039137.json b/source/flights/detail/039/039137.json similarity index 100% rename from source/flights/detail/039137.json rename to source/flights/detail/039/039137.json diff --git a/source/flights/detail/039138.json b/source/flights/detail/039/039138.json similarity index 100% rename from source/flights/detail/039138.json rename to source/flights/detail/039/039138.json diff --git a/source/flights/detail/039139.json b/source/flights/detail/039/039139.json similarity index 100% rename from source/flights/detail/039139.json rename to source/flights/detail/039/039139.json diff --git a/source/flights/detail/039153.json b/source/flights/detail/039/039153.json similarity index 100% rename from source/flights/detail/039153.json rename to source/flights/detail/039/039153.json diff --git a/source/flights/detail/039154.json b/source/flights/detail/039/039154.json similarity index 100% rename from source/flights/detail/039154.json rename to source/flights/detail/039/039154.json diff --git a/source/flights/detail/039163.json b/source/flights/detail/039/039163.json similarity index 100% rename from source/flights/detail/039163.json rename to source/flights/detail/039/039163.json diff --git a/source/flights/detail/039178.json b/source/flights/detail/039/039178.json similarity index 100% rename from source/flights/detail/039178.json rename to source/flights/detail/039/039178.json diff --git a/source/flights/detail/039179.json b/source/flights/detail/039/039179.json similarity index 100% rename from source/flights/detail/039179.json rename to source/flights/detail/039/039179.json diff --git a/source/flights/detail/039180.json b/source/flights/detail/039/039180.json similarity index 100% rename from source/flights/detail/039180.json rename to source/flights/detail/039/039180.json diff --git a/source/flights/detail/039181.json b/source/flights/detail/039/039181.json similarity index 100% rename from source/flights/detail/039181.json rename to source/flights/detail/039/039181.json diff --git a/source/flights/detail/039185.json b/source/flights/detail/039/039185.json similarity index 100% rename from source/flights/detail/039185.json rename to source/flights/detail/039/039185.json diff --git a/source/flights/detail/039263.json b/source/flights/detail/039/039263.json similarity index 100% rename from source/flights/detail/039263.json rename to source/flights/detail/039/039263.json diff --git a/source/flights/detail/039267.json b/source/flights/detail/039/039267.json similarity index 100% rename from source/flights/detail/039267.json rename to source/flights/detail/039/039267.json diff --git a/source/flights/detail/039268.json b/source/flights/detail/039/039268.json similarity index 100% rename from source/flights/detail/039268.json rename to source/flights/detail/039/039268.json diff --git a/source/flights/detail/039308.json b/source/flights/detail/039/039308.json similarity index 100% rename from source/flights/detail/039308.json rename to source/flights/detail/039/039308.json diff --git a/source/flights/detail/041221.json b/source/flights/detail/041/041221.json similarity index 100% rename from source/flights/detail/041221.json rename to source/flights/detail/041/041221.json diff --git a/source/flights/detail/041236.json b/source/flights/detail/041/041236.json similarity index 100% rename from source/flights/detail/041236.json rename to source/flights/detail/041/041236.json diff --git a/source/flights/detail/041247.json b/source/flights/detail/041/041247.json similarity index 100% rename from source/flights/detail/041247.json rename to source/flights/detail/041/041247.json diff --git a/source/flights/detail/041259.json b/source/flights/detail/041/041259.json similarity index 100% rename from source/flights/detail/041259.json rename to source/flights/detail/041/041259.json diff --git a/source/flights/detail/041262.json b/source/flights/detail/041/041262.json similarity index 100% rename from source/flights/detail/041262.json rename to source/flights/detail/041/041262.json diff --git a/source/flights/detail/041282.json b/source/flights/detail/041/041282.json similarity index 100% rename from source/flights/detail/041282.json rename to source/flights/detail/041/041282.json diff --git a/source/flights/detail/041298.json b/source/flights/detail/041/041298.json similarity index 100% rename from source/flights/detail/041298.json rename to source/flights/detail/041/041298.json diff --git a/source/flights/detail/041301.json b/source/flights/detail/041/041301.json similarity index 100% rename from source/flights/detail/041301.json rename to source/flights/detail/041/041301.json diff --git a/source/flights/detail/041341.json b/source/flights/detail/041/041341.json similarity index 100% rename from source/flights/detail/041341.json rename to source/flights/detail/041/041341.json diff --git a/source/flights/detail/041342.json b/source/flights/detail/041/041342.json similarity index 100% rename from source/flights/detail/041342.json rename to source/flights/detail/041/041342.json diff --git a/source/flights/detail/041343.json b/source/flights/detail/041/041343.json similarity index 100% rename from source/flights/detail/041343.json rename to source/flights/detail/041/041343.json diff --git a/source/flights/detail/041344.json b/source/flights/detail/041/041344.json similarity index 100% rename from source/flights/detail/041344.json rename to source/flights/detail/041/041344.json diff --git a/source/flights/detail/041345.json b/source/flights/detail/041/041345.json similarity index 100% rename from source/flights/detail/041345.json rename to source/flights/detail/041/041345.json diff --git a/source/flights/detail/041354.json b/source/flights/detail/041/041354.json similarity index 100% rename from source/flights/detail/041354.json rename to source/flights/detail/041/041354.json diff --git a/source/flights/detail/041358.json b/source/flights/detail/041/041358.json similarity index 100% rename from source/flights/detail/041358.json rename to source/flights/detail/041/041358.json diff --git a/source/flights/detail/041362.json b/source/flights/detail/041/041362.json similarity index 100% rename from source/flights/detail/041362.json rename to source/flights/detail/041/041362.json diff --git a/source/flights/detail/041399.json b/source/flights/detail/041/041399.json similarity index 100% rename from source/flights/detail/041399.json rename to source/flights/detail/041/041399.json diff --git a/source/flights/detail/041424.json b/source/flights/detail/041/041424.json similarity index 100% rename from source/flights/detail/041424.json rename to source/flights/detail/041/041424.json diff --git a/source/flights/detail/041435.json b/source/flights/detail/041/041435.json similarity index 100% rename from source/flights/detail/041435.json rename to source/flights/detail/041/041435.json diff --git a/source/flights/detail/041436.json b/source/flights/detail/041/041436.json similarity index 100% rename from source/flights/detail/041436.json rename to source/flights/detail/041/041436.json diff --git a/source/flights/detail/041441.json b/source/flights/detail/041/041441.json similarity index 100% rename from source/flights/detail/041441.json rename to source/flights/detail/041/041441.json diff --git a/source/flights/detail/041474.json b/source/flights/detail/041/041474.json similarity index 100% rename from source/flights/detail/041474.json rename to source/flights/detail/041/041474.json diff --git a/source/flights/detail/041475.json b/source/flights/detail/041/041475.json similarity index 100% rename from source/flights/detail/041475.json rename to source/flights/detail/041/041475.json diff --git a/source/flights/detail/041476.json b/source/flights/detail/041/041476.json similarity index 100% rename from source/flights/detail/041476.json rename to source/flights/detail/041/041476.json diff --git a/source/flights/detail/041477.json b/source/flights/detail/041/041477.json similarity index 100% rename from source/flights/detail/041477.json rename to source/flights/detail/041/041477.json diff --git a/source/flights/detail/041536.json b/source/flights/detail/041/041536.json similarity index 100% rename from source/flights/detail/041536.json rename to source/flights/detail/041/041536.json diff --git a/source/flights/detail/041547.json b/source/flights/detail/041/041547.json similarity index 100% rename from source/flights/detail/041547.json rename to source/flights/detail/041/041547.json diff --git a/source/flights/detail/041593.json b/source/flights/detail/041/041593.json similarity index 100% rename from source/flights/detail/041593.json rename to source/flights/detail/041/041593.json diff --git a/source/flights/detail/041595.json b/source/flights/detail/041/041595.json similarity index 100% rename from source/flights/detail/041595.json rename to source/flights/detail/041/041595.json diff --git a/source/flights/detail/041799.json b/source/flights/detail/041/041799.json similarity index 100% rename from source/flights/detail/041799.json rename to source/flights/detail/041/041799.json diff --git a/source/flights/detail/041820.json b/source/flights/detail/041/041820.json similarity index 100% rename from source/flights/detail/041820.json rename to source/flights/detail/041/041820.json diff --git a/source/flights/detail/041869.json b/source/flights/detail/041/041869.json similarity index 100% rename from source/flights/detail/041869.json rename to source/flights/detail/041/041869.json diff --git a/source/flights/detail/042150.json b/source/flights/detail/042/042150.json similarity index 100% rename from source/flights/detail/042150.json rename to source/flights/detail/042/042150.json diff --git a/source/flights/detail/042202.json b/source/flights/detail/042/042202.json similarity index 100% rename from source/flights/detail/042202.json rename to source/flights/detail/042/042202.json diff --git a/source/flights/detail/043428.json b/source/flights/detail/043/043428.json similarity index 100% rename from source/flights/detail/043428.json rename to source/flights/detail/043/043428.json diff --git a/source/flights/detail/043447.json b/source/flights/detail/043/043447.json similarity index 100% rename from source/flights/detail/043447.json rename to source/flights/detail/043/043447.json diff --git a/source/flights/detail/043452.json b/source/flights/detail/043/043452.json similarity index 100% rename from source/flights/detail/043452.json rename to source/flights/detail/043/043452.json diff --git a/source/flights/detail/043454.json b/source/flights/detail/043/043454.json similarity index 100% rename from source/flights/detail/043454.json rename to source/flights/detail/043/043454.json diff --git a/source/flights/detail/043456.json b/source/flights/detail/043/043456.json similarity index 100% rename from source/flights/detail/043456.json rename to source/flights/detail/043/043456.json diff --git a/source/flights/detail/043457.json b/source/flights/detail/043/043457.json similarity index 100% rename from source/flights/detail/043457.json rename to source/flights/detail/043/043457.json diff --git a/source/flights/detail/043460.json b/source/flights/detail/043/043460.json similarity index 100% rename from source/flights/detail/043460.json rename to source/flights/detail/043/043460.json diff --git a/source/flights/detail/043461.json b/source/flights/detail/043/043461.json similarity index 100% rename from source/flights/detail/043461.json rename to source/flights/detail/043/043461.json diff --git a/source/flights/detail/043501.json b/source/flights/detail/043/043501.json similarity index 100% rename from source/flights/detail/043501.json rename to source/flights/detail/043/043501.json diff --git a/source/flights/detail/043513.json b/source/flights/detail/043/043513.json similarity index 100% rename from source/flights/detail/043513.json rename to source/flights/detail/043/043513.json diff --git a/source/flights/detail/043635.json b/source/flights/detail/043/043635.json similarity index 100% rename from source/flights/detail/043635.json rename to source/flights/detail/043/043635.json diff --git a/source/flights/detail/043683.json b/source/flights/detail/043/043683.json similarity index 100% rename from source/flights/detail/043683.json rename to source/flights/detail/043/043683.json diff --git a/source/flights/detail/043741.json b/source/flights/detail/043/043741.json similarity index 100% rename from source/flights/detail/043741.json rename to source/flights/detail/043/043741.json diff --git a/source/flights/detail/043784.json b/source/flights/detail/043/043784.json similarity index 100% rename from source/flights/detail/043784.json rename to source/flights/detail/043/043784.json diff --git a/source/flights/detail/043857.json b/source/flights/detail/043/043857.json similarity index 100% rename from source/flights/detail/043857.json rename to source/flights/detail/043/043857.json diff --git a/source/flights/detail/043871.json b/source/flights/detail/043/043871.json similarity index 100% rename from source/flights/detail/043871.json rename to source/flights/detail/043/043871.json diff --git a/source/flights/detail/043872.json b/source/flights/detail/043/043872.json similarity index 100% rename from source/flights/detail/043872.json rename to source/flights/detail/043/043872.json diff --git a/source/flights/detail/043873.json b/source/flights/detail/043/043873.json similarity index 100% rename from source/flights/detail/043873.json rename to source/flights/detail/043/043873.json diff --git a/source/flights/detail/043874.json b/source/flights/detail/043/043874.json similarity index 100% rename from source/flights/detail/043874.json rename to source/flights/detail/043/043874.json diff --git a/source/flights/detail/043876.json b/source/flights/detail/043/043876.json similarity index 100% rename from source/flights/detail/043876.json rename to source/flights/detail/043/043876.json diff --git a/source/flights/detail/043877.json b/source/flights/detail/043/043877.json similarity index 100% rename from source/flights/detail/043877.json rename to source/flights/detail/043/043877.json diff --git a/source/flights/detail/043879.json b/source/flights/detail/043/043879.json similarity index 100% rename from source/flights/detail/043879.json rename to source/flights/detail/043/043879.json diff --git a/source/flights/detail/043881.json b/source/flights/detail/043/043881.json similarity index 100% rename from source/flights/detail/043881.json rename to source/flights/detail/043/043881.json diff --git a/source/flights/detail/043882.json b/source/flights/detail/043/043882.json similarity index 100% rename from source/flights/detail/043882.json rename to source/flights/detail/043/043882.json diff --git a/source/flights/detail/043896.json b/source/flights/detail/043/043896.json similarity index 100% rename from source/flights/detail/043896.json rename to source/flights/detail/043/043896.json diff --git a/source/flights/detail/043897.json b/source/flights/detail/043/043897.json similarity index 100% rename from source/flights/detail/043897.json rename to source/flights/detail/043/043897.json diff --git a/source/flights/detail/043898.json b/source/flights/detail/043/043898.json similarity index 100% rename from source/flights/detail/043898.json rename to source/flights/detail/043/043898.json diff --git a/source/flights/detail/043912.json b/source/flights/detail/043/043912.json similarity index 100% rename from source/flights/detail/043912.json rename to source/flights/detail/043/043912.json diff --git a/source/flights/detail/043924.json b/source/flights/detail/043/043924.json similarity index 100% rename from source/flights/detail/043924.json rename to source/flights/detail/043/043924.json diff --git a/source/flights/detail/043930.json b/source/flights/detail/043/043930.json similarity index 100% rename from source/flights/detail/043930.json rename to source/flights/detail/043/043930.json diff --git a/source/flights/detail/043931.json b/source/flights/detail/043/043931.json similarity index 100% rename from source/flights/detail/043931.json rename to source/flights/detail/043/043931.json diff --git a/source/flights/detail/043933.json b/source/flights/detail/043/043933.json similarity index 100% rename from source/flights/detail/043933.json rename to source/flights/detail/043/043933.json diff --git a/source/flights/detail/043947.json b/source/flights/detail/043/043947.json similarity index 100% rename from source/flights/detail/043947.json rename to source/flights/detail/043/043947.json diff --git a/source/flights/detail/043948.json b/source/flights/detail/043/043948.json similarity index 100% rename from source/flights/detail/043948.json rename to source/flights/detail/043/043948.json diff --git a/source/flights/detail/043951.json b/source/flights/detail/043/043951.json similarity index 100% rename from source/flights/detail/043951.json rename to source/flights/detail/043/043951.json diff --git a/source/flights/detail/043954.json b/source/flights/detail/043/043954.json similarity index 100% rename from source/flights/detail/043954.json rename to source/flights/detail/043/043954.json diff --git a/source/flights/detail/043955.json b/source/flights/detail/043/043955.json similarity index 100% rename from source/flights/detail/043955.json rename to source/flights/detail/043/043955.json diff --git a/source/flights/detail/043961.json b/source/flights/detail/043/043961.json similarity index 100% rename from source/flights/detail/043961.json rename to source/flights/detail/043/043961.json diff --git a/source/flights/detail/043965.json b/source/flights/detail/043/043965.json similarity index 100% rename from source/flights/detail/043965.json rename to source/flights/detail/043/043965.json diff --git a/source/flights/detail/043967.json b/source/flights/detail/043/043967.json similarity index 100% rename from source/flights/detail/043967.json rename to source/flights/detail/043/043967.json diff --git a/source/flights/detail/043974.json b/source/flights/detail/043/043974.json similarity index 100% rename from source/flights/detail/043974.json rename to source/flights/detail/043/043974.json diff --git a/source/flights/detail/043975.json b/source/flights/detail/043/043975.json similarity index 100% rename from source/flights/detail/043975.json rename to source/flights/detail/043/043975.json diff --git a/source/flights/detail/044000.json b/source/flights/detail/044/044000.json similarity index 100% rename from source/flights/detail/044000.json rename to source/flights/detail/044/044000.json diff --git a/source/flights/detail/044002.json b/source/flights/detail/044/044002.json similarity index 100% rename from source/flights/detail/044002.json rename to source/flights/detail/044/044002.json diff --git a/source/flights/detail/044006.json b/source/flights/detail/044/044006.json similarity index 100% rename from source/flights/detail/044006.json rename to source/flights/detail/044/044006.json diff --git a/source/flights/detail/044015.json b/source/flights/detail/044/044015.json similarity index 100% rename from source/flights/detail/044015.json rename to source/flights/detail/044/044015.json diff --git a/source/flights/detail/044016.json b/source/flights/detail/044/044016.json similarity index 100% rename from source/flights/detail/044016.json rename to source/flights/detail/044/044016.json diff --git a/source/flights/detail/044023.json b/source/flights/detail/044/044023.json similarity index 100% rename from source/flights/detail/044023.json rename to source/flights/detail/044/044023.json diff --git a/source/flights/detail/044025.json b/source/flights/detail/044/044025.json similarity index 100% rename from source/flights/detail/044025.json rename to source/flights/detail/044/044025.json diff --git a/source/flights/detail/044043.json b/source/flights/detail/044/044043.json similarity index 100% rename from source/flights/detail/044043.json rename to source/flights/detail/044/044043.json diff --git a/source/flights/detail/044045.json b/source/flights/detail/044/044045.json similarity index 100% rename from source/flights/detail/044045.json rename to source/flights/detail/044/044045.json diff --git a/source/flights/detail/044046.json b/source/flights/detail/044/044046.json similarity index 100% rename from source/flights/detail/044046.json rename to source/flights/detail/044/044046.json diff --git a/source/flights/detail/044056.json b/source/flights/detail/044/044056.json similarity index 100% rename from source/flights/detail/044056.json rename to source/flights/detail/044/044056.json diff --git a/source/flights/detail/044062.json b/source/flights/detail/044/044062.json similarity index 100% rename from source/flights/detail/044062.json rename to source/flights/detail/044/044062.json diff --git a/source/flights/detail/044067.json b/source/flights/detail/044/044067.json similarity index 100% rename from source/flights/detail/044067.json rename to source/flights/detail/044/044067.json diff --git a/source/flights/detail/044076.json b/source/flights/detail/044/044076.json similarity index 100% rename from source/flights/detail/044076.json rename to source/flights/detail/044/044076.json diff --git a/source/flights/detail/044077.json b/source/flights/detail/044/044077.json similarity index 100% rename from source/flights/detail/044077.json rename to source/flights/detail/044/044077.json diff --git a/source/flights/detail/044078.json b/source/flights/detail/044/044078.json similarity index 100% rename from source/flights/detail/044078.json rename to source/flights/detail/044/044078.json diff --git a/source/flights/detail/044085.json b/source/flights/detail/044/044085.json similarity index 100% rename from source/flights/detail/044085.json rename to source/flights/detail/044/044085.json diff --git a/source/flights/detail/044087.json b/source/flights/detail/044/044087.json similarity index 100% rename from source/flights/detail/044087.json rename to source/flights/detail/044/044087.json diff --git a/source/flights/detail/044098.json b/source/flights/detail/044/044098.json similarity index 100% rename from source/flights/detail/044098.json rename to source/flights/detail/044/044098.json diff --git a/source/flights/detail/044099.json b/source/flights/detail/044/044099.json similarity index 100% rename from source/flights/detail/044099.json rename to source/flights/detail/044/044099.json diff --git a/source/flights/detail/044100.json b/source/flights/detail/044/044100.json similarity index 100% rename from source/flights/detail/044100.json rename to source/flights/detail/044/044100.json diff --git a/source/flights/detail/044104.json b/source/flights/detail/044/044104.json similarity index 100% rename from source/flights/detail/044104.json rename to source/flights/detail/044/044104.json diff --git a/source/flights/detail/044108.json b/source/flights/detail/044/044108.json similarity index 100% rename from source/flights/detail/044108.json rename to source/flights/detail/044/044108.json diff --git a/source/flights/detail/044109.json b/source/flights/detail/044/044109.json similarity index 100% rename from source/flights/detail/044109.json rename to source/flights/detail/044/044109.json diff --git a/source/flights/detail/044110.json b/source/flights/detail/044/044110.json similarity index 100% rename from source/flights/detail/044110.json rename to source/flights/detail/044/044110.json diff --git a/source/flights/detail/044123.json b/source/flights/detail/044/044123.json similarity index 100% rename from source/flights/detail/044123.json rename to source/flights/detail/044/044123.json diff --git a/source/flights/detail/044126.json b/source/flights/detail/044/044126.json similarity index 100% rename from source/flights/detail/044126.json rename to source/flights/detail/044/044126.json diff --git a/source/flights/detail/044135.json b/source/flights/detail/044/044135.json similarity index 100% rename from source/flights/detail/044135.json rename to source/flights/detail/044/044135.json diff --git a/source/flights/detail/044136.json b/source/flights/detail/044/044136.json similarity index 100% rename from source/flights/detail/044136.json rename to source/flights/detail/044/044136.json diff --git a/source/flights/detail/044139.json b/source/flights/detail/044/044139.json similarity index 100% rename from source/flights/detail/044139.json rename to source/flights/detail/044/044139.json diff --git a/source/flights/detail/044148.json b/source/flights/detail/044/044148.json similarity index 100% rename from source/flights/detail/044148.json rename to source/flights/detail/044/044148.json diff --git a/source/flights/detail/044150.json b/source/flights/detail/044/044150.json similarity index 100% rename from source/flights/detail/044150.json rename to source/flights/detail/044/044150.json diff --git a/source/flights/detail/044158.json b/source/flights/detail/044/044158.json similarity index 100% rename from source/flights/detail/044158.json rename to source/flights/detail/044/044158.json diff --git a/source/flights/detail/044159.json b/source/flights/detail/044/044159.json similarity index 100% rename from source/flights/detail/044159.json rename to source/flights/detail/044/044159.json diff --git a/source/flights/detail/044160.json b/source/flights/detail/044/044160.json similarity index 100% rename from source/flights/detail/044160.json rename to source/flights/detail/044/044160.json diff --git a/source/flights/detail/044164.json b/source/flights/detail/044/044164.json similarity index 100% rename from source/flights/detail/044164.json rename to source/flights/detail/044/044164.json diff --git a/source/flights/detail/044165.json b/source/flights/detail/044/044165.json similarity index 100% rename from source/flights/detail/044165.json rename to source/flights/detail/044/044165.json diff --git a/source/flights/detail/044166.json b/source/flights/detail/044/044166.json similarity index 100% rename from source/flights/detail/044166.json rename to source/flights/detail/044/044166.json diff --git a/source/flights/detail/044167.json b/source/flights/detail/044/044167.json similarity index 100% rename from source/flights/detail/044167.json rename to source/flights/detail/044/044167.json diff --git a/source/flights/detail/044168.json b/source/flights/detail/044/044168.json similarity index 100% rename from source/flights/detail/044168.json rename to source/flights/detail/044/044168.json diff --git a/source/flights/detail/044169.json b/source/flights/detail/044/044169.json similarity index 100% rename from source/flights/detail/044169.json rename to source/flights/detail/044/044169.json diff --git a/source/flights/detail/044174.json b/source/flights/detail/044/044174.json similarity index 100% rename from source/flights/detail/044174.json rename to source/flights/detail/044/044174.json diff --git a/source/flights/detail/044176.json b/source/flights/detail/044/044176.json similarity index 100% rename from source/flights/detail/044176.json rename to source/flights/detail/044/044176.json diff --git a/source/flights/detail/044177.json b/source/flights/detail/044/044177.json similarity index 100% rename from source/flights/detail/044177.json rename to source/flights/detail/044/044177.json diff --git a/source/flights/detail/044178.json b/source/flights/detail/044/044178.json similarity index 100% rename from source/flights/detail/044178.json rename to source/flights/detail/044/044178.json diff --git a/source/flights/detail/044205.json b/source/flights/detail/044/044205.json similarity index 100% rename from source/flights/detail/044205.json rename to source/flights/detail/044/044205.json diff --git a/source/flights/detail/044225.json b/source/flights/detail/044/044225.json similarity index 100% rename from source/flights/detail/044225.json rename to source/flights/detail/044/044225.json diff --git a/source/flights/detail/044444.json b/source/flights/detail/044/044444.json similarity index 100% rename from source/flights/detail/044444.json rename to source/flights/detail/044/044444.json diff --git a/source/flights/detail/044456.json b/source/flights/detail/044/044456.json similarity index 100% rename from source/flights/detail/044456.json rename to source/flights/detail/044/044456.json diff --git a/source/flights/detail/044468.json b/source/flights/detail/044/044468.json similarity index 100% rename from source/flights/detail/044468.json rename to source/flights/detail/044/044468.json diff --git a/source/flights/detail/044469.json b/source/flights/detail/044/044469.json similarity index 100% rename from source/flights/detail/044469.json rename to source/flights/detail/044/044469.json diff --git a/source/flights/detail/044475.json b/source/flights/detail/044/044475.json similarity index 100% rename from source/flights/detail/044475.json rename to source/flights/detail/044/044475.json diff --git a/source/flights/detail/044476.json b/source/flights/detail/044/044476.json similarity index 100% rename from source/flights/detail/044476.json rename to source/flights/detail/044/044476.json diff --git a/source/flights/detail/044492.json b/source/flights/detail/044/044492.json similarity index 100% rename from source/flights/detail/044492.json rename to source/flights/detail/044/044492.json diff --git a/source/flights/detail/045137.json b/source/flights/detail/045/045137.json similarity index 100% rename from source/flights/detail/045137.json rename to source/flights/detail/045/045137.json diff --git a/source/flights/detail/045138.json b/source/flights/detail/045/045138.json similarity index 100% rename from source/flights/detail/045138.json rename to source/flights/detail/045/045138.json diff --git a/source/flights/detail/045139.json b/source/flights/detail/045/045139.json similarity index 100% rename from source/flights/detail/045139.json rename to source/flights/detail/045/045139.json diff --git a/source/flights/detail/045140.json b/source/flights/detail/045/045140.json similarity index 100% rename from source/flights/detail/045140.json rename to source/flights/detail/045/045140.json diff --git a/source/flights/detail/045141.json b/source/flights/detail/045/045141.json similarity index 100% rename from source/flights/detail/045141.json rename to source/flights/detail/045/045141.json diff --git a/source/flights/detail/046361.json b/source/flights/detail/046/046361.json similarity index 100% rename from source/flights/detail/046361.json rename to source/flights/detail/046/046361.json diff --git a/source/flights/detail/046362.json b/source/flights/detail/046/046362.json similarity index 100% rename from source/flights/detail/046362.json rename to source/flights/detail/046/046362.json diff --git a/source/flights/detail/046366.json b/source/flights/detail/046/046366.json similarity index 100% rename from source/flights/detail/046366.json rename to source/flights/detail/046/046366.json diff --git a/source/flights/detail/046370.json b/source/flights/detail/046/046370.json similarity index 100% rename from source/flights/detail/046370.json rename to source/flights/detail/046/046370.json diff --git a/source/flights/detail/046371.json b/source/flights/detail/046/046371.json similarity index 100% rename from source/flights/detail/046371.json rename to source/flights/detail/046/046371.json diff --git a/source/flights/detail/046382.json b/source/flights/detail/046/046382.json similarity index 100% rename from source/flights/detail/046382.json rename to source/flights/detail/046/046382.json diff --git a/source/flights/detail/046384.json b/source/flights/detail/046/046384.json similarity index 100% rename from source/flights/detail/046384.json rename to source/flights/detail/046/046384.json diff --git a/source/flights/detail/046386.json b/source/flights/detail/046/046386.json similarity index 100% rename from source/flights/detail/046386.json rename to source/flights/detail/046/046386.json diff --git a/source/flights/detail/046387.json b/source/flights/detail/046/046387.json similarity index 100% rename from source/flights/detail/046387.json rename to source/flights/detail/046/046387.json diff --git a/source/flights/detail/046396.json b/source/flights/detail/046/046396.json similarity index 100% rename from source/flights/detail/046396.json rename to source/flights/detail/046/046396.json diff --git a/source/flights/detail/046417.json b/source/flights/detail/046/046417.json similarity index 100% rename from source/flights/detail/046417.json rename to source/flights/detail/046/046417.json diff --git a/source/flights/detail/046478.json b/source/flights/detail/046/046478.json similarity index 100% rename from source/flights/detail/046478.json rename to source/flights/detail/046/046478.json diff --git a/source/flights/detail/046479.json b/source/flights/detail/046/046479.json similarity index 100% rename from source/flights/detail/046479.json rename to source/flights/detail/046/046479.json diff --git a/source/flights/detail/046482.json b/source/flights/detail/046/046482.json similarity index 100% rename from source/flights/detail/046482.json rename to source/flights/detail/046/046482.json diff --git a/source/flights/detail/046513.json b/source/flights/detail/046/046513.json similarity index 100% rename from source/flights/detail/046513.json rename to source/flights/detail/046/046513.json diff --git a/source/flights/detail/046514.json b/source/flights/detail/046/046514.json similarity index 100% rename from source/flights/detail/046514.json rename to source/flights/detail/046/046514.json diff --git a/source/flights/detail/046515.json b/source/flights/detail/046/046515.json similarity index 100% rename from source/flights/detail/046515.json rename to source/flights/detail/046/046515.json diff --git a/source/flights/detail/046516.json b/source/flights/detail/046/046516.json similarity index 100% rename from source/flights/detail/046516.json rename to source/flights/detail/046/046516.json diff --git a/source/flights/detail/046517.json b/source/flights/detail/046/046517.json similarity index 100% rename from source/flights/detail/046517.json rename to source/flights/detail/046/046517.json diff --git a/source/flights/detail/046524.json b/source/flights/detail/046/046524.json similarity index 100% rename from source/flights/detail/046524.json rename to source/flights/detail/046/046524.json diff --git a/source/flights/detail/046533.json b/source/flights/detail/046/046533.json similarity index 100% rename from source/flights/detail/046533.json rename to source/flights/detail/046/046533.json diff --git a/source/flights/detail/046534.json b/source/flights/detail/046/046534.json similarity index 100% rename from source/flights/detail/046534.json rename to source/flights/detail/046/046534.json diff --git a/source/flights/detail/046535.json b/source/flights/detail/046/046535.json similarity index 100% rename from source/flights/detail/046535.json rename to source/flights/detail/046/046535.json diff --git a/source/flights/detail/046536.json b/source/flights/detail/046/046536.json similarity index 100% rename from source/flights/detail/046536.json rename to source/flights/detail/046/046536.json diff --git a/source/flights/detail/046537.json b/source/flights/detail/046/046537.json similarity index 100% rename from source/flights/detail/046537.json rename to source/flights/detail/046/046537.json diff --git a/source/flights/detail/046538.json b/source/flights/detail/046/046538.json similarity index 100% rename from source/flights/detail/046538.json rename to source/flights/detail/046/046538.json diff --git a/source/flights/detail/046539.json b/source/flights/detail/046/046539.json similarity index 100% rename from source/flights/detail/046539.json rename to source/flights/detail/046/046539.json diff --git a/source/flights/detail/046561.json b/source/flights/detail/046/046561.json similarity index 100% rename from source/flights/detail/046561.json rename to source/flights/detail/046/046561.json diff --git a/source/flights/detail/046564.json b/source/flights/detail/046/046564.json similarity index 100% rename from source/flights/detail/046564.json rename to source/flights/detail/046/046564.json diff --git a/source/flights/detail/046586.json b/source/flights/detail/046/046586.json similarity index 100% rename from source/flights/detail/046586.json rename to source/flights/detail/046/046586.json diff --git a/source/flights/detail/046619.json b/source/flights/detail/046/046619.json similarity index 100% rename from source/flights/detail/046619.json rename to source/flights/detail/046/046619.json diff --git a/source/flights/detail/046620.json b/source/flights/detail/046/046620.json similarity index 100% rename from source/flights/detail/046620.json rename to source/flights/detail/046/046620.json diff --git a/source/flights/detail/046621.json b/source/flights/detail/046/046621.json similarity index 100% rename from source/flights/detail/046621.json rename to source/flights/detail/046/046621.json diff --git a/source/flights/detail/046622.json b/source/flights/detail/046/046622.json similarity index 100% rename from source/flights/detail/046622.json rename to source/flights/detail/046/046622.json diff --git a/source/flights/detail/046626.json b/source/flights/detail/046/046626.json similarity index 100% rename from source/flights/detail/046626.json rename to source/flights/detail/046/046626.json diff --git a/source/flights/detail/046627.json b/source/flights/detail/046/046627.json similarity index 100% rename from source/flights/detail/046627.json rename to source/flights/detail/046/046627.json diff --git a/source/flights/detail/046640.json b/source/flights/detail/046/046640.json similarity index 100% rename from source/flights/detail/046640.json rename to source/flights/detail/046/046640.json diff --git a/source/flights/detail/046641.json b/source/flights/detail/046/046641.json similarity index 100% rename from source/flights/detail/046641.json rename to source/flights/detail/046/046641.json diff --git a/source/flights/detail/046655.json b/source/flights/detail/046/046655.json similarity index 100% rename from source/flights/detail/046655.json rename to source/flights/detail/046/046655.json diff --git a/source/flights/detail/046671.json b/source/flights/detail/046/046671.json similarity index 100% rename from source/flights/detail/046671.json rename to source/flights/detail/046/046671.json diff --git a/source/flights/detail/046675.json b/source/flights/detail/046/046675.json similarity index 100% rename from source/flights/detail/046675.json rename to source/flights/detail/046/046675.json diff --git a/source/flights/detail/046676.json b/source/flights/detail/046/046676.json similarity index 100% rename from source/flights/detail/046676.json rename to source/flights/detail/046/046676.json diff --git a/source/flights/detail/046677.json b/source/flights/detail/046/046677.json similarity index 100% rename from source/flights/detail/046677.json rename to source/flights/detail/046/046677.json diff --git a/source/flights/detail/046767.json b/source/flights/detail/046/046767.json similarity index 100% rename from source/flights/detail/046767.json rename to source/flights/detail/046/046767.json diff --git a/source/flights/detail/046768.json b/source/flights/detail/046/046768.json similarity index 100% rename from source/flights/detail/046768.json rename to source/flights/detail/046/046768.json diff --git a/source/flights/detail/046837.json b/source/flights/detail/046/046837.json similarity index 100% rename from source/flights/detail/046837.json rename to source/flights/detail/046/046837.json diff --git a/source/flights/detail/046840.json b/source/flights/detail/046/046840.json similarity index 100% rename from source/flights/detail/046840.json rename to source/flights/detail/046/046840.json diff --git a/source/flights/detail/046907.json b/source/flights/detail/046/046907.json similarity index 100% rename from source/flights/detail/046907.json rename to source/flights/detail/046/046907.json diff --git a/source/flights/detail/046908.json b/source/flights/detail/046/046908.json similarity index 100% rename from source/flights/detail/046908.json rename to source/flights/detail/046/046908.json diff --git a/source/flights/detail/046909.json b/source/flights/detail/046/046909.json similarity index 100% rename from source/flights/detail/046909.json rename to source/flights/detail/046/046909.json diff --git a/source/flights/detail/046939.json b/source/flights/detail/046/046939.json similarity index 100% rename from source/flights/detail/046939.json rename to source/flights/detail/046/046939.json diff --git a/source/flights/detail/046940.json b/source/flights/detail/046/046940.json similarity index 100% rename from source/flights/detail/046940.json rename to source/flights/detail/046/046940.json diff --git a/source/flights/detail/046959.json b/source/flights/detail/046/046959.json similarity index 100% rename from source/flights/detail/046959.json rename to source/flights/detail/046/046959.json diff --git a/source/flights/detail/046960.json b/source/flights/detail/046/046960.json similarity index 100% rename from source/flights/detail/046960.json rename to source/flights/detail/046/046960.json diff --git a/source/flights/detail/046961.json b/source/flights/detail/046/046961.json similarity index 100% rename from source/flights/detail/046961.json rename to source/flights/detail/046/046961.json diff --git a/source/flights/detail/046962.json b/source/flights/detail/046/046962.json similarity index 100% rename from source/flights/detail/046962.json rename to source/flights/detail/046/046962.json diff --git a/source/flights/detail/046963.json b/source/flights/detail/046/046963.json similarity index 100% rename from source/flights/detail/046963.json rename to source/flights/detail/046/046963.json diff --git a/source/flights/detail/046981.json b/source/flights/detail/046/046981.json similarity index 100% rename from source/flights/detail/046981.json rename to source/flights/detail/046/046981.json diff --git a/source/flights/detail/046982.json b/source/flights/detail/046/046982.json similarity index 100% rename from source/flights/detail/046982.json rename to source/flights/detail/046/046982.json diff --git a/source/flights/detail/046983.json b/source/flights/detail/046/046983.json similarity index 100% rename from source/flights/detail/046983.json rename to source/flights/detail/046/046983.json diff --git a/source/flights/detail/046987.json b/source/flights/detail/046/046987.json similarity index 100% rename from source/flights/detail/046987.json rename to source/flights/detail/046/046987.json diff --git a/source/flights/detail/046988.json b/source/flights/detail/046/046988.json similarity index 100% rename from source/flights/detail/046988.json rename to source/flights/detail/046/046988.json diff --git a/source/flights/detail/046991.json b/source/flights/detail/046/046991.json similarity index 100% rename from source/flights/detail/046991.json rename to source/flights/detail/046/046991.json diff --git a/source/flights/detail/047023.json b/source/flights/detail/047/047023.json similarity index 100% rename from source/flights/detail/047023.json rename to source/flights/detail/047/047023.json diff --git a/source/flights/detail/047025.json b/source/flights/detail/047/047025.json similarity index 100% rename from source/flights/detail/047025.json rename to source/flights/detail/047/047025.json diff --git a/source/flights/detail/047095.json b/source/flights/detail/047/047095.json similarity index 100% rename from source/flights/detail/047095.json rename to source/flights/detail/047/047095.json diff --git a/source/flights/detail/047096.json b/source/flights/detail/047/047096.json similarity index 100% rename from source/flights/detail/047096.json rename to source/flights/detail/047/047096.json diff --git a/source/flights/detail/047097.json b/source/flights/detail/047/047097.json similarity index 100% rename from source/flights/detail/047097.json rename to source/flights/detail/047/047097.json diff --git a/source/flights/detail/047098.json b/source/flights/detail/047/047098.json similarity index 100% rename from source/flights/detail/047098.json rename to source/flights/detail/047/047098.json diff --git a/source/flights/detail/047152.json b/source/flights/detail/047/047152.json similarity index 100% rename from source/flights/detail/047152.json rename to source/flights/detail/047/047152.json diff --git a/source/flights/detail/047153.json b/source/flights/detail/047/047153.json similarity index 100% rename from source/flights/detail/047153.json rename to source/flights/detail/047/047153.json diff --git a/source/flights/detail/047154.json b/source/flights/detail/047/047154.json similarity index 100% rename from source/flights/detail/047154.json rename to source/flights/detail/047/047154.json diff --git a/source/flights/detail/047155.json b/source/flights/detail/047/047155.json similarity index 100% rename from source/flights/detail/047155.json rename to source/flights/detail/047/047155.json diff --git a/source/flights/detail/047156.json b/source/flights/detail/047/047156.json similarity index 100% rename from source/flights/detail/047156.json rename to source/flights/detail/047/047156.json diff --git a/source/flights/detail/047157.json b/source/flights/detail/047/047157.json similarity index 100% rename from source/flights/detail/047157.json rename to source/flights/detail/047/047157.json diff --git a/source/flights/detail/047163.json b/source/flights/detail/047/047163.json similarity index 100% rename from source/flights/detail/047163.json rename to source/flights/detail/047/047163.json diff --git a/source/flights/detail/047165.json b/source/flights/detail/047/047165.json similarity index 100% rename from source/flights/detail/047165.json rename to source/flights/detail/047/047165.json diff --git a/source/flights/detail/047181.json b/source/flights/detail/047/047181.json similarity index 100% rename from source/flights/detail/047181.json rename to source/flights/detail/047/047181.json diff --git a/source/flights/detail/047182.json b/source/flights/detail/047/047182.json similarity index 100% rename from source/flights/detail/047182.json rename to source/flights/detail/047/047182.json diff --git a/source/flights/detail/047183.json b/source/flights/detail/047/047183.json similarity index 100% rename from source/flights/detail/047183.json rename to source/flights/detail/047/047183.json diff --git a/source/flights/detail/047222.json b/source/flights/detail/047/047222.json similarity index 100% rename from source/flights/detail/047222.json rename to source/flights/detail/047/047222.json diff --git a/source/flights/detail/047223.json b/source/flights/detail/047/047223.json similarity index 100% rename from source/flights/detail/047223.json rename to source/flights/detail/047/047223.json diff --git a/source/flights/detail/047225.json b/source/flights/detail/047/047225.json similarity index 100% rename from source/flights/detail/047225.json rename to source/flights/detail/047/047225.json diff --git a/source/flights/detail/047259.json b/source/flights/detail/047/047259.json similarity index 100% rename from source/flights/detail/047259.json rename to source/flights/detail/047/047259.json diff --git a/source/flights/detail/047304.json b/source/flights/detail/047/047304.json similarity index 100% rename from source/flights/detail/047304.json rename to source/flights/detail/047/047304.json diff --git a/source/flights/detail/047305.json b/source/flights/detail/047/047305.json similarity index 100% rename from source/flights/detail/047305.json rename to source/flights/detail/047/047305.json diff --git a/source/flights/detail/047308.json b/source/flights/detail/047/047308.json similarity index 100% rename from source/flights/detail/047308.json rename to source/flights/detail/047/047308.json diff --git a/source/flights/detail/047315.json b/source/flights/detail/047/047315.json similarity index 100% rename from source/flights/detail/047315.json rename to source/flights/detail/047/047315.json diff --git a/source/flights/detail/047316.json b/source/flights/detail/047/047316.json similarity index 100% rename from source/flights/detail/047316.json rename to source/flights/detail/047/047316.json diff --git a/source/flights/detail/047317.json b/source/flights/detail/047/047317.json similarity index 100% rename from source/flights/detail/047317.json rename to source/flights/detail/047/047317.json diff --git a/source/flights/detail/047318.json b/source/flights/detail/047/047318.json similarity index 100% rename from source/flights/detail/047318.json rename to source/flights/detail/047/047318.json diff --git a/source/flights/detail/047322.json b/source/flights/detail/047/047322.json similarity index 100% rename from source/flights/detail/047322.json rename to source/flights/detail/047/047322.json diff --git a/source/flights/detail/047323.json b/source/flights/detail/047/047323.json similarity index 100% rename from source/flights/detail/047323.json rename to source/flights/detail/047/047323.json diff --git a/source/flights/detail/047324.json b/source/flights/detail/047/047324.json similarity index 100% rename from source/flights/detail/047324.json rename to source/flights/detail/047/047324.json diff --git a/source/flights/detail/047343.json b/source/flights/detail/047/047343.json similarity index 100% rename from source/flights/detail/047343.json rename to source/flights/detail/047/047343.json diff --git a/source/flights/detail/047344.json b/source/flights/detail/047/047344.json similarity index 100% rename from source/flights/detail/047344.json rename to source/flights/detail/047/047344.json diff --git a/source/flights/detail/047345.json b/source/flights/detail/047/047345.json similarity index 100% rename from source/flights/detail/047345.json rename to source/flights/detail/047/047345.json diff --git a/source/flights/detail/047405.json b/source/flights/detail/047/047405.json similarity index 100% rename from source/flights/detail/047405.json rename to source/flights/detail/047/047405.json diff --git a/source/flights/detail/047407.json b/source/flights/detail/047/047407.json similarity index 100% rename from source/flights/detail/047407.json rename to source/flights/detail/047/047407.json diff --git a/source/flights/detail/047409.json b/source/flights/detail/047/047409.json similarity index 100% rename from source/flights/detail/047409.json rename to source/flights/detail/047/047409.json diff --git a/source/flights/detail/047411.json b/source/flights/detail/047/047411.json similarity index 100% rename from source/flights/detail/047411.json rename to source/flights/detail/047/047411.json diff --git a/source/flights/detail/047413.json b/source/flights/detail/047/047413.json similarity index 100% rename from source/flights/detail/047413.json rename to source/flights/detail/047/047413.json diff --git a/source/flights/detail/047417.json b/source/flights/detail/047/047417.json similarity index 100% rename from source/flights/detail/047417.json rename to source/flights/detail/047/047417.json diff --git a/source/flights/detail/047418.json b/source/flights/detail/047/047418.json similarity index 100% rename from source/flights/detail/047418.json rename to source/flights/detail/047/047418.json diff --git a/source/flights/detail/047429.json b/source/flights/detail/047/047429.json similarity index 100% rename from source/flights/detail/047429.json rename to source/flights/detail/047/047429.json diff --git a/source/flights/detail/047430.json b/source/flights/detail/047/047430.json similarity index 100% rename from source/flights/detail/047430.json rename to source/flights/detail/047/047430.json diff --git a/source/flights/detail/047431.json b/source/flights/detail/047/047431.json similarity index 100% rename from source/flights/detail/047431.json rename to source/flights/detail/047/047431.json diff --git a/source/flights/detail/047432.json b/source/flights/detail/047/047432.json similarity index 100% rename from source/flights/detail/047432.json rename to source/flights/detail/047/047432.json diff --git a/source/flights/detail/047433.json b/source/flights/detail/047/047433.json similarity index 100% rename from source/flights/detail/047433.json rename to source/flights/detail/047/047433.json diff --git a/source/flights/detail/047440.json b/source/flights/detail/047/047440.json similarity index 100% rename from source/flights/detail/047440.json rename to source/flights/detail/047/047440.json diff --git a/source/flights/detail/047441.json b/source/flights/detail/047/047441.json similarity index 100% rename from source/flights/detail/047441.json rename to source/flights/detail/047/047441.json diff --git a/source/flights/detail/047452.json b/source/flights/detail/047/047452.json similarity index 100% rename from source/flights/detail/047452.json rename to source/flights/detail/047/047452.json diff --git a/source/flights/detail/047453.json b/source/flights/detail/047/047453.json similarity index 100% rename from source/flights/detail/047453.json rename to source/flights/detail/047/047453.json diff --git a/source/flights/detail/047454.json b/source/flights/detail/047/047454.json similarity index 100% rename from source/flights/detail/047454.json rename to source/flights/detail/047/047454.json diff --git a/source/flights/detail/047455.json b/source/flights/detail/047/047455.json similarity index 100% rename from source/flights/detail/047455.json rename to source/flights/detail/047/047455.json diff --git a/source/flights/detail/047456.json b/source/flights/detail/047/047456.json similarity index 100% rename from source/flights/detail/047456.json rename to source/flights/detail/047/047456.json diff --git a/source/flights/detail/047507.json b/source/flights/detail/047/047507.json similarity index 100% rename from source/flights/detail/047507.json rename to source/flights/detail/047/047507.json diff --git a/source/flights/detail/047508.json b/source/flights/detail/047/047508.json similarity index 100% rename from source/flights/detail/047508.json rename to source/flights/detail/047/047508.json diff --git a/source/flights/detail/047509.json b/source/flights/detail/047/047509.json similarity index 100% rename from source/flights/detail/047509.json rename to source/flights/detail/047/047509.json diff --git a/source/flights/detail/047522.json b/source/flights/detail/047/047522.json similarity index 100% rename from source/flights/detail/047522.json rename to source/flights/detail/047/047522.json diff --git a/source/flights/detail/047523.json b/source/flights/detail/047/047523.json similarity index 100% rename from source/flights/detail/047523.json rename to source/flights/detail/047/047523.json diff --git a/source/flights/detail/047524.json b/source/flights/detail/047/047524.json similarity index 100% rename from source/flights/detail/047524.json rename to source/flights/detail/047/047524.json diff --git a/source/flights/detail/047539.json b/source/flights/detail/047/047539.json similarity index 100% rename from source/flights/detail/047539.json rename to source/flights/detail/047/047539.json diff --git a/source/flights/detail/047540.json b/source/flights/detail/047/047540.json similarity index 100% rename from source/flights/detail/047540.json rename to source/flights/detail/047/047540.json diff --git a/source/flights/detail/047577.json b/source/flights/detail/047/047577.json similarity index 100% rename from source/flights/detail/047577.json rename to source/flights/detail/047/047577.json diff --git a/source/flights/detail/047578.json b/source/flights/detail/047/047578.json similarity index 100% rename from source/flights/detail/047578.json rename to source/flights/detail/047/047578.json diff --git a/source/flights/detail/047579.json b/source/flights/detail/047/047579.json similarity index 100% rename from source/flights/detail/047579.json rename to source/flights/detail/047/047579.json diff --git a/source/flights/detail/047581.json b/source/flights/detail/047/047581.json similarity index 100% rename from source/flights/detail/047581.json rename to source/flights/detail/047/047581.json diff --git a/source/flights/detail/047586.json b/source/flights/detail/047/047586.json similarity index 100% rename from source/flights/detail/047586.json rename to source/flights/detail/047/047586.json diff --git a/source/flights/detail/047602.json b/source/flights/detail/047/047602.json similarity index 100% rename from source/flights/detail/047602.json rename to source/flights/detail/047/047602.json diff --git a/source/flights/detail/047603.json b/source/flights/detail/047/047603.json similarity index 100% rename from source/flights/detail/047603.json rename to source/flights/detail/047/047603.json diff --git a/source/flights/detail/047604.json b/source/flights/detail/047/047604.json similarity index 100% rename from source/flights/detail/047604.json rename to source/flights/detail/047/047604.json diff --git a/source/flights/detail/047607.json b/source/flights/detail/047/047607.json similarity index 100% rename from source/flights/detail/047607.json rename to source/flights/detail/047/047607.json diff --git a/source/flights/detail/047612.json b/source/flights/detail/047/047612.json similarity index 100% rename from source/flights/detail/047612.json rename to source/flights/detail/047/047612.json diff --git a/source/flights/detail/047613.json b/source/flights/detail/047/047613.json similarity index 100% rename from source/flights/detail/047613.json rename to source/flights/detail/047/047613.json diff --git a/source/flights/detail/047614.json b/source/flights/detail/047/047614.json similarity index 100% rename from source/flights/detail/047614.json rename to source/flights/detail/047/047614.json diff --git a/source/flights/detail/047615.json b/source/flights/detail/047/047615.json similarity index 100% rename from source/flights/detail/047615.json rename to source/flights/detail/047/047615.json diff --git a/source/flights/detail/047616.json b/source/flights/detail/047/047616.json similarity index 100% rename from source/flights/detail/047616.json rename to source/flights/detail/047/047616.json diff --git a/source/flights/detail/047635.json b/source/flights/detail/047/047635.json similarity index 100% rename from source/flights/detail/047635.json rename to source/flights/detail/047/047635.json diff --git a/source/flights/detail/047637.json b/source/flights/detail/047/047637.json similarity index 100% rename from source/flights/detail/047637.json rename to source/flights/detail/047/047637.json diff --git a/source/flights/detail/047644.json b/source/flights/detail/047/047644.json similarity index 100% rename from source/flights/detail/047644.json rename to source/flights/detail/047/047644.json diff --git a/source/flights/detail/047646.json b/source/flights/detail/047/047646.json similarity index 100% rename from source/flights/detail/047646.json rename to source/flights/detail/047/047646.json diff --git a/source/flights/detail/047647.json b/source/flights/detail/047/047647.json similarity index 100% rename from source/flights/detail/047647.json rename to source/flights/detail/047/047647.json diff --git a/source/flights/detail/047648.json b/source/flights/detail/047/047648.json similarity index 100% rename from source/flights/detail/047648.json rename to source/flights/detail/047/047648.json diff --git a/source/flights/detail/047649.json b/source/flights/detail/047/047649.json similarity index 100% rename from source/flights/detail/047649.json rename to source/flights/detail/047/047649.json diff --git a/source/flights/detail/047650.json b/source/flights/detail/047/047650.json similarity index 100% rename from source/flights/detail/047650.json rename to source/flights/detail/047/047650.json diff --git a/source/flights/detail/047651.json b/source/flights/detail/047/047651.json similarity index 100% rename from source/flights/detail/047651.json rename to source/flights/detail/047/047651.json diff --git a/source/flights/detail/047655.json b/source/flights/detail/047/047655.json similarity index 100% rename from source/flights/detail/047655.json rename to source/flights/detail/047/047655.json diff --git a/source/flights/detail/047656.json b/source/flights/detail/047/047656.json similarity index 100% rename from source/flights/detail/047656.json rename to source/flights/detail/047/047656.json diff --git a/source/flights/detail/047657.json b/source/flights/detail/047/047657.json similarity index 100% rename from source/flights/detail/047657.json rename to source/flights/detail/047/047657.json diff --git a/source/flights/detail/047658.json b/source/flights/detail/047/047658.json similarity index 100% rename from source/flights/detail/047658.json rename to source/flights/detail/047/047658.json diff --git a/source/flights/detail/047710.json b/source/flights/detail/047/047710.json similarity index 100% rename from source/flights/detail/047710.json rename to source/flights/detail/047/047710.json diff --git a/source/flights/detail/047711.json b/source/flights/detail/047/047711.json similarity index 100% rename from source/flights/detail/047711.json rename to source/flights/detail/047/047711.json diff --git a/source/flights/detail/047712.json b/source/flights/detail/047/047712.json similarity index 100% rename from source/flights/detail/047712.json rename to source/flights/detail/047/047712.json diff --git a/source/flights/detail/047713.json b/source/flights/detail/047/047713.json similarity index 100% rename from source/flights/detail/047713.json rename to source/flights/detail/047/047713.json diff --git a/source/flights/detail/047716.json b/source/flights/detail/047/047716.json similarity index 100% rename from source/flights/detail/047716.json rename to source/flights/detail/047/047716.json diff --git a/source/flights/detail/047726.json b/source/flights/detail/047/047726.json similarity index 100% rename from source/flights/detail/047726.json rename to source/flights/detail/047/047726.json diff --git a/source/flights/detail/047727.json b/source/flights/detail/047/047727.json similarity index 100% rename from source/flights/detail/047727.json rename to source/flights/detail/047/047727.json diff --git a/source/flights/detail/047728.json b/source/flights/detail/047/047728.json similarity index 100% rename from source/flights/detail/047728.json rename to source/flights/detail/047/047728.json diff --git a/source/flights/detail/047745.json b/source/flights/detail/047/047745.json similarity index 100% rename from source/flights/detail/047745.json rename to source/flights/detail/047/047745.json diff --git a/source/flights/detail/047746.json b/source/flights/detail/047/047746.json similarity index 100% rename from source/flights/detail/047746.json rename to source/flights/detail/047/047746.json diff --git a/source/flights/detail/047785.json b/source/flights/detail/047/047785.json similarity index 100% rename from source/flights/detail/047785.json rename to source/flights/detail/047/047785.json diff --git a/source/flights/detail/047786.json b/source/flights/detail/047/047786.json similarity index 100% rename from source/flights/detail/047786.json rename to source/flights/detail/047/047786.json diff --git a/source/flights/detail/047787.json b/source/flights/detail/047/047787.json similarity index 100% rename from source/flights/detail/047787.json rename to source/flights/detail/047/047787.json diff --git a/source/flights/detail/047788.json b/source/flights/detail/047/047788.json similarity index 100% rename from source/flights/detail/047788.json rename to source/flights/detail/047/047788.json diff --git a/source/flights/detail/047793.json b/source/flights/detail/047/047793.json similarity index 100% rename from source/flights/detail/047793.json rename to source/flights/detail/047/047793.json diff --git a/source/flights/detail/047838.json b/source/flights/detail/047/047838.json similarity index 100% rename from source/flights/detail/047838.json rename to source/flights/detail/047/047838.json diff --git a/source/flights/detail/047864.json b/source/flights/detail/047/047864.json similarity index 100% rename from source/flights/detail/047864.json rename to source/flights/detail/047/047864.json diff --git a/source/flights/detail/047866.json b/source/flights/detail/047/047866.json similarity index 100% rename from source/flights/detail/047866.json rename to source/flights/detail/047/047866.json diff --git a/source/flights/detail/047869.json b/source/flights/detail/047/047869.json similarity index 100% rename from source/flights/detail/047869.json rename to source/flights/detail/047/047869.json diff --git a/source/flights/detail/047870.json b/source/flights/detail/047/047870.json similarity index 100% rename from source/flights/detail/047870.json rename to source/flights/detail/047/047870.json diff --git a/source/flights/detail/047876.json b/source/flights/detail/047/047876.json similarity index 100% rename from source/flights/detail/047876.json rename to source/flights/detail/047/047876.json diff --git a/source/flights/detail/047877.json b/source/flights/detail/047/047877.json similarity index 100% rename from source/flights/detail/047877.json rename to source/flights/detail/047/047877.json diff --git a/source/flights/detail/047878.json b/source/flights/detail/047/047878.json similarity index 100% rename from source/flights/detail/047878.json rename to source/flights/detail/047/047878.json diff --git a/source/flights/detail/047879.json b/source/flights/detail/047/047879.json similarity index 100% rename from source/flights/detail/047879.json rename to source/flights/detail/047/047879.json diff --git a/source/flights/detail/047880.json b/source/flights/detail/047/047880.json similarity index 100% rename from source/flights/detail/047880.json rename to source/flights/detail/047/047880.json diff --git a/source/flights/detail/047881.json b/source/flights/detail/047/047881.json similarity index 100% rename from source/flights/detail/047881.json rename to source/flights/detail/047/047881.json diff --git a/source/flights/detail/047882.json b/source/flights/detail/047/047882.json similarity index 100% rename from source/flights/detail/047882.json rename to source/flights/detail/047/047882.json diff --git a/source/flights/detail/047883.json b/source/flights/detail/047/047883.json similarity index 100% rename from source/flights/detail/047883.json rename to source/flights/detail/047/047883.json diff --git a/source/flights/detail/047932.json b/source/flights/detail/047/047932.json similarity index 100% rename from source/flights/detail/047932.json rename to source/flights/detail/047/047932.json diff --git a/source/flights/detail/047935.json b/source/flights/detail/047/047935.json similarity index 100% rename from source/flights/detail/047935.json rename to source/flights/detail/047/047935.json diff --git a/source/flights/detail/047955.json b/source/flights/detail/047/047955.json similarity index 100% rename from source/flights/detail/047955.json rename to source/flights/detail/047/047955.json diff --git a/source/flights/detail/052074.json b/source/flights/detail/052/052074.json similarity index 100% rename from source/flights/detail/052074.json rename to source/flights/detail/052/052074.json diff --git a/source/flights/detail/053138.json b/source/flights/detail/053/053138.json similarity index 100% rename from source/flights/detail/053138.json rename to source/flights/detail/053/053138.json diff --git a/source/flights/detail/053139.json b/source/flights/detail/053/053139.json similarity index 100% rename from source/flights/detail/053139.json rename to source/flights/detail/053/053139.json diff --git a/source/flights/detail/053140.json b/source/flights/detail/053/053140.json similarity index 100% rename from source/flights/detail/053140.json rename to source/flights/detail/053/053140.json diff --git a/source/flights/detail/053144.json b/source/flights/detail/053/053144.json similarity index 100% rename from source/flights/detail/053144.json rename to source/flights/detail/053/053144.json diff --git a/source/flights/detail/053148.json b/source/flights/detail/053/053148.json similarity index 100% rename from source/flights/detail/053148.json rename to source/flights/detail/053/053148.json diff --git a/source/flights/detail/053153.json b/source/flights/detail/053/053153.json similarity index 100% rename from source/flights/detail/053153.json rename to source/flights/detail/053/053153.json diff --git a/source/flights/detail/053157.json b/source/flights/detail/053/053157.json similarity index 100% rename from source/flights/detail/053157.json rename to source/flights/detail/053/053157.json diff --git a/source/flights/detail/053162.json b/source/flights/detail/053/053162.json similarity index 100% rename from source/flights/detail/053162.json rename to source/flights/detail/053/053162.json diff --git a/source/flights/detail/053163.json b/source/flights/detail/053/053163.json similarity index 100% rename from source/flights/detail/053163.json rename to source/flights/detail/053/053163.json diff --git a/source/flights/detail/053164.json b/source/flights/detail/053/053164.json similarity index 100% rename from source/flights/detail/053164.json rename to source/flights/detail/053/053164.json diff --git a/source/flights/detail/053165.json b/source/flights/detail/053/053165.json similarity index 100% rename from source/flights/detail/053165.json rename to source/flights/detail/053/053165.json diff --git a/source/flights/detail/053166.json b/source/flights/detail/053/053166.json similarity index 100% rename from source/flights/detail/053166.json rename to source/flights/detail/053/053166.json diff --git a/source/flights/detail/053167.json b/source/flights/detail/053/053167.json similarity index 100% rename from source/flights/detail/053167.json rename to source/flights/detail/053/053167.json diff --git a/source/flights/detail/053171.json b/source/flights/detail/053/053171.json similarity index 100% rename from source/flights/detail/053171.json rename to source/flights/detail/053/053171.json diff --git a/source/flights/detail/053175.json b/source/flights/detail/053/053175.json similarity index 100% rename from source/flights/detail/053175.json rename to source/flights/detail/053/053175.json diff --git a/source/flights/detail/053176.json b/source/flights/detail/053/053176.json similarity index 100% rename from source/flights/detail/053176.json rename to source/flights/detail/053/053176.json diff --git a/source/flights/detail/053181.json b/source/flights/detail/053/053181.json similarity index 100% rename from source/flights/detail/053181.json rename to source/flights/detail/053/053181.json diff --git a/source/flights/detail/053214.json b/source/flights/detail/053/053214.json similarity index 100% rename from source/flights/detail/053214.json rename to source/flights/detail/053/053214.json diff --git a/source/flights/detail/053216.json b/source/flights/detail/053/053216.json similarity index 100% rename from source/flights/detail/053216.json rename to source/flights/detail/053/053216.json diff --git a/source/flights/detail/053223.json b/source/flights/detail/053/053223.json similarity index 100% rename from source/flights/detail/053223.json rename to source/flights/detail/053/053223.json diff --git a/source/flights/detail/053228.json b/source/flights/detail/053/053228.json similarity index 100% rename from source/flights/detail/053228.json rename to source/flights/detail/053/053228.json diff --git a/source/flights/detail/053229.json b/source/flights/detail/053/053229.json similarity index 100% rename from source/flights/detail/053229.json rename to source/flights/detail/053/053229.json diff --git a/source/flights/detail/060563.json b/source/flights/detail/060/060563.json similarity index 100% rename from source/flights/detail/060563.json rename to source/flights/detail/060/060563.json diff --git a/source/flights/detail/060617.json b/source/flights/detail/060/060617.json similarity index 100% rename from source/flights/detail/060617.json rename to source/flights/detail/060/060617.json diff --git a/source/flights/detail/060620.json b/source/flights/detail/060/060620.json similarity index 100% rename from source/flights/detail/060620.json rename to source/flights/detail/060/060620.json diff --git a/source/flights/detail/060621.json b/source/flights/detail/060/060621.json similarity index 100% rename from source/flights/detail/060621.json rename to source/flights/detail/060/060621.json diff --git a/source/flights/detail/060622.json b/source/flights/detail/060/060622.json similarity index 100% rename from source/flights/detail/060622.json rename to source/flights/detail/060/060622.json diff --git a/source/flights/detail/060623.json b/source/flights/detail/060/060623.json similarity index 100% rename from source/flights/detail/060623.json rename to source/flights/detail/060/060623.json diff --git a/source/flights/detail/060624.json b/source/flights/detail/060/060624.json similarity index 100% rename from source/flights/detail/060624.json rename to source/flights/detail/060/060624.json diff --git a/source/flights/detail/060625.json b/source/flights/detail/060/060625.json similarity index 100% rename from source/flights/detail/060625.json rename to source/flights/detail/060/060625.json diff --git a/source/flights/detail/060626.json b/source/flights/detail/060/060626.json similarity index 100% rename from source/flights/detail/060626.json rename to source/flights/detail/060/060626.json diff --git a/source/flights/detail/061289.json b/source/flights/detail/061/061289.json similarity index 100% rename from source/flights/detail/061289.json rename to source/flights/detail/061/061289.json diff --git a/source/flights/detail/061290.json b/source/flights/detail/061/061290.json similarity index 100% rename from source/flights/detail/061290.json rename to source/flights/detail/061/061290.json diff --git a/source/flights/detail/061291.json b/source/flights/detail/061/061291.json similarity index 100% rename from source/flights/detail/061291.json rename to source/flights/detail/061/061291.json diff --git a/source/flights/detail/061292.json b/source/flights/detail/061/061292.json similarity index 100% rename from source/flights/detail/061292.json rename to source/flights/detail/061/061292.json diff --git a/source/flights/detail/061516.json b/source/flights/detail/061/061516.json similarity index 100% rename from source/flights/detail/061516.json rename to source/flights/detail/061/061516.json diff --git a/source/flights/detail/061599.json b/source/flights/detail/061/061599.json similarity index 100% rename from source/flights/detail/061599.json rename to source/flights/detail/061/061599.json diff --git a/source/flights/detail/061947.json b/source/flights/detail/061/061947.json similarity index 100% rename from source/flights/detail/061947.json rename to source/flights/detail/061/061947.json diff --git a/source/flights/detail/062301.json b/source/flights/detail/062/062301.json similarity index 100% rename from source/flights/detail/062301.json rename to source/flights/detail/062/062301.json diff --git a/source/flights/detail/062304.json b/source/flights/detail/062/062304.json similarity index 100% rename from source/flights/detail/062304.json rename to source/flights/detail/062/062304.json diff --git a/source/flights/detail/062305.json b/source/flights/detail/062/062305.json similarity index 100% rename from source/flights/detail/062305.json rename to source/flights/detail/062/062305.json diff --git a/source/flights/detail/064110.json b/source/flights/detail/064/064110.json similarity index 100% rename from source/flights/detail/064110.json rename to source/flights/detail/064/064110.json diff --git a/source/flights/detail/065773.json b/source/flights/detail/065/065773.json similarity index 100% rename from source/flights/detail/065773.json rename to source/flights/detail/065/065773.json diff --git a/source/flights/detail/067632.json b/source/flights/detail/067/067632.json similarity index 100% rename from source/flights/detail/067632.json rename to source/flights/detail/067/067632.json diff --git a/source/flights/detail/067633.json b/source/flights/detail/067/067633.json similarity index 100% rename from source/flights/detail/067633.json rename to source/flights/detail/067/067633.json diff --git a/source/flights/detail/068948.json b/source/flights/detail/068/068948.json similarity index 100% rename from source/flights/detail/068948.json rename to source/flights/detail/068/068948.json diff --git a/source/flights/detail/068962.json b/source/flights/detail/068/068962.json similarity index 100% rename from source/flights/detail/068962.json rename to source/flights/detail/068/068962.json diff --git a/source/flights/detail/068963.json b/source/flights/detail/068/068963.json similarity index 100% rename from source/flights/detail/068963.json rename to source/flights/detail/068/068963.json diff --git a/source/flights/detail/068983.json b/source/flights/detail/068/068983.json similarity index 100% rename from source/flights/detail/068983.json rename to source/flights/detail/068/068983.json diff --git a/source/flights/detail/068988.json b/source/flights/detail/068/068988.json similarity index 100% rename from source/flights/detail/068988.json rename to source/flights/detail/068/068988.json diff --git a/source/flights/detail/069900.json b/source/flights/detail/069/069900.json similarity index 100% rename from source/flights/detail/069900.json rename to source/flights/detail/069/069900.json diff --git a/source/flights/detail/070491.json b/source/flights/detail/070/070491.json similarity index 100% rename from source/flights/detail/070491.json rename to source/flights/detail/070/070491.json diff --git a/source/flights/detail/071446.json b/source/flights/detail/071/071446.json similarity index 100% rename from source/flights/detail/071446.json rename to source/flights/detail/071/071446.json diff --git a/source/flights/detail/071447.json b/source/flights/detail/071/071447.json similarity index 100% rename from source/flights/detail/071447.json rename to source/flights/detail/071/071447.json diff --git a/source/flights/detail/071448.json b/source/flights/detail/071/071448.json similarity index 100% rename from source/flights/detail/071448.json rename to source/flights/detail/071/071448.json diff --git a/source/flights/detail/071449.json b/source/flights/detail/071/071449.json similarity index 100% rename from source/flights/detail/071449.json rename to source/flights/detail/071/071449.json diff --git a/source/flights/detail/072385.json b/source/flights/detail/072/072385.json similarity index 100% rename from source/flights/detail/072385.json rename to source/flights/detail/072/072385.json diff --git a/source/flights/detail/072386.json b/source/flights/detail/072/072386.json similarity index 100% rename from source/flights/detail/072386.json rename to source/flights/detail/072/072386.json diff --git a/source/flights/detail/073208.json b/source/flights/detail/073/073208.json similarity index 100% rename from source/flights/detail/073208.json rename to source/flights/detail/073/073208.json diff --git a/source/flights/detail/073990.json b/source/flights/detail/073/073990.json similarity index 100% rename from source/flights/detail/073990.json rename to source/flights/detail/073/073990.json diff --git a/source/flights/detail/073991.json b/source/flights/detail/073/073991.json similarity index 100% rename from source/flights/detail/073991.json rename to source/flights/detail/073/073991.json diff --git a/source/flights/detail/073992.json b/source/flights/detail/073/073992.json similarity index 100% rename from source/flights/detail/073992.json rename to source/flights/detail/073/073992.json diff --git a/source/flights/detail/073993.json b/source/flights/detail/073/073993.json similarity index 100% rename from source/flights/detail/073993.json rename to source/flights/detail/073/073993.json diff --git a/source/flights/detail/073994.json b/source/flights/detail/073/073994.json similarity index 100% rename from source/flights/detail/073994.json rename to source/flights/detail/073/073994.json diff --git a/source/flights/detail/073995.json b/source/flights/detail/073/073995.json similarity index 100% rename from source/flights/detail/073995.json rename to source/flights/detail/073/073995.json diff --git a/source/flights/detail/074448.json b/source/flights/detail/074/074448.json similarity index 100% rename from source/flights/detail/074448.json rename to source/flights/detail/074/074448.json diff --git a/source/flights/detail/074449.json b/source/flights/detail/074/074449.json similarity index 100% rename from source/flights/detail/074449.json rename to source/flights/detail/074/074449.json diff --git a/source/flights/detail/074450.json b/source/flights/detail/074/074450.json similarity index 100% rename from source/flights/detail/074450.json rename to source/flights/detail/074/074450.json diff --git a/source/flights/detail/074486.json b/source/flights/detail/074/074486.json similarity index 100% rename from source/flights/detail/074486.json rename to source/flights/detail/074/074486.json diff --git a/source/parts/detail/-/----.json b/source/parts/detail/-/----.json new file mode 100644 index 0000000000000000000000000000000000000000..9f5520d6dc4369882a4f6bb871b21fa680364920 --- /dev/null +++ b/source/parts/detail/-/----.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b8c39883f254be52be588ee79507e49979175eea8e5177ea0a5566431cd823 +size 245 diff --git a/source/parts/detail/-/--conical-transition.json b/source/parts/detail/-/--conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..6619a4afac7084f3802b00f8c90278029e49fcbe --- /dev/null +++ b/source/parts/detail/-/--conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2fa924d0c12e86df3fa296f7a2ae703db0e45076290846cdba075542303343 +size 559 diff --git a/source/parts/detail/.json b/source/parts/detail/.json new file mode 100644 index 0000000000000000000000000000000000000000..7b28b86431666ede14e410f4c69cd2905f0f068e --- /dev/null +++ b/source/parts/detail/.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0732c63ed93ac090e34ee389b2377d1716d19c7774b3fdc6d7e861e5c42dbed0 +size 236 diff --git a/source/parts/detail/1/1-oz-nose-weight.json b/source/parts/detail/1/1-oz-nose-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..06651713ada605aaab6f3ef4f3099d63d8b8588b --- /dev/null +++ b/source/parts/detail/1/1-oz-nose-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0d1ee4faf56791394783510a2f2fbf09e5820645bf7a4e36ee076266df50b9 +size 295 diff --git a/source/parts/detail/1/1-x-18-flagging-tape-ldpe-polyethylene-ldpe-streamer-00010-in.json b/source/parts/detail/1/1-x-18-flagging-tape-ldpe-polyethylene-ldpe-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee2eca97833e20648625325c635ccfe6352fe418 --- /dev/null +++ b/source/parts/detail/1/1-x-18-flagging-tape-ldpe-polyethylene-ldpe-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc3aeaca42f1f5f5f062623b744f9885a21f0f298ae38c0b74bb0ff889091a6 +size 494 diff --git a/source/parts/detail/1/16-oz-paintepoxymisc-crap.json b/source/parts/detail/1/16-oz-paintepoxymisc-crap.json new file mode 100644 index 0000000000000000000000000000000000000000..9f0affe980402ea5068460c775c8089bd2796331 --- /dev/null +++ b/source/parts/detail/1/16-oz-paintepoxymisc-crap.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96bdc48baf3a18698bc80875954f3ee468acc26bb59c4343b25d9e6f6c4b99f5 +size 332 diff --git a/source/parts/detail/1/1x10-mylar-mylar-streamer-00001-in.json b/source/parts/detail/1/1x10-mylar-mylar-streamer-00001-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e5ab2e15011741b65017d82424094bf5909fc86 --- /dev/null +++ b/source/parts/detail/1/1x10-mylar-mylar-streamer-00001-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46319434fe08b1e6e9053e103705794aba60dedff161b8f33a5b4b23f3ccea8b +size 386 diff --git a/source/parts/detail/3/3.json b/source/parts/detail/3/3.json new file mode 100644 index 0000000000000000000000000000000000000000..a68ff8508e9261fc19d05bbe704fb0f4ac8921d6 --- /dev/null +++ b/source/parts/detail/3/3.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012debbbb009508f86895a768201aa95f11b4aa0f9751a09e76fb8060d201226 +size 536 diff --git a/source/parts/detail/3/332-cr-ring-16600---28700-in.json b/source/parts/detail/3/332-cr-ring-16600---28700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..99ee6c3371cd58a4fdab07f4ded2f79a23d51a32 --- /dev/null +++ b/source/parts/detail/3/332-cr-ring-16600---28700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0cf46a02dd733284976167edd721800737b550ee705af9084e24ab700dc8f3 +size 395 diff --git a/source/parts/detail/3/38mm-aeropack-ring-10630---19450-in.json b/source/parts/detail/3/38mm-aeropack-ring-10630---19450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0bc82076fc23cf25a8932be4cc0c16462fd80d8 --- /dev/null +++ b/source/parts/detail/3/38mm-aeropack-ring-10630---19450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fa6510cf79dbc7eef531d0ab88f224b4f3811dc7585b7b76e41d67b8211c0ac +size 415 diff --git a/source/parts/detail/3/3d-rocketry-eye-bolt-4-14-eye-bolt22-nuts.json b/source/parts/detail/3/3d-rocketry-eye-bolt-4-14-eye-bolt22-nuts.json new file mode 100644 index 0000000000000000000000000000000000000000..4092be506c225892f5e3086191771b86c0fbc28d --- /dev/null +++ b/source/parts/detail/3/3d-rocketry-eye-bolt-4-14-eye-bolt22-nuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c897d18b68c1e636c5b8bbe8c8fac06b4008445dca1fdfc65a209dbd059543d4 +size 440 diff --git a/source/parts/detail/a/aardvark-rockets-mylar-streamer-00010-in.json b/source/parts/detail/a/aardvark-rockets-mylar-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2fd8772e91c857ad6f3a692e5b5c8f2a1600dfed --- /dev/null +++ b/source/parts/detail/a/aardvark-rockets-mylar-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56174f12a79a12b5d1b553d806c5dd8f1cb5adddc798918abfd243998d89f61a +size 444 diff --git a/source/parts/detail/a/adept-pml-alts-25-altimeter.json b/source/parts/detail/a/adept-pml-alts-25-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..0d764a44ec85e9a7dc87e956ac88c3f07cb37289 --- /dev/null +++ b/source/parts/detail/a/adept-pml-alts-25-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e9ee6666bddbb4a6410c14033456bfd1b77a0123f8343cf0da28f645a47046 +size 377 diff --git a/source/parts/detail/a/aero-pack--29mm-retainer.json b/source/parts/detail/a/aero-pack--29mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..20f873e4288dbeff8702abfefd56d49a4076ffb0 --- /dev/null +++ b/source/parts/detail/a/aero-pack--29mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b68504af12d2c0a66c41f7185750326950bc032f94a028bae55a12497a17ac +size 343 diff --git a/source/parts/detail/a/aero-pack-001-38mm-threaded-retainer.json b/source/parts/detail/a/aero-pack-001-38mm-threaded-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..1927ca5fab94d6f41275afe4f31ac266dba55929 --- /dev/null +++ b/source/parts/detail/a/aero-pack-001-38mm-threaded-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d12b194514a963011141feecd3dc70a4988f994f50718ee228a763cbc170bc27 +size 413 diff --git a/source/parts/detail/a/aero-pack-conical-transition.json b/source/parts/detail/a/aero-pack-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..6198a0b969bb2f54a6e30c41ecff57939828c75b --- /dev/null +++ b/source/parts/detail/a/aero-pack-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caea4bdc6f9ed6413bb61730f326cea4496b46c597fcd6e0650971710d9432a1 +size 614 diff --git a/source/parts/detail/a/aero-pack-m1e18-md-extension--516-stud--18-22-l.json b/source/parts/detail/a/aero-pack-m1e18-md-extension--516-stud--18-22-l.json new file mode 100644 index 0000000000000000000000000000000000000000..c6b4419ccf3b9b40912e292007dd1385a66750aa --- /dev/null +++ b/source/parts/detail/a/aero-pack-m1e18-md-extension--516-stud--18-22-l.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de4959987fe854c998128ca4ab6ddffc92d5e772c701aef2dc1c7103f32ebff +size 469 diff --git a/source/parts/detail/a/aero-pack-m1e18-md-extension-516-stud-18-22-l.json b/source/parts/detail/a/aero-pack-m1e18-md-extension-516-stud-18-22-l.json new file mode 100644 index 0000000000000000000000000000000000000000..a7c35dece0a4e1342c0779db0c286d46d7a7b74a --- /dev/null +++ b/source/parts/detail/a/aero-pack-m1e18-md-extension-516-stud-18-22-l.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edeb5aa23c0760838488e99d6a242b423f823f6f8c3dd60cc590f9e856d5b865 +size 465 diff --git a/source/parts/detail/a/aero-pack-ra-29-l2-29mm-motor-retainer-heavy-paper-tube.json b/source/parts/detail/a/aero-pack-ra-29-l2-29mm-motor-retainer-heavy-paper-tube.json new file mode 100644 index 0000000000000000000000000000000000000000..fd894cd9ac50d001826ea407472bb4fa75cb5d9d --- /dev/null +++ b/source/parts/detail/a/aero-pack-ra-29-l2-29mm-motor-retainer-heavy-paper-tube.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:246137cecb5a58cdf36358914ff3b3210d04381433dcfc9bfab9cf5d404d0662 +size 493 diff --git a/source/parts/detail/a/aero-tech-motor-casing.json b/source/parts/detail/a/aero-tech-motor-casing.json new file mode 100644 index 0000000000000000000000000000000000000000..445e2bcbe24d1b529485a772fe02b36972a045b6 --- /dev/null +++ b/source/parts/detail/a/aero-tech-motor-casing.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b41745aa1b230a7a841931e82bb36221d1a5063a5c9a64e730a5a447547f18a +size 317 diff --git a/source/parts/detail/a/aeropack-24052-24mm-engine-retainer.json b/source/parts/detail/a/aeropack-24052-24mm-engine-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..c6dad7953f52d6e903cf18358def1aae93fb6416 --- /dev/null +++ b/source/parts/detail/a/aeropack-24052-24mm-engine-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1240b43b793f1688edd52d44bf089ae55f3a43d7a96be39278e0d5935b5d9cfc +size 409 diff --git a/source/parts/detail/a/aeropack-24060-29mm-aeropack-retainer---l.json b/source/parts/detail/a/aeropack-24060-29mm-aeropack-retainer---l.json new file mode 100644 index 0000000000000000000000000000000000000000..963a1976c644125c0a4bbd1a1cfeffec4c4ded32 --- /dev/null +++ b/source/parts/detail/a/aeropack-24060-29mm-aeropack-retainer---l.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4eece88d0ad852758a3c389093b5c8563a58cf764177e1e9f0d30822382ef12 +size 433 diff --git a/source/parts/detail/a/aeropack-24067-54mm-aeropack-retainer---p.json b/source/parts/detail/a/aeropack-24067-54mm-aeropack-retainer---p.json new file mode 100644 index 0000000000000000000000000000000000000000..3c0137610f63d7b7eb8dc3d91342d04628a45e4b --- /dev/null +++ b/source/parts/detail/a/aeropack-24067-54mm-aeropack-retainer---p.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4cca689a9c554be8cd12b5d7f64eda2113b39fa02bf5322498a141952731f84 +size 433 diff --git a/source/parts/detail/a/aeropack-75-threaded-slimline-75mm-retainer.json b/source/parts/detail/a/aeropack-75-threaded-slimline-75mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..092426a25b267c237d706dafcb594e3845ba9855 --- /dev/null +++ b/source/parts/detail/a/aeropack-75-threaded-slimline-75mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3f9eb21865552667383cabd4632c5d2b2e9c7c91a9216f7d37006a6333ddac +size 441 diff --git a/source/parts/detail/a/aeropack-conical-transition.json b/source/parts/detail/a/aeropack-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..a850580ffc6447d584074973d68f51270351ee38 --- /dev/null +++ b/source/parts/detail/a/aeropack-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3a7fe8e46608501145c44eaca5c3707174bf305e9a16ecde56309c0cea6c0c +size 616 diff --git a/source/parts/detail/a/aeropack-ra75-engine-retainer-75mm-3875in-min-tube.json b/source/parts/detail/a/aeropack-ra75-engine-retainer-75mm-3875in-min-tube.json new file mode 100644 index 0000000000000000000000000000000000000000..28da59312e5ef5c16f98ae03e90404ed81c93c27 --- /dev/null +++ b/source/parts/detail/a/aeropack-ra75-engine-retainer-75mm-3875in-min-tube.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d450e8ca9117bcc71179a95965fddc5a8e237a087d0773ad4510c3a954b8424f +size 477 diff --git a/source/parts/detail/a/aeropack-retrainer-54-mm-54mm-retainer.json b/source/parts/detail/a/aeropack-retrainer-54-mm-54mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..0cb660d31e6740aa6c96dbdd56774d81733fcc04 --- /dev/null +++ b/source/parts/detail/a/aeropack-retrainer-54-mm-54mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecc1cee6688abca29d8b903a04c8f0d8c914d179013610fa3f3cd044c53eec53 +size 421 diff --git a/source/parts/detail/a/aeropack.json b/source/parts/detail/a/aeropack.json new file mode 100644 index 0000000000000000000000000000000000000000..adf5f61a52999d09aa36e4bde00e5123b0c6fc8a --- /dev/null +++ b/source/parts/detail/a/aeropack.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b701f1c863f02d6027857bd84093085b01aad9d2eb089221d3f61cb1020263 +size 261 diff --git a/source/parts/detail/a/aeropak-54-38-reducer-54mm-38mm.json b/source/parts/detail/a/aeropak-54-38-reducer-54mm-38mm.json new file mode 100644 index 0000000000000000000000000000000000000000..26e7b838ae14ee858627aca8466b987dd682ef47 --- /dev/null +++ b/source/parts/detail/a/aeropak-54-38-reducer-54mm-38mm.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065c5e2216bc6d29b09641d0c821a8930476e70926f66ccc340806b5b6b8e503 +size 393 diff --git a/source/parts/detail/a/aerospace-speciality-products-conical-transition.json b/source/parts/detail/a/aerospace-speciality-products-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..54501c38380991bd9d73a47285deafec8d283525 --- /dev/null +++ b/source/parts/detail/a/aerospace-speciality-products-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb4e1c5d00a16fa985817064071af8db45921714d32f4bb9c17658245d72fdd +size 693 diff --git a/source/parts/detail/a/aerospace-speciality-products-paper-ring-05440---09500-in.json b/source/parts/detail/a/aerospace-speciality-products-paper-ring-05440---09500-in.json index 44c1b7d8c26f37c69c9a5524b79df58c81872b99..0b29f6fee29681dcb24abb77536ee35b516299cf 100644 --- a/source/parts/detail/a/aerospace-speciality-products-paper-ring-05440---09500-in.json +++ b/source/parts/detail/a/aerospace-speciality-products-paper-ring-05440---09500-in.json @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78c100d648adde41108f737946254d0604e46cc44e01452d33f39be349a99069 -size 544 +oid sha256:62747b0675732f7bb1ce1443eac58935a3f79f5aa496f83cde843ae0bba3e0e0 +size 512 diff --git a/source/parts/detail/a/aerospace-speciality-products-paper-ring-06496---07008-in.json b/source/parts/detail/a/aerospace-speciality-products-paper-ring-06496---07008-in.json index 5bff3eeffc6a46ce9701f4386ccfda16758e10c0..e506537b8a5f8e965f4bb45e4c9d144822e3eb5d 100644 --- a/source/parts/detail/a/aerospace-speciality-products-paper-ring-06496---07008-in.json +++ b/source/parts/detail/a/aerospace-speciality-products-paper-ring-06496---07008-in.json @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a87b49a3dc5835e7e94be27f1d6c22259eff4735193a59df1ec69231259cf974 -size 540 +oid sha256:5ea81dd1b2fa5eb31763b4392b13bc2d54a1c9f7178312fba0f760353a0a41c1 +size 498 diff --git a/source/parts/detail/a/aerospace-speciality-products-paper-ring-06700---07200-in.json b/source/parts/detail/a/aerospace-speciality-products-paper-ring-06700---07200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..43b7cb6ba3a09abd4e482b179b0f51139a57b083 --- /dev/null +++ b/source/parts/detail/a/aerospace-speciality-products-paper-ring-06700---07200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f1bee5bb1d152a2d3d16683af7989552e407d7817d8735dc9c230e841df2ae +size 496 diff --git a/source/parts/detail/a/aerospace-specialty-products-conical-transition.json b/source/parts/detail/a/aerospace-specialty-products-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..b3948c9cfe5d5db0c4ba923811ac6b7152d89cc4 --- /dev/null +++ b/source/parts/detail/a/aerospace-specialty-products-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d299d12011463b666e4407b923aace2e31883d5e25f4d2b983a992f4dce87bf0 +size 691 diff --git a/source/parts/detail/a/aerotech-17386-shock-cord-6.json b/source/parts/detail/a/aerotech-17386-shock-cord-6.json new file mode 100644 index 0000000000000000000000000000000000000000..b9aee7e3a9faf307fec4d122ece6ed1c737787df --- /dev/null +++ b/source/parts/detail/a/aerotech-17386-shock-cord-6.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf83c47e6d13082fcfd8cff91d4855919a109f3803ccea96c5631f40404aa51 +size 379 diff --git a/source/parts/detail/a/aerotech-17388-shock-cord-8.json b/source/parts/detail/a/aerotech-17388-shock-cord-8.json new file mode 100644 index 0000000000000000000000000000000000000000..778269f73e689c690588500256e2bdaaedf68aca --- /dev/null +++ b/source/parts/detail/a/aerotech-17388-shock-cord-8.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e59b52fac1c8f19f9f24b43c1b1f10282f8992bb33f4c414fe333a45657553 +size 379 diff --git a/source/parts/detail/a/aerotech-19001-motor-hook.json b/source/parts/detail/a/aerotech-19001-motor-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..0540eb17e6d473c6bd9d5dea0dfc61ed0228ffc5 --- /dev/null +++ b/source/parts/detail/a/aerotech-19001-motor-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4dda976f880c46ddac27b7a4d1aa48bfbab2de1062d8d6ff095a61885b93dd +size 369 diff --git a/source/parts/detail/a/aerotech-19011-cooling-mesh.json b/source/parts/detail/a/aerotech-19011-cooling-mesh.json new file mode 100644 index 0000000000000000000000000000000000000000..a992c523dbac44fdf7b363503253494b12c88bf1 --- /dev/null +++ b/source/parts/detail/a/aerotech-19011-cooling-mesh.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e8a59cf60756b0dba17e98b6455ab6e248d8c0b5b9266d3451a6619d0a2ba7 +size 377 diff --git a/source/parts/detail/a/aerotech-19015-screw-eye.json b/source/parts/detail/a/aerotech-19015-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..7a1e1363e89ba5bfb1e0d3f988557e79c19515da --- /dev/null +++ b/source/parts/detail/a/aerotech-19015-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01cc52443f18362bbf8fd5bf73bd5ee3e57883ba17a1da56007c67c6ff2bfbf7 +size 365 diff --git a/source/parts/detail/a/aerotech-at17388-shock-cord.json b/source/parts/detail/a/aerotech-at17388-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..5816e62d8205498b91bfece2532ac6432553a165 --- /dev/null +++ b/source/parts/detail/a/aerotech-at17388-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9ad7945f21b798bc301780bf8128783ec48661ef13af3f05cfe844f6fdb050 +size 377 diff --git a/source/parts/detail/a/aerotech-at19001-motor-hook.json b/source/parts/detail/a/aerotech-at19001-motor-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..bee5665b4e94bc53ca1411e123bee991f90362e7 --- /dev/null +++ b/source/parts/detail/a/aerotech-at19001-motor-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d458b7dfb94d1485572fbfc60952f399746116783dbbda46b7fdde0460157671 +size 377 diff --git a/source/parts/detail/a/aerotech-at19011-cooling-mesh.json b/source/parts/detail/a/aerotech-at19011-cooling-mesh.json new file mode 100644 index 0000000000000000000000000000000000000000..c436eac5bb6bb8b1d42dca2658e6809a3d483c53 --- /dev/null +++ b/source/parts/detail/a/aerotech-at19011-cooling-mesh.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af97d2a8f8a2e2d7b29b86b52047d4ec11602ce542ebfe6996a6075833afdc6 +size 385 diff --git a/source/parts/detail/a/aerotech-at19015-screw-eye.json b/source/parts/detail/a/aerotech-at19015-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..d9592d5d8b79919aa92feb57ee6129d78e37ba23 --- /dev/null +++ b/source/parts/detail/a/aerotech-at19015-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17b97146ac2c8e5b9cf6e25ed82216360d098341cd313760ac3ea375b16ce64 +size 373 diff --git a/source/parts/detail/a/aerotech-at19030-ejection-gas-baffle.json b/source/parts/detail/a/aerotech-at19030-ejection-gas-baffle.json new file mode 100644 index 0000000000000000000000000000000000000000..103010e23a3f8b95651103f909e3074caff1ca89 --- /dev/null +++ b/source/parts/detail/a/aerotech-at19030-ejection-gas-baffle.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde30a6d131b051748fbb7b5c1d558e0c1a9dceb4d250f85e86828858c4e3a0c +size 413 diff --git a/source/parts/detail/a/aerotech.json b/source/parts/detail/a/aerotech.json new file mode 100644 index 0000000000000000000000000000000000000000..5a3d80ba65778a5af3f5ed51e99eb9706cabebd8 --- /dev/null +++ b/source/parts/detail/a/aerotech.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73485160ded212d3d35794419e968ddbe054bdf5dd28211f749fbc30770e958c +size 266 diff --git a/source/parts/detail/a/afw-surflon-micro-supreme-7x7-cm49-90t-a-90-ss-leader.json b/source/parts/detail/a/afw-surflon-micro-supreme-7x7-cm49-90t-a-90-ss-leader.json new file mode 100644 index 0000000000000000000000000000000000000000..135e11e9fb32ce3d70911e149edb4f8410c85d65 --- /dev/null +++ b/source/parts/detail/a/afw-surflon-micro-supreme-7x7-cm49-90t-a-90-ss-leader.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cb5e0cfb65731854d736cf0e17b9a935b2d15685584e64f7a7351eda61caac +size 483 diff --git a/source/parts/detail/a/aircraft-plywood-birch-ring-40000---60000-in.json b/source/parts/detail/a/aircraft-plywood-birch-ring-40000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e05296b806371d0f666d65d1f0f1a23240dfc03 --- /dev/null +++ b/source/parts/detail/a/aircraft-plywood-birch-ring-40000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a48724819f280e5ecc48b188606edc77d6aebacd36210c1cd4dad211652e789a +size 464 diff --git a/source/parts/detail/a/aircraft-plywood-loc-ring-12100---30000-in.json b/source/parts/detail/a/aircraft-plywood-loc-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8925395d079ace904279906c87ed72fa0a83dd1e --- /dev/null +++ b/source/parts/detail/a/aircraft-plywood-loc-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e85a5a315ea780fb808367ef51ea0ea63bb71161b806ed29b89999025b768e7 +size 434 diff --git a/source/parts/detail/a/aircraft-plywood-loc-ring-31000---53800-in.json b/source/parts/detail/a/aircraft-plywood-loc-ring-31000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b838357ab769930de5c969443ff62e30ee46c4e --- /dev/null +++ b/source/parts/detail/a/aircraft-plywood-loc-ring-31000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c97fcd19d08868915e086feeb99828a4199c345b3fe25099b062a9001c9bab +size 426 diff --git a/source/parts/detail/a/altimeter-one-apogee-09138-mini-altimeter.json b/source/parts/detail/a/altimeter-one-apogee-09138-mini-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..44110b59d8eefbc89a7b234c0b23eff96282cef8 --- /dev/null +++ b/source/parts/detail/a/altimeter-one-apogee-09138-mini-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b0f88a02b98c902c63e09c0b730f9f1e1aa668ee9df1179a47cbf56cff5781 +size 433 diff --git a/source/parts/detail/a/altimeter-two--jolly-logic-thingy.json b/source/parts/detail/a/altimeter-two--jolly-logic-thingy.json new file mode 100644 index 0000000000000000000000000000000000000000..de0035a864e4ce75064aa3f94edadc585dad0d2a --- /dev/null +++ b/source/parts/detail/a/altimeter-two--jolly-logic-thingy.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd48ab6a37009ae5a9bfd74bdfa4ffbe324f8770cf7f89da0796ee21131f099e +size 379 diff --git a/source/parts/detail/a/aluminum-ring-11417---15000-in.json b/source/parts/detail/a/aluminum-ring-11417---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb793542858c8f35c68c3b73bf350cfcdf28fb55 --- /dev/null +++ b/source/parts/detail/a/aluminum-ring-11417---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0b9db1f656e867f3e0b0af79884f98c5572a8a116afcfa623de28127388702 +size 393 diff --git a/source/parts/detail/a/aluminum-ring-37500---38750-in.json b/source/parts/detail/a/aluminum-ring-37500---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74b4a58ebcf376d0551d4f89f7af6286b0e0db3d --- /dev/null +++ b/source/parts/detail/a/aluminum-ring-37500---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14249758989944c6a327f7e9b8dc1cc1809f15dc9f7380dcb8c3c1e59fa1ae1f +size 394 diff --git a/source/parts/detail/a/american-missiles.json b/source/parts/detail/a/american-missiles.json new file mode 100644 index 0000000000000000000000000000000000000000..269732acba77ca00448dc1ae0c11f6183460284f --- /dev/null +++ b/source/parts/detail/a/american-missiles.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2402dd05606046659e517b2603967800a42131aa383dbc330ff477ce50d7fb6a +size 297 diff --git a/source/parts/detail/a/apo11o-mylar-streamer-00015-in.json b/source/parts/detail/a/apo11o-mylar-streamer-00015-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0802817218e326f65a3890ad0ca0120ab069619 --- /dev/null +++ b/source/parts/detail/a/apo11o-mylar-streamer-00015-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93d501e9923dac6f543920a2f30e77e53a03f7ef0ec8f04fa1da62115cedf0c +size 400 diff --git a/source/parts/detail/a/apogee-13031-cr-18-24-paper-ring-07360---09500-in.json b/source/parts/detail/a/apogee-13031-cr-18-24-paper-ring-07360---09500-in.json index dba1e6c35f2b2baaa82c4f489ec9a4272857e275..9af1c5b609fed349b1fc1ab8cf325091664052f7 100644 --- a/source/parts/detail/a/apogee-13031-cr-18-24-paper-ring-07360---09500-in.json +++ b/source/parts/detail/a/apogee-13031-cr-18-24-paper-ring-07360---09500-in.json @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95dc7bd26b95309ecda008b4c4e666e70e90973941c93f2926bc93d92ce59eb8 -size 483 +oid sha256:33e3d514e9906139aa74671a941a3e764dcd0d885fc830403438907d7b4c92a6 +size 521 diff --git a/source/parts/detail/apogee-13040-eb-10-paper-ring-01880---04220-in.json b/source/parts/detail/a/apogee-13040-eb-10-paper-ring-01880---04220-in.json similarity index 100% rename from source/parts/detail/apogee-13040-eb-10-paper-ring-01880---04220-in.json rename to source/parts/detail/a/apogee-13040-eb-10-paper-ring-01880---04220-in.json diff --git a/source/parts/detail/a/apogee-components-13-oz-ripstop-nylon-skyangle-streamer-00010-in.json b/source/parts/detail/a/apogee-components-13-oz-ripstop-nylon-skyangle-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66a4e921e85155546463b2d7ecdd033b0873f890 --- /dev/null +++ b/source/parts/detail/a/apogee-components-13-oz-ripstop-nylon-skyangle-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24b2dc9aa63d03192666a562a968f69d6b180df802ff6867833318d47e3b966 +size 540 diff --git a/source/parts/detail/a/apogee-components-13-oz-ripstop-nylon-skyangle-streamer-00500-in.json b/source/parts/detail/a/apogee-components-13-oz-ripstop-nylon-skyangle-streamer-00500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1079afa885477b9be247d040d55941bf0b69ec3e --- /dev/null +++ b/source/parts/detail/a/apogee-components-13-oz-ripstop-nylon-skyangle-streamer-00500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12a2db0f7b72bb16dfb4442f4e96897d19de314c9ba3dcedb24ecb3d79d2876 +size 514 diff --git a/source/parts/detail/a/apogee-components-18-aircraft-plywood-ring-09800---25900-in.json b/source/parts/detail/a/apogee-components-18-aircraft-plywood-ring-09800---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2e909186ee6aee8c04388b3849955ad710caf315 --- /dev/null +++ b/source/parts/detail/a/apogee-components-18-aircraft-plywood-ring-09800---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d941e93c9b29a03c579389b3dd3dda8d8918bb01d68e9e6d5923900022f660a +size 492 diff --git a/source/parts/detail/a/apogee-components-19080-wnc-13b.json b/source/parts/detail/a/apogee-components-19080-wnc-13b.json new file mode 100644 index 0000000000000000000000000000000000000000..e93e5f3118a1ee9f46b78475269b5203a1ac7950 --- /dev/null +++ b/source/parts/detail/a/apogee-components-19080-wnc-13b.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3df522d01df0625fc2487c3c8919ec993d27a1e0182ef37fe8f1702d590e1a +size 382 diff --git a/source/parts/detail/a/apogee-components-24041-standard-size-engine-hook.json b/source/parts/detail/a/apogee-components-24041-standard-size-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..8e76722895c7ee922ffa3debfdda741afb39fb70 --- /dev/null +++ b/source/parts/detail/a/apogee-components-24041-standard-size-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b723549e0c70b7d8889ba5535f13c9ad3a5f24be9fd52615a4d988b428d389f2 +size 454 diff --git a/source/parts/detail/a/apogee-components-24046-crimped-engine-hook-275-inch-long.json b/source/parts/detail/a/apogee-components-24046-crimped-engine-hook-275-inch-long.json new file mode 100644 index 0000000000000000000000000000000000000000..d05976a3ff86943006963c72306b11ddfcecdac4 --- /dev/null +++ b/source/parts/detail/a/apogee-components-24046-crimped-engine-hook-275-inch-long.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d459c9db9f8e347008127ad1c5357ddc7efd00a309a0dcfcb5d0288e6f59393 +size 492 diff --git a/source/parts/detail/a/apogee-components-24048-18mm-engine-size-engine-hook.json b/source/parts/detail/a/apogee-components-24048-18mm-engine-size-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..6f459595be433ac14ad2c07416a2ca1a71daa2e1 --- /dev/null +++ b/source/parts/detail/a/apogee-components-24048-18mm-engine-size-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c94d88ea495dfd841dda3260b023f401f2728b624a54a989a2fc390f341e6172 +size 466 diff --git a/source/parts/detail/a/apogee-components-24049-estes-e-engine-hook-375in.json b/source/parts/detail/a/apogee-components-24049-estes-e-engine-hook-375in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c0fdbf87b0bd0bae096421b6f37273edaacb7f1 --- /dev/null +++ b/source/parts/detail/a/apogee-components-24049-estes-e-engine-hook-375in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:853df11be1a1d760c4ea108c7b26cb0343b7665a5b3d6e1fbb9eedc7b0ffb12e +size 456 diff --git a/source/parts/detail/a/apogee-components-29302-nomex-chute-protector-6in.json b/source/parts/detail/a/apogee-components-29302-nomex-chute-protector-6in.json new file mode 100644 index 0000000000000000000000000000000000000000..18d28435e1f93374b56b62d7097991b7628d03f6 --- /dev/null +++ b/source/parts/detail/a/apogee-components-29302-nomex-chute-protector-6in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3acaa5bc8889d705afe36fd3c7fded780ddc6f7e0718d0df34f7c82e82a6aa +size 454 diff --git a/source/parts/detail/a/apogee-components-29611-small-screw-eye.json b/source/parts/detail/a/apogee-components-29611-small-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..23155dc7abc3e0902ff85fe588c5779f97317346 --- /dev/null +++ b/source/parts/detail/a/apogee-components-29611-small-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0dfa901355a2ffd189db52582c475017dd462bfd3aa0b2061fd221d344a7cb2 +size 414 diff --git a/source/parts/detail/a/apogee-components-29623-14-forged-eye-bolt.json b/source/parts/detail/a/apogee-components-29623-14-forged-eye-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..8a7c283fb3dbf0b37bea1521c17abda7c53dc50a --- /dev/null +++ b/source/parts/detail/a/apogee-components-29623-14-forged-eye-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c29824f58449a0ea2633d06be525e0bac43e020285b3ac07ff5e7d42a8d9b2 +size 444 diff --git a/source/parts/detail/a/apogee-components-29625-screw-eye-large---for-mid-power-rockets.json b/source/parts/detail/a/apogee-components-29625-screw-eye-large---for-mid-power-rockets.json new file mode 100644 index 0000000000000000000000000000000000000000..4e2968452e0a166abf23fb2bd4976fba596ab3ca --- /dev/null +++ b/source/parts/detail/a/apogee-components-29625-screw-eye-large---for-mid-power-rockets.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c17da9aca0cfa799bb8c651c5710f8edad3ff0f9ee41de998b1efb67dc4b1f1 +size 514 diff --git a/source/parts/detail/a/apogee-components-29629-eyebolt---14-20-shank-with-nuts-and-washers.json b/source/parts/detail/a/apogee-components-29629-eyebolt---14-20-shank-with-nuts-and-washers.json new file mode 100644 index 0000000000000000000000000000000000000000..9a88e359ebd2f0c946bc282ebcbc85167907374e --- /dev/null +++ b/source/parts/detail/a/apogee-components-29629-eyebolt---14-20-shank-with-nuts-and-washers.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:974b7e4351daf3b9db2d9ef2d1461c819d1b9c07b3f8ec090ee96e8927a348ec +size 528 diff --git a/source/parts/detail/a/apogee-components-30325-kevlar-cord--100lb.json b/source/parts/detail/a/apogee-components-30325-kevlar-cord--100lb.json new file mode 100644 index 0000000000000000000000000000000000000000..27df8698c6d22528376ab5fb5d8bba73ed6e75f9 --- /dev/null +++ b/source/parts/detail/a/apogee-components-30325-kevlar-cord--100lb.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e244b630886c424ab6672bd7bfa7c2a21406a9b6e0724e040d49feeda7e03bcf +size 428 diff --git a/source/parts/detail/apogee-components-316-aircraft-plywood-ring-40000---97500-in.json b/source/parts/detail/a/apogee-components-316-aircraft-plywood-ring-40000---97500-in.json similarity index 100% rename from source/parts/detail/apogee-components-316-aircraft-plywood-ring-40000---97500-in.json rename to source/parts/detail/a/apogee-components-316-aircraft-plywood-ring-40000---97500-in.json diff --git a/source/parts/detail/apogee-components-6oz--2oz-fg--poster-board-ring-09449---30000-in.json b/source/parts/detail/a/apogee-components-6oz--2oz-fg--poster-board-ring-09449---30000-in.json similarity index 100% rename from source/parts/detail/apogee-components-6oz--2oz-fg--poster-board-ring-09449---30000-in.json rename to source/parts/detail/a/apogee-components-6oz--2oz-fg--poster-board-ring-09449---30000-in.json diff --git a/source/parts/detail/apogee-components-aircraft-plywood-birch-ring-00000---15150-in.json b/source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-00000---15150-in.json similarity index 100% rename from source/parts/detail/apogee-components-aircraft-plywood-birch-ring-00000---15150-in.json rename to source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-00000---15150-in.json diff --git a/source/parts/detail/apogee-components-aircraft-plywood-birch-ring-00000---15950-in.json b/source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-00000---15950-in.json similarity index 100% rename from source/parts/detail/apogee-components-aircraft-plywood-birch-ring-00000---15950-in.json rename to source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-00000---15950-in.json diff --git a/source/parts/detail/apogee-components-aircraft-plywood-birch-ring-07400---09450-in.json b/source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-07400---09450-in.json similarity index 100% rename from source/parts/detail/apogee-components-aircraft-plywood-birch-ring-07400---09450-in.json rename to source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-07400---09450-in.json diff --git a/source/parts/detail/apogee-components-aircraft-plywood-birch-ring-09760---15950-in.json b/source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-09760---15950-in.json similarity index 100% rename from source/parts/detail/apogee-components-aircraft-plywood-birch-ring-09760---15950-in.json rename to source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-09760---15950-in.json diff --git a/source/parts/detail/apogee-components-aircraft-plywood-birch-ring-16650---20650-in.json b/source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-16650---20650-in.json similarity index 100% rename from source/parts/detail/apogee-components-aircraft-plywood-birch-ring-16650---20650-in.json rename to source/parts/detail/a/apogee-components-aircraft-plywood-birch-ring-16650---20650-in.json diff --git a/source/parts/detail/apogee-components-aircraft-plywood-loc-ring-40000---140000-in.json b/source/parts/detail/a/apogee-components-aircraft-plywood-loc-ring-40000---140000-in.json similarity index 100% rename from source/parts/detail/apogee-components-aircraft-plywood-loc-ring-40000---140000-in.json rename to source/parts/detail/a/apogee-components-aircraft-plywood-loc-ring-40000---140000-in.json diff --git a/source/parts/detail/apogee-components-aircraft-plywood-loc-ring-40000---97500-in.json b/source/parts/detail/a/apogee-components-aircraft-plywood-loc-ring-40000---97500-in.json similarity index 100% rename from source/parts/detail/apogee-components-aircraft-plywood-loc-ring-40000---97500-in.json rename to source/parts/detail/a/apogee-components-aircraft-plywood-loc-ring-40000---97500-in.json diff --git a/source/parts/detail/apogee-components-balsa-ring-00000---02200-in.json b/source/parts/detail/a/apogee-components-balsa-ring-00000---02200-in.json similarity index 100% rename from source/parts/detail/apogee-components-balsa-ring-00000---02200-in.json rename to source/parts/detail/a/apogee-components-balsa-ring-00000---02200-in.json diff --git a/source/parts/detail/apogee-components-balsa-ring-00000---04220-in.json b/source/parts/detail/a/apogee-components-balsa-ring-00000---04220-in.json similarity index 100% rename from source/parts/detail/apogee-components-balsa-ring-00000---04220-in.json rename to source/parts/detail/a/apogee-components-balsa-ring-00000---04220-in.json diff --git a/source/parts/detail/apogee-components-balsa-ring-00000---07000-in.json b/source/parts/detail/a/apogee-components-balsa-ring-00000---07000-in.json similarity index 100% rename from source/parts/detail/apogee-components-balsa-ring-00000---07000-in.json rename to source/parts/detail/a/apogee-components-balsa-ring-00000---07000-in.json diff --git a/source/parts/detail/a/apogee-components-balsa-ring-00000---07100-in.json b/source/parts/detail/a/apogee-components-balsa-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b146e4201f297f792f6b8c5a2f23fddb6406eef2 --- /dev/null +++ b/source/parts/detail/a/apogee-components-balsa-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be097b5e74ca6f433db1aaa959860d42a8f2af86b2cb68eba6e9f512c18a0efe +size 517 diff --git a/source/parts/detail/apogee-components-balsa-ring-00000---09500-in.json b/source/parts/detail/a/apogee-components-balsa-ring-00000---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-balsa-ring-00000---09500-in.json rename to source/parts/detail/a/apogee-components-balsa-ring-00000---09500-in.json diff --git a/source/parts/detail/apogee-components-balsa-ring-00000---15900-in.json b/source/parts/detail/a/apogee-components-balsa-ring-00000---15900-in.json similarity index 100% rename from source/parts/detail/apogee-components-balsa-ring-00000---15900-in.json rename to source/parts/detail/a/apogee-components-balsa-ring-00000---15900-in.json diff --git a/source/parts/detail/a/apogee-components-balsa-ring-00000---15950-in.json b/source/parts/detail/a/apogee-components-balsa-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ddd541d68544d0afabb92de61a32ccb1758762d --- /dev/null +++ b/source/parts/detail/a/apogee-components-balsa-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6f9c3c837f24ecaeca88991c67c3cc4e987bd2e6202b8f3ba2508fd4af2b67 +size 472 diff --git a/source/parts/detail/a/apogee-components-balsa-ring-00000---25000-in.json b/source/parts/detail/a/apogee-components-balsa-ring-00000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ebc3a4107be16744e783d7a21a4f6022561a625 --- /dev/null +++ b/source/parts/detail/a/apogee-components-balsa-ring-00000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2414c2b58ee2422ce1632f0ec3fe3f88b07c9680740ad53b0bfa75069e1b5a56 +size 449 diff --git a/source/parts/detail/a/apogee-components-balsa-ring-09760---15900-in.json b/source/parts/detail/a/apogee-components-balsa-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..baf5392621a896af1c0e23ac992012011d9ed325 --- /dev/null +++ b/source/parts/detail/a/apogee-components-balsa-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a13ec8e206ed961b8aafff6e4996d52731c292a6463602c4426416f2055556f +size 449 diff --git a/source/parts/detail/a/apogee-components-basswood-ring-02500---05180-in.json b/source/parts/detail/a/apogee-components-basswood-ring-02500---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5db32cb39cd68b64d62f79f88b49bbf050e3bbc3 --- /dev/null +++ b/source/parts/detail/a/apogee-components-basswood-ring-02500---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f71e21cabe03e1a74f189a5fb08891d14c010c8a7e62eec4623e90dd07dbd3 +size 458 diff --git a/source/parts/detail/apogee-components-basswood-ring-07500---15950-in.json b/source/parts/detail/a/apogee-components-basswood-ring-07500---15950-in.json similarity index 100% rename from source/parts/detail/apogee-components-basswood-ring-07500---15950-in.json rename to source/parts/detail/a/apogee-components-basswood-ring-07500---15950-in.json diff --git a/source/parts/detail/apogee-components-birch-ring-00000---07100-in.json b/source/parts/detail/a/apogee-components-birch-ring-00000---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-birch-ring-00000---07100-in.json rename to source/parts/detail/a/apogee-components-birch-ring-00000---07100-in.json diff --git a/source/parts/detail/a/apogee-components-birch-ring-06575---07165-in.json b/source/parts/detail/a/apogee-components-birch-ring-06575---07165-in.json new file mode 100644 index 0000000000000000000000000000000000000000..636aed30f370c68c08554199c29af54b4d1d26c4 --- /dev/null +++ b/source/parts/detail/a/apogee-components-birch-ring-06575---07165-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afee787c9f348ebb3f5c9292a1b560511afde28857dfa395f2f3b42645f7c28e +size 449 diff --git a/source/parts/detail/apogee-components-cardboard-ring-00000---15900-in.json b/source/parts/detail/a/apogee-components-cardboard-ring-00000---15900-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardboard-ring-00000---15900-in.json rename to source/parts/detail/a/apogee-components-cardboard-ring-00000---15900-in.json diff --git a/source/parts/detail/apogee-components-cardboard-ring-05490---07100-in.json b/source/parts/detail/a/apogee-components-cardboard-ring-05490---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardboard-ring-05490---07100-in.json rename to source/parts/detail/a/apogee-components-cardboard-ring-05490---07100-in.json diff --git a/source/parts/detail/apogee-components-cardboard-ring-07360---09500-in.json b/source/parts/detail/a/apogee-components-cardboard-ring-07360---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardboard-ring-07360---09500-in.json rename to source/parts/detail/a/apogee-components-cardboard-ring-07360---09500-in.json diff --git a/source/parts/detail/apogee-components-cardboard-ring-07400---09450-in.json b/source/parts/detail/a/apogee-components-cardboard-ring-07400---09450-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardboard-ring-07400---09450-in.json rename to source/parts/detail/a/apogee-components-cardboard-ring-07400---09450-in.json diff --git a/source/parts/detail/apogee-components-cardboard-ring-09800---15900-in.json b/source/parts/detail/a/apogee-components-cardboard-ring-09800---15900-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardboard-ring-09800---15900-in.json rename to source/parts/detail/a/apogee-components-cardboard-ring-09800---15900-in.json diff --git a/source/parts/detail/apogee-components-cardstock-ring-07400---12800-in.json b/source/parts/detail/a/apogee-components-cardstock-ring-07400---12800-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardstock-ring-07400---12800-in.json rename to source/parts/detail/a/apogee-components-cardstock-ring-07400---12800-in.json diff --git a/source/parts/detail/apogee-components-cardstock-ring-07402---09449-in.json b/source/parts/detail/a/apogee-components-cardstock-ring-07402---09449-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardstock-ring-07402---09449-in.json rename to source/parts/detail/a/apogee-components-cardstock-ring-07402---09449-in.json diff --git a/source/parts/detail/apogee-components-cardstock-ring-07460---12650-in.json b/source/parts/detail/a/apogee-components-cardstock-ring-07460---12650-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardstock-ring-07460---12650-in.json rename to source/parts/detail/a/apogee-components-cardstock-ring-07460---12650-in.json diff --git a/source/parts/detail/apogee-components-cardstock-ring-09819---15890-in.json b/source/parts/detail/a/apogee-components-cardstock-ring-09819---15890-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardstock-ring-09819---15890-in.json rename to source/parts/detail/a/apogee-components-cardstock-ring-09819---15890-in.json diff --git a/source/parts/detail/apogee-components-cardstock-ring-09820---15890-in.json b/source/parts/detail/a/apogee-components-cardstock-ring-09820---15890-in.json similarity index 100% rename from source/parts/detail/apogee-components-cardstock-ring-09820---15890-in.json rename to source/parts/detail/a/apogee-components-cardstock-ring-09820---15890-in.json diff --git a/source/parts/detail/a/apogee-components-conical-transition.json b/source/parts/detail/a/apogee-components-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..0dcb6afcbc3a2f86c7c329d65425d448d87a46d0 --- /dev/null +++ b/source/parts/detail/a/apogee-components-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d99095eacac8193546dd5cf2ba58991d0dc63d3d6baf14dbac9ac8a71bd55c7 +size 622 diff --git a/source/parts/detail/a/apogee-components-elliptical-transition.json b/source/parts/detail/a/apogee-components-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..19a6cfa7b22edeaf0db7ae90c52081adfb1e16ec --- /dev/null +++ b/source/parts/detail/a/apogee-components-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d577f7192d04e71c9b3ce9cd6aee7c0cedc42893e022137a9161c457c1430903 +size 659 diff --git a/source/parts/detail/apogee-components-fiber-ring-05000---15900-in.json b/source/parts/detail/a/apogee-components-fiber-ring-05000---15900-in.json similarity index 100% rename from source/parts/detail/apogee-components-fiber-ring-05000---15900-in.json rename to source/parts/detail/a/apogee-components-fiber-ring-05000---15900-in.json diff --git a/source/parts/detail/apogee-components-fiber-ring-07500---15900-in.json b/source/parts/detail/a/apogee-components-fiber-ring-07500---15900-in.json similarity index 100% rename from source/parts/detail/apogee-components-fiber-ring-07500---15900-in.json rename to source/parts/detail/a/apogee-components-fiber-ring-07500---15900-in.json diff --git a/source/parts/detail/a/apogee-components-fiber-ring-09760---15900-in.json b/source/parts/detail/a/apogee-components-fiber-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f31db1b7a27f98c5fb7b5af3fe812b0b2b258f3 --- /dev/null +++ b/source/parts/detail/a/apogee-components-fiber-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95110b113fcd908b32ca4036de24cf433f69f539eaac11d19ddae0d772e3685 +size 449 diff --git a/source/parts/detail/a/apogee-components-fiberglass-ring-05000---07098-in.json b/source/parts/detail/a/apogee-components-fiberglass-ring-05000---07098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..72e161e7aaf0e2c899fa70c4acc50ab1e27a71ba --- /dev/null +++ b/source/parts/detail/a/apogee-components-fiberglass-ring-05000---07098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29775ea06076b68b18d4062a79ebca9d670cb70a25b9a622bb55aabb9f110ef0 +size 464 diff --git a/source/parts/detail/a/apogee-components-fiberglass-ring-05000---07500-in.json b/source/parts/detail/a/apogee-components-fiberglass-ring-05000---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a160b25b203842fa7bc05c6d2b3b09c065c3c441 --- /dev/null +++ b/source/parts/detail/a/apogee-components-fiberglass-ring-05000---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86ba037b5c6e5798d3a6ec6437da510239b7480f8b535125d1c35913eb7ba9c +size 464 diff --git a/source/parts/detail/apogee-components-foam-ring-11670---25350-in.json b/source/parts/detail/a/apogee-components-foam-ring-11670---25350-in.json similarity index 100% rename from source/parts/detail/apogee-components-foam-ring-11670---25350-in.json rename to source/parts/detail/a/apogee-components-foam-ring-11670---25350-in.json diff --git a/source/parts/detail/apogee-components-g10-fiberglass-ring-00000---28275-in.json b/source/parts/detail/a/apogee-components-g10-fiberglass-ring-00000---28275-in.json similarity index 100% rename from source/parts/detail/apogee-components-g10-fiberglass-ring-00000---28275-in.json rename to source/parts/detail/a/apogee-components-g10-fiberglass-ring-00000---28275-in.json diff --git a/source/parts/detail/apogee-components-g10-fiberglass-ring-00000---38976-in.json b/source/parts/detail/a/apogee-components-g10-fiberglass-ring-00000---38976-in.json similarity index 100% rename from source/parts/detail/apogee-components-g10-fiberglass-ring-00000---38976-in.json rename to source/parts/detail/a/apogee-components-g10-fiberglass-ring-00000---38976-in.json diff --git a/source/parts/detail/apogee-components-g10-fiberglass-ring-22082---30625-in.json b/source/parts/detail/a/apogee-components-g10-fiberglass-ring-22082---30625-in.json similarity index 100% rename from source/parts/detail/apogee-components-g10-fiberglass-ring-22082---30625-in.json rename to source/parts/detail/a/apogee-components-g10-fiberglass-ring-22082---30625-in.json diff --git a/source/parts/detail/apogee-components-g10-fiberglass-ring-30349---55313-in.json b/source/parts/detail/a/apogee-components-g10-fiberglass-ring-30349---55313-in.json similarity index 100% rename from source/parts/detail/apogee-components-g10-fiberglass-ring-30349---55313-in.json rename to source/parts/detail/a/apogee-components-g10-fiberglass-ring-30349---55313-in.json diff --git a/source/parts/detail/apogee-components-g10-fiberglass-ring-30625---54688-in.json b/source/parts/detail/a/apogee-components-g10-fiberglass-ring-30625---54688-in.json similarity index 100% rename from source/parts/detail/apogee-components-g10-fiberglass-ring-30625---54688-in.json rename to source/parts/detail/a/apogee-components-g10-fiberglass-ring-30625---54688-in.json diff --git a/source/parts/detail/apogee-components-g10-fiberglass-ring-37500---38800-in.json b/source/parts/detail/a/apogee-components-g10-fiberglass-ring-37500---38800-in.json similarity index 100% rename from source/parts/detail/apogee-components-g10-fiberglass-ring-37500---38800-in.json rename to source/parts/detail/a/apogee-components-g10-fiberglass-ring-37500---38800-in.json diff --git a/source/parts/detail/apogee-components-g10-pml-0125-ring-00000---30625-in.json b/source/parts/detail/a/apogee-components-g10-pml-0125-ring-00000---30625-in.json similarity index 100% rename from source/parts/detail/apogee-components-g10-pml-0125-ring-00000---30625-in.json rename to source/parts/detail/a/apogee-components-g10-pml-0125-ring-00000---30625-in.json diff --git a/source/parts/detail/a/apogee-components-haack-transition.json b/source/parts/detail/a/apogee-components-haack-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..0cf37b4d30b7face4db113338638d4c9cda18fa7 --- /dev/null +++ b/source/parts/detail/a/apogee-components-haack-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df09555564f46687a8d772d2ea10b8a59721d68bec6aec484a6ed4b2672d23ac +size 636 diff --git a/source/parts/detail/apogee-components-kraft-phenolic-ring-06560---07000-in.json b/source/parts/detail/a/apogee-components-kraft-phenolic-ring-06560---07000-in.json similarity index 100% rename from source/parts/detail/apogee-components-kraft-phenolic-ring-06560---07000-in.json rename to source/parts/detail/a/apogee-components-kraft-phenolic-ring-06560---07000-in.json diff --git a/source/parts/detail/apogee-components-kraft-phenolic-ring-06560---07100-in.json b/source/parts/detail/a/apogee-components-kraft-phenolic-ring-06560---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-kraft-phenolic-ring-06560---07100-in.json rename to source/parts/detail/a/apogee-components-kraft-phenolic-ring-06560---07100-in.json diff --git a/source/parts/detail/apogee-components-kraft-phenolic-ring-09050---09500-in.json b/source/parts/detail/a/apogee-components-kraft-phenolic-ring-09050---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-kraft-phenolic-ring-09050---09500-in.json rename to source/parts/detail/a/apogee-components-kraft-phenolic-ring-09050---09500-in.json diff --git a/source/parts/detail/a/apogee-components-kraft-phenolic-ring-12220---12920-in.json b/source/parts/detail/a/apogee-components-kraft-phenolic-ring-12220---12920-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ed103fa2548293561c775026ed946257063817c --- /dev/null +++ b/source/parts/detail/a/apogee-components-kraft-phenolic-ring-12220---12920-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8496ce05d7210932be1a8e1c55f6b8d8a7fae39d16bbfcb074f5224a1fb9d9 +size 476 diff --git a/source/parts/detail/a/apogee-components-kraft-phenolic-ring-24860---25540-in.json b/source/parts/detail/a/apogee-components-kraft-phenolic-ring-24860---25540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a12fb11f53fd2e7959151b8304b5654d0962e781 --- /dev/null +++ b/source/parts/detail/a/apogee-components-kraft-phenolic-ring-24860---25540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:716c9beeffc2fa12bc31292bdb66e99acf43f17c4728cf1bfb86ae8201d8be3f +size 506 diff --git a/source/parts/detail/a/apogee-components-lite-ply-ring-09760---21480-in.json b/source/parts/detail/a/apogee-components-lite-ply-ring-09760---21480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f3de4539ee17d5cd81edd48e80585c8ef567413 --- /dev/null +++ b/source/parts/detail/a/apogee-components-lite-ply-ring-09760---21480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41db8e2307d9c3593ef6f9478cdb3f0ddf10325f29240a8301ca79cb3cfe823 +size 458 diff --git a/source/parts/detail/a/apogee-components-lite-ply-ring-09820---25591-in.json b/source/parts/detail/a/apogee-components-lite-ply-ring-09820---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab96c07c410fb9d715f2585c5fd96ad9ac5b1567 --- /dev/null +++ b/source/parts/detail/a/apogee-components-lite-ply-ring-09820---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222e43131cce34a8d9298f57380d88f64257ccda056e750b1f27d4e5781cc958 +size 458 diff --git a/source/parts/detail/a/apogee-components-lite-ply-ring-11700---52500-in.json b/source/parts/detail/a/apogee-components-lite-ply-ring-11700---52500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e836bf1e1fa57074261385b391d1653feeb7cd7a --- /dev/null +++ b/source/parts/detail/a/apogee-components-lite-ply-ring-11700---52500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d0ec3d66f351ef1801c2ceb48f562117a370fc542b0b76846f767f2a8085e99 +size 458 diff --git a/source/parts/detail/a/apogee-components-lite-ply-ring-11700---65000-in.json b/source/parts/detail/a/apogee-components-lite-ply-ring-11700---65000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea1e1513b7c825345ff7394f859be8c1ec02daf6 --- /dev/null +++ b/source/parts/detail/a/apogee-components-lite-ply-ring-11700---65000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c7b886fb45d7f9d6360c5bedf439efdf3b921f5d523f0d0bd651a95b08de69 +size 458 diff --git a/source/parts/detail/a/apogee-components-lite-ply-ring-12100---25600-in.json b/source/parts/detail/a/apogee-components-lite-ply-ring-12100---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..004af59ed2ce7935afb9fa4371aadabee0fb60ed --- /dev/null +++ b/source/parts/detail/a/apogee-components-lite-ply-ring-12100---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771998fee159f610bea3956d1b03b879021e399975960eb3c67f010a2a423ffc +size 458 diff --git a/source/parts/detail/a/apogee-components-lite-ply-ring-15625---18500-in.json b/source/parts/detail/a/apogee-components-lite-ply-ring-15625---18500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0ed29104fc1319169a0c101fa47cf8fc5891607 --- /dev/null +++ b/source/parts/detail/a/apogee-components-lite-ply-ring-15625---18500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80926bdf5549ec94849c23f16097983628249fd6ba8d2e809d60c99c857479e8 +size 458 diff --git a/source/parts/detail/apogee-components-maple-hard-ring-24528---24803-in.json b/source/parts/detail/a/apogee-components-maple-hard-ring-24528---24803-in.json similarity index 100% rename from source/parts/detail/apogee-components-maple-hard-ring-24528---24803-in.json rename to source/parts/detail/a/apogee-components-maple-hard-ring-24528---24803-in.json diff --git a/source/parts/detail/a/apogee-components-mylar-streamer-00000-in.json b/source/parts/detail/a/apogee-components-mylar-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8a12d96a09323fa758db2b54a0936fca7de58aa3 --- /dev/null +++ b/source/parts/detail/a/apogee-components-mylar-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:788af0696a979aa3794516a669555a966baf70ef4a7c366458ff3a79eda7bb45 +size 440 diff --git a/source/parts/detail/a/apogee-components-mylar-streamer-00001-in.json b/source/parts/detail/a/apogee-components-mylar-streamer-00001-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa4c915b3a8ceef0733954e82d5bdad5671784c7 --- /dev/null +++ b/source/parts/detail/a/apogee-components-mylar-streamer-00001-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa7e8f4bb1a3a3d7c0cc69b0a18ddfbe36caf5ad4a922fa96bb3b047e8504068 +size 414 diff --git a/source/parts/detail/a/apogee-components-mylar-streamer-00010-in.json b/source/parts/detail/a/apogee-components-mylar-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a35adc8ae907ec17c54eb42bec8dbae0567d29e --- /dev/null +++ b/source/parts/detail/a/apogee-components-mylar-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cd2ab35abe1ecb9d4d9fc7d966fd6f4ad926a2c5b6be8e6ac6ccff05a52fa82 +size 419 diff --git a/source/parts/detail/a/apogee-components-mylar-streamer-00012-in.json b/source/parts/detail/a/apogee-components-mylar-streamer-00012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ae643faf9708a3986a9ef1fdc9b00bb7e831e9e --- /dev/null +++ b/source/parts/detail/a/apogee-components-mylar-streamer-00012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb1436184ffb7f2e82ea631b45623257971a8c08e22ce83ae2033edaef1b1e0 +size 445 diff --git a/source/parts/detail/a/apogee-components-mylar-streamer-00015-in.json b/source/parts/detail/a/apogee-components-mylar-streamer-00015-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e694912ed6631f7bf1ac189e6c3748b58d45762b --- /dev/null +++ b/source/parts/detail/a/apogee-components-mylar-streamer-00015-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13672c50214bf0c09ef40c4d078db89ecd98ce5ac6c4b71b4b1c4e79e54ec8ec +size 419 diff --git a/source/parts/detail/a/apogee-components-mylar-streamer-00020-in.json b/source/parts/detail/a/apogee-components-mylar-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2229260e955e6a743fa99c86a543de99086d191 --- /dev/null +++ b/source/parts/detail/a/apogee-components-mylar-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f80c73bcab81a18ee46f369d2672f262f3982cc4093f687aa9f2e7be86fae9d +size 414 diff --git a/source/parts/detail/a/apogee-components-mylar-streamer-00100-in.json b/source/parts/detail/a/apogee-components-mylar-streamer-00100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aece9c6e9c2645afb39adf76f2e826fcf38dd2bb --- /dev/null +++ b/source/parts/detail/a/apogee-components-mylar-streamer-00100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c99a0a5a90aaf5b1ab039a0309ca78ca25053e40fd8f87349bd456204f15f70 +size 414 diff --git a/source/parts/detail/a/apogee-components-mylar-streamer-00157-in.json b/source/parts/detail/a/apogee-components-mylar-streamer-00157-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e7b7341acf46a8671605a940d20f650ea2cf7c92 --- /dev/null +++ b/source/parts/detail/a/apogee-components-mylar-streamer-00157-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c483f558c75b3f9b528fecc19742a10294db0cc54b95961211cfd080df94b8 +size 414 diff --git a/source/parts/detail/a/apogee-components-ogive-transition.json b/source/parts/detail/a/apogee-components-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..e252782ce3439b48ff2a7744ee7547f7106e27bb --- /dev/null +++ b/source/parts/detail/a/apogee-components-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33d3d1799e14cf960689c3c1c7ece88e083c89eb0ec5c1c9267b550e18a94768 +size 614 diff --git a/source/parts/detail/a/apogee-components-paper-ring-00000---00000-in.json b/source/parts/detail/a/apogee-components-paper-ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90e479ef70e28604ba410227aae8e1e3977f6f79 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a52135ae1cb1584801650119e9231982c15d2529e642dc07d6928584bd52637 +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-00000---05180-in.json b/source/parts/detail/a/apogee-components-paper-ring-00000---05180-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-00000---05180-in.json rename to source/parts/detail/a/apogee-components-paper-ring-00000---05180-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-00000---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-00000---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-00000---07100-in.json rename to source/parts/detail/a/apogee-components-paper-ring-00000---07100-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-00000---09500-in.json b/source/parts/detail/a/apogee-components-paper-ring-00000---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-00000---09500-in.json rename to source/parts/detail/a/apogee-components-paper-ring-00000---09500-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-00000---15950-in.json b/source/parts/detail/a/apogee-components-paper-ring-00000---15950-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-00000---15950-in.json rename to source/parts/detail/a/apogee-components-paper-ring-00000---15950-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-00000---16350-in.json b/source/parts/detail/a/apogee-components-paper-ring-00000---16350-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-00000---16350-in.json rename to source/parts/detail/a/apogee-components-paper-ring-00000---16350-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-01900---02200-in.json b/source/parts/detail/a/apogee-components-paper-ring-01900---02200-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-01900---02200-in.json rename to source/parts/detail/a/apogee-components-paper-ring-01900---02200-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-02000---02200-in.json b/source/parts/detail/a/apogee-components-paper-ring-02000---02200-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-02000---02200-in.json rename to source/parts/detail/a/apogee-components-paper-ring-02000---02200-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-03290---04220-in.json b/source/parts/detail/a/apogee-components-paper-ring-03290---04220-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-03290---04220-in.json rename to source/parts/detail/a/apogee-components-paper-ring-03290---04220-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-03290---05180-in.json b/source/parts/detail/a/apogee-components-paper-ring-03290---05180-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-03290---05180-in.json rename to source/parts/detail/a/apogee-components-paper-ring-03290---05180-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-03290---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-03290---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-03290---07100-in.json rename to source/parts/detail/a/apogee-components-paper-ring-03290---07100-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04460---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-04460---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04460---07100-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04460---07100-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-04530---05100-in.json b/source/parts/detail/a/apogee-components-paper-ring-04530---05100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5796e2c73bb60c9e209ffee5cc8cc83c04cea649 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-04530---05100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ace50264c0577b6ec50abb55bc41927c58ee63819ecc83b461a46ae0798d3468 +size 438 diff --git a/source/parts/detail/apogee-components-paper-ring-04530---05180-in.json b/source/parts/detail/a/apogee-components-paper-ring-04530---05180-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04530---05180-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04530---05180-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04530---05280-in.json b/source/parts/detail/a/apogee-components-paper-ring-04530---05280-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04530---05280-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04530---05280-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04530---07040-in.json b/source/parts/detail/a/apogee-components-paper-ring-04530---07040-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04530---07040-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04530---07040-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04530---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-04530---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04530---07100-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04530---07100-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04530---09440-in.json b/source/parts/detail/a/apogee-components-paper-ring-04530---09440-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04530---09440-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04530---09440-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04531---07039-in.json b/source/parts/detail/a/apogee-components-paper-ring-04531---07039-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04531---07039-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04531---07039-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04760---05100-in.json b/source/parts/detail/a/apogee-components-paper-ring-04760---05100-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04760---05100-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04760---05100-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04760---05180-in.json b/source/parts/detail/a/apogee-components-paper-ring-04760---05180-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04760---05180-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04760---05180-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-04760---15800-in.json b/source/parts/detail/a/apogee-components-paper-ring-04760---15800-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-04760---15800-in.json rename to source/parts/detail/a/apogee-components-paper-ring-04760---15800-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-05000---08750-in.json b/source/parts/detail/a/apogee-components-paper-ring-05000---08750-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-05000---08750-in.json rename to source/parts/detail/a/apogee-components-paper-ring-05000---08750-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-05430---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-05430---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c69dff65c10ef095c2011c31b645740a49891e88 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-05430---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781dc0f9354e44332cd13021f255c491019d62fc1763faafa3060edcbaaa5b52 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-05430---07150-in.json b/source/parts/detail/a/apogee-components-paper-ring-05430---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..022638cec63d560b5e502ce6754620a7d534f113 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-05430---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed3a878783d646b69a96f62d24582218e21822b5f4fa63b9092497e1f1bfccd7 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-05430---10000-in.json b/source/parts/detail/a/apogee-components-paper-ring-05430---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..176de689004d67b2c79148bbbf397b60db4ae3bd --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-05430---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8652bcb4769d5aea6a768f5743bcb515b20e387bb1fc8298934b36a8cc610f93 +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-05440---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-05440---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-05440---07100-in.json rename to source/parts/detail/a/apogee-components-paper-ring-05440---07100-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-05490---07000-in.json b/source/parts/detail/a/apogee-components-paper-ring-05490---07000-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-05490---07000-in.json rename to source/parts/detail/a/apogee-components-paper-ring-05490---07000-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-05490---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-05490---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db123dc59b2af228095ccf32a1c572c58b197675 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-05490---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39ab39db8c1fac9fcfffb9ba6a86b501bc5ff57910f986fb3ba72de81dd1ae5 +size 488 diff --git a/source/parts/detail/apogee-components-paper-ring-05490---07470-in.json b/source/parts/detail/a/apogee-components-paper-ring-05490---07470-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-05490---07470-in.json rename to source/parts/detail/a/apogee-components-paper-ring-05490---07470-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-05492---07000-in.json b/source/parts/detail/a/apogee-components-paper-ring-05492---07000-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-05492---07000-in.json rename to source/parts/detail/a/apogee-components-paper-ring-05492---07000-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-06560---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-06560---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-06560---07100-in.json rename to source/parts/detail/a/apogee-components-paper-ring-06560---07100-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-07000---07130-in.json b/source/parts/detail/a/apogee-components-paper-ring-07000---07130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..38e73d44f3f6e2482db69d3a1b525cce0e86d1c8 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07000---07130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8910acb2f9a1a9c77bfcaf8236d4c5177164cf9a111007b5c7eb8168b69b8fd +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-07087---07098-in.json b/source/parts/detail/a/apogee-components-paper-ring-07087---07098-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07087---07098-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07087---07098-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-07200---13200-in.json b/source/parts/detail/a/apogee-components-paper-ring-07200---13200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d037f79ba703fbd010e1529f201d132ee1a6eb04 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07200---13200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2df440d221f8e95133d3e54c9adba1e2e7b071b7041d14c8ef8c0406e6c594d8 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07200---15900-in.json b/source/parts/detail/a/apogee-components-paper-ring-07200---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae483e9e7e78f8a0d9fc734ca9d62a394a107f98 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07200---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dfe3b4198e4f12e750b739e746fb71db467898a90f752299fa7c8aa48d20087 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07200---18600-in.json b/source/parts/detail/a/apogee-components-paper-ring-07200---18600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9695f9695036f373eda094184d303afec3f16cab --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07200---18600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2383ebed2c1817a78a9314269be0671033d03b51acebf18732e68958025355 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07358---09441-in.json b/source/parts/detail/a/apogee-components-paper-ring-07358---09441-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6ee8059989dc9f66da8861b7860304f970f0d07 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07358---09441-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a1451c5e3e810f2ffc139e42b1f88367250b813950ed268de61953901875a19 +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-07358---09500-in.json b/source/parts/detail/a/apogee-components-paper-ring-07358---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07358---09500-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07358---09500-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07360---09440-in.json b/source/parts/detail/a/apogee-components-paper-ring-07360---09440-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07360---09440-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07360---09440-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07360---09478-in.json b/source/parts/detail/a/apogee-components-paper-ring-07360---09478-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07360---09478-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07360---09478-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07360---09500-in.json b/source/parts/detail/a/apogee-components-paper-ring-07360---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07360---09500-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07360---09500-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-07360---12800-in.json b/source/parts/detail/a/apogee-components-paper-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6fbe7078ecb4ecaa094e94e9eef62ba7a2ad772d --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:335f1c336c8116404b253a271251e82c54511bcdb85681e2f06134d6e0e727c6 +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-07360---15900-in.json b/source/parts/detail/a/apogee-components-paper-ring-07360---15900-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07360---15900-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07360---15900-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07360---15950-in.json b/source/parts/detail/a/apogee-components-paper-ring-07360---15950-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07360---15950-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07360---15950-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-07360---20000-in.json b/source/parts/detail/a/apogee-components-paper-ring-07360---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..98cc8cbc23ebc5a5ee863e47d3fe22c3cdbea277 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07360---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:530f9423a213ecbde705d1cddd5ea0d162a981792c1161e2da8f612b5a05a469 +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-07360---21800-in.json b/source/parts/detail/a/apogee-components-paper-ring-07360---21800-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07360---21800-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07360---21800-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---07100-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---07100-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---07100-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---07100-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---09400-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---09400-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---09400-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---09400-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---09449-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---09449-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---09449-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---09449-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---09450-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---09450-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---09450-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---09450-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---09500-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---09500-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---09500-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---09540-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---09540-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---09540-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---09540-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---09900-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---09900-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---09900-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---09900-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---10000-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---10000-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---10000-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---10000-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---11300-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---11300-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---11300-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---11300-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-07400---11450-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d919cf81772290b112498cdfdaa097e953e1543 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07400---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0214ba293c5056cafe94a724e98c8883800a6326ffe9bbe7f6269470fc86017f +size 481 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07400---12500-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6872944e3a30fcd55555cc094cedbe2195c6afd9 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07400---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6811159ff7a10d2f2d1f615fc1384fa3ce1647ab62c3bd4ae2d808c8c984f35c +size 481 diff --git a/source/parts/detail/apogee-components-paper-ring-07400---12800-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---12800-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---12800-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---12800-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07400---15900-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---15900-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---15900-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---15900-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-07400---25000-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee39474d6dc7bf0d947d32a6443e56cea1e000bd --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07400---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3cd6e36769447a48af66954648004c56ab42554e09e6784a8fc7228ed56e211 +size 481 diff --git a/source/parts/detail/apogee-components-paper-ring-07400---25880-in.json b/source/parts/detail/a/apogee-components-paper-ring-07400---25880-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07400---25880-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07400---25880-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07402---09449-in.json b/source/parts/detail/a/apogee-components-paper-ring-07402---09449-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07402---09449-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07402---09449-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-07402---09500-in.json b/source/parts/detail/a/apogee-components-paper-ring-07402---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-07402---09500-in.json rename to source/parts/detail/a/apogee-components-paper-ring-07402---09500-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-07441---07874-in.json b/source/parts/detail/a/apogee-components-paper-ring-07441---07874-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d089c6259208f497124671a9ec787353ee42e766 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07441---07874-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f8cb5284873da24a7eb5d50330b38dea0b29ca8a5584bc537e8f07814de90a0 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07590---10934-in.json b/source/parts/detail/a/apogee-components-paper-ring-07590---10934-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aecf15f647b246cc911963340a1cbc45c82f93ac --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07590---10934-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34d5c2466835bcba6756dafcb7620e3a0d06cc2990274077ee4caf2a1383416 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07590---13191-in.json b/source/parts/detail/a/apogee-components-paper-ring-07590---13191-in.json new file mode 100644 index 0000000000000000000000000000000000000000..faab39f7c4d32b808e2fa292b37a833589f19c79 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07590---13191-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955c93dbb165f304d7626cc44619762295ae175a7c7218c8c1fe4237e080f07e +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07590---13755-in.json b/source/parts/detail/a/apogee-components-paper-ring-07590---13755-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c023b26f7528bee1ca1e3c176d0bbb5c92c5ae2 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07590---13755-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc72c40770b049a898604985a9cb08226765457da5e5f50ebf6be7a02206169 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07590---15447-in.json b/source/parts/detail/a/apogee-components-paper-ring-07590---15447-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0b40ba33e9d645cd75ac6de2cfe54b403166dcd --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07590---15447-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08f95ca96c5a3b2a11dabb54def4dea60a21ba141fd1714676e0ede99b32004c +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07590---17704-in.json b/source/parts/detail/a/apogee-components-paper-ring-07590---17704-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1babfb071264139dcef0f4441b0a9c94d1abcba9 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07590---17704-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72a7ebe8fcfb011e5bdee197fcccba6b50c1c4e3c702fce757e896f17128fd6 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07591---16000-in.json b/source/parts/detail/a/apogee-components-paper-ring-07591---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d475e0aab657366749df4afec9ea11d33369773e --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07591---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a8e2bf7be15bdebae4ac14dc23f44720770f2754a27d4eedb617c8de0af4569 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-07902---13402-in.json b/source/parts/detail/a/apogee-components-paper-ring-07902---13402-in.json new file mode 100644 index 0000000000000000000000000000000000000000..136ceb37ae7ce070f4b915eddb3aa93821fdbb65 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-07902---13402-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d4801241d6df669276a0f04555f8a90419d73aac970f9539ebc3df737c332ce +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-08000---09360-in.json b/source/parts/detail/a/apogee-components-paper-ring-08000---09360-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-08000---09360-in.json rename to source/parts/detail/a/apogee-components-paper-ring-08000---09360-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-08125---08750-in.json b/source/parts/detail/a/apogee-components-paper-ring-08125---08750-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-08125---08750-in.json rename to source/parts/detail/a/apogee-components-paper-ring-08125---08750-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-09500---16300-in.json b/source/parts/detail/a/apogee-components-paper-ring-09500---16300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec02d8c3251c524b372a5cfdfec94d7b1154f48e --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-09500---16300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c120545c8517d9980778217f4f6753b3d1d555743c0a1ff5aa4ba8b07f2f8996 +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-09500---25900-in.json b/source/parts/detail/a/apogee-components-paper-ring-09500---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d596e9d6cd666acb5ad37399e25c40b16e8f368d --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-09500---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e1d1ec45b6789eab34430b3810cdc51f4ba3b8263fda28d6e6f32889f94c98f +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-09760---11400-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---11400-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09760---11400-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09760---11400-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09760---12800-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---12800-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09760---12800-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09760---12800-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09760---12830-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---12830-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09760---12830-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09760---12830-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09760---13040-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---13040-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09760---13040-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09760---13040-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-09760---15800-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---15800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac0ba55208894958c3e675d4cbf1a4f2f241ab19 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-09760---15800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76164ce558c7d543f8ef889f82b6acbce84266f93778a5f742c73b75c4538d3d +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-09760---15950-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---15950-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09760---15950-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09760---15950-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09760---21800-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---21800-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09760---21800-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09760---21800-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09760---25880-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---25880-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09760---25880-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09760---25880-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-09760---25882-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---25882-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62809c9c1205a01ce9500b098044b83ab19d137b --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-09760---25882-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c682579274dee87a0e1b39ea130cf60eb487eefac06f98372ebc7ecf143939ec +size 487 diff --git a/source/parts/detail/apogee-components-paper-ring-09760---25900-in.json b/source/parts/detail/a/apogee-components-paper-ring-09760---25900-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09760---25900-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09760---25900-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09800---15900-in.json b/source/parts/detail/a/apogee-components-paper-ring-09800---15900-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09800---15900-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09800---15900-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09819---11299-in.json b/source/parts/detail/a/apogee-components-paper-ring-09819---11299-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09819---11299-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09819---11299-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09819---12598-in.json b/source/parts/detail/a/apogee-components-paper-ring-09819---12598-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09819---12598-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09819---12598-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---11300-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---11300-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---11300-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---11300-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---11400-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---11400-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---11400-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---11400-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---11450-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---11450-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---11450-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---11450-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---11500-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---11500-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---11500-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---11500-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---12799-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---12799-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---12799-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---12799-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---12800-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---12800-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---12800-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---12800-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---12830-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---12830-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---12830-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---12830-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---16250-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---16250-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---16250-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---16250-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-09820---19000-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---19000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b41661dd2daf3f9fa1eb4b91a437870898b7315 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-09820---19000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e29ab69f41a85638e12766744b53a682e8246140251944987a2cfaedf83ed980 +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-09820---21700-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---21700-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---21700-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---21700-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-09820---22700-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---22700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa3c69364d2a1080832bbeacdb31d5f1dbaf3f2a --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-09820---22700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81bb77343a107ba106d48ac286cd5bda40ba32a5345e95aea6f6fbfe8e51e74d +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-09820---25000-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---25000-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---25000-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---25000-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-09820---25500-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---25500-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-09820---25500-in.json rename to source/parts/detail/a/apogee-components-paper-ring-09820---25500-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-09820---25591-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9f83ff9651870ca0d5f3c1326426b60d90ef5214 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-09820---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc90fb5f0fa915768a1db62fe204681ece1f6ea68fda720663171eb79ddc59fd +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-09820---25800-in.json b/source/parts/detail/a/apogee-components-paper-ring-09820---25800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f627f798c67504ef373ce7cdc139acdee128a33 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-09820---25800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23cf01ff81acf43b953ec8b7303b56a777784c3f4bc2e5fba97145e6812c1ae +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-10980---09500-in.json b/source/parts/detail/a/apogee-components-paper-ring-10980---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-10980---09500-in.json rename to source/parts/detail/a/apogee-components-paper-ring-10980---09500-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-10980---11400-in.json b/source/parts/detail/a/apogee-components-paper-ring-10980---11400-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-10980---11400-in.json rename to source/parts/detail/a/apogee-components-paper-ring-10980---11400-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-11000---11300-in.json b/source/parts/detail/a/apogee-components-paper-ring-11000---11300-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-11000---11300-in.json rename to source/parts/detail/a/apogee-components-paper-ring-11000---11300-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-11000---11400-in.json b/source/parts/detail/a/apogee-components-paper-ring-11000---11400-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-11000---11400-in.json rename to source/parts/detail/a/apogee-components-paper-ring-11000---11400-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-11340---11400-in.json b/source/parts/detail/a/apogee-components-paper-ring-11340---11400-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-11340---11400-in.json rename to source/parts/detail/a/apogee-components-paper-ring-11340---11400-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-11417---25900-in.json b/source/parts/detail/a/apogee-components-paper-ring-11417---25900-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-11417---25900-in.json rename to source/parts/detail/a/apogee-components-paper-ring-11417---25900-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-12100---21400-in.json b/source/parts/detail/a/apogee-components-paper-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a1c38e90226ab2f80b0079797c300fadc7fea8aa --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65836c7f0e1ed3acfd1d99b219a3cb3f4eca0e3e550f93aa0c6e3ae518f19f93 +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-130000---477000-in.json b/source/parts/detail/a/apogee-components-paper-ring-130000---477000-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-130000---477000-in.json rename to source/parts/detail/a/apogee-components-paper-ring-130000---477000-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-13200---15900-in.json b/source/parts/detail/a/apogee-components-paper-ring-13200---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a1dee13d081df5d702abcf14018760593cd5617 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-13200---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba71c2a66541efd78a59d85e9089e91aa1eab32f87dfb83d4ce2f722c276240e +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-15500---15902-in.json b/source/parts/detail/a/apogee-components-paper-ring-15500---15902-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-15500---15902-in.json rename to source/parts/detail/a/apogee-components-paper-ring-15500---15902-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-18150---19350-in.json b/source/parts/detail/a/apogee-components-paper-ring-18150---19350-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9490abcabbee7ba8dfb484ff6297295b0e41dd13 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-18150---19350-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a22050a36caacbd117261bba0804542e4cb0a3a3ccb9428fc9aeec2e8e66f7 +size 454 diff --git a/source/parts/detail/a/apogee-components-paper-ring-18150---21750-in.json b/source/parts/detail/a/apogee-components-paper-ring-18150---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a5aef8c3d12c96855146b2556cc7fbe767e1dfde --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-18150---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99c0a4ef3de52daca3d0f4b895cdef8e980cd2477b7bddc35bc8a2f0c90098f +size 449 diff --git a/source/parts/detail/a/apogee-components-paper-ring-18880---19380-in.json b/source/parts/detail/a/apogee-components-paper-ring-18880---19380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7d8b16610898add03a80a29112c8ee9410f43a4 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-18880---19380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79922056a0e4818b96e2feccc4fd7cb15d95c4d8d3646a3585f73344233060e +size 449 diff --git a/source/parts/detail/apogee-components-paper-ring-21100---21700-in.json b/source/parts/detail/a/apogee-components-paper-ring-21100---21700-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-21100---21700-in.json rename to source/parts/detail/a/apogee-components-paper-ring-21100---21700-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-24860---25540-in.json b/source/parts/detail/a/apogee-components-paper-ring-24860---25540-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-24860---25540-in.json rename to source/parts/detail/a/apogee-components-paper-ring-24860---25540-in.json diff --git a/source/parts/detail/a/apogee-components-paper-ring-26000---39000-in.json b/source/parts/detail/a/apogee-components-paper-ring-26000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb3d94eceb1b68ddd62c2752560ea938ee51322b --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-ring-26000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ff55750dc837cf723d17e955e669c5f1141b8699a07a1d215ef41be1b2970e +size 487 diff --git a/source/parts/detail/apogee-components-paper-ring-28000---30000-in.json b/source/parts/detail/a/apogee-components-paper-ring-28000---30000-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-28000---30000-in.json rename to source/parts/detail/a/apogee-components-paper-ring-28000---30000-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-37040---38880-in.json b/source/parts/detail/a/apogee-components-paper-ring-37040---38880-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-37040---38880-in.json rename to source/parts/detail/a/apogee-components-paper-ring-37040---38880-in.json diff --git a/source/parts/detail/apogee-components-paper-ring-40000---140000-in.json b/source/parts/detail/a/apogee-components-paper-ring-40000---140000-in.json similarity index 100% rename from source/parts/detail/apogee-components-paper-ring-40000---140000-in.json rename to source/parts/detail/a/apogee-components-paper-ring-40000---140000-in.json diff --git a/source/parts/detail/a/apogee-components-paper-streamer-00000-in.json b/source/parts/detail/a/apogee-components-paper-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dac650f589a123b425b93324c8d4a9e44e414d48 --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17cbc8da2ec85560c518a2918cb02f32200fc7bc2fb8cfa89971e368f7d5429d +size 440 diff --git a/source/parts/detail/a/apogee-components-paper-streamer-00010-in.json b/source/parts/detail/a/apogee-components-paper-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..436795bff2b823de80253450053fda6399171ebb --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68308e33e86691e7805ef19db2bc304116ead078f571f297436f078f8857affb +size 440 diff --git a/source/parts/detail/a/apogee-components-paper-streamer-00100-in.json b/source/parts/detail/a/apogee-components-paper-streamer-00100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e9da21d59ec273eff3db840690894a50eb5b70f --- /dev/null +++ b/source/parts/detail/a/apogee-components-paper-streamer-00100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25c8427adddcac69566f9d6902115a3f61ca11ab23195bf242c54a47aea2ddfc +size 440 diff --git a/source/parts/detail/a/apogee-components-parabolic-transition.json b/source/parts/detail/a/apogee-components-parabolic-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..5309333ef7803c810787ce096e08bf4b1ad84312 --- /dev/null +++ b/source/parts/detail/a/apogee-components-parabolic-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f569baf51347d1f8d9d3d6740697f6623009bddb2239f9bfc1820bc320289878 +size 625 diff --git a/source/parts/detail/apogee-components-plywood-ring-07382---15831-in.json b/source/parts/detail/a/apogee-components-plywood-ring-07382---15831-in.json similarity index 100% rename from source/parts/detail/apogee-components-plywood-ring-07382---15831-in.json rename to source/parts/detail/a/apogee-components-plywood-ring-07382---15831-in.json diff --git a/source/parts/detail/apogee-components-plywood-ring-09780---25530-in.json b/source/parts/detail/a/apogee-components-plywood-ring-09780---25530-in.json similarity index 100% rename from source/parts/detail/apogee-components-plywood-ring-09780---25530-in.json rename to source/parts/detail/a/apogee-components-plywood-ring-09780---25530-in.json diff --git a/source/parts/detail/apogee-components-plywood-ring-09831---15882-in.json b/source/parts/detail/a/apogee-components-plywood-ring-09831---15882-in.json similarity index 100% rename from source/parts/detail/apogee-components-plywood-ring-09831---15882-in.json rename to source/parts/detail/a/apogee-components-plywood-ring-09831---15882-in.json diff --git a/source/parts/detail/apogee-components-plywood-ring-11800---25580-in.json b/source/parts/detail/a/apogee-components-plywood-ring-11800---25580-in.json similarity index 100% rename from source/parts/detail/apogee-components-plywood-ring-11800---25580-in.json rename to source/parts/detail/a/apogee-components-plywood-ring-11800---25580-in.json diff --git a/source/parts/detail/apogee-components-plywood-ring-22591---38000-in.json b/source/parts/detail/a/apogee-components-plywood-ring-22591---38000-in.json similarity index 100% rename from source/parts/detail/apogee-components-plywood-ring-22591---38000-in.json rename to source/parts/detail/a/apogee-components-plywood-ring-22591---38000-in.json diff --git a/source/parts/detail/apogee-components-plywood-ring-22591---38610-in.json b/source/parts/detail/a/apogee-components-plywood-ring-22591---38610-in.json similarity index 100% rename from source/parts/detail/apogee-components-plywood-ring-22591---38610-in.json rename to source/parts/detail/a/apogee-components-plywood-ring-22591---38610-in.json diff --git a/source/parts/detail/apogee-components-polycarbonate-ring-05490---07000-in.json b/source/parts/detail/a/apogee-components-polycarbonate-ring-05490---07000-in.json similarity index 100% rename from source/parts/detail/apogee-components-polycarbonate-ring-05490---07000-in.json rename to source/parts/detail/a/apogee-components-polycarbonate-ring-05490---07000-in.json diff --git a/source/parts/detail/a/apogee-components-polyethylene-ldpe-streamer-00000-in.json b/source/parts/detail/a/apogee-components-polyethylene-ldpe-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d95ed42b1eaad9d013bbc1afeda56b0b20d3bf80 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polyethylene-ldpe-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c540a3a098f1fbb983a1fff2c895e676199af4f850fc3a752549f3b1bfe6ea9 +size 462 diff --git a/source/parts/detail/a/apogee-components-polyethylene-ldpe-streamer-00010-in.json b/source/parts/detail/a/apogee-components-polyethylene-ldpe-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c5b43760a0125c1e9ca104caefe8467aaa4b01fa --- /dev/null +++ b/source/parts/detail/a/apogee-components-polyethylene-ldpe-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1c82fbc21dd9afea84466e68dbe21d4a6c16d303523fcfd4ceabbb4d121baf6 +size 467 diff --git a/source/parts/detail/apogee-components-polystyrene-ps-ring-06000---08300-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-06000---08300-in.json similarity index 100% rename from source/parts/detail/apogee-components-polystyrene-ps-ring-06000---08300-in.json rename to source/parts/detail/a/apogee-components-polystyrene-ps-ring-06000---08300-in.json diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-07165---10039-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-07165---10039-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef9c6bd3462f69e14bf1a255c94ec97731a6ebf5 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-07165---10039-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f2580ea1ec08d41e13bf63995754310ae182a934f6e177a98c602d9126901af +size 476 diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-07283---08976-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-07283---08976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2c18025a9b176285e2aa9f276069cf29ac29ac2 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-07283---08976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c683f8d0bbf1639767d44d6ffec2ce874a37ae9b48b1e2b16289e6c98cb40bf +size 476 diff --git a/source/parts/detail/apogee-components-polystyrene-ps-ring-07360---09500-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-07360---09500-in.json similarity index 100% rename from source/parts/detail/apogee-components-polystyrene-ps-ring-07360---09500-in.json rename to source/parts/detail/a/apogee-components-polystyrene-ps-ring-07360---09500-in.json diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15051-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15051-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40ea63cbdbd85cd3af6fa99b3393e35057b91037 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15051-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f1ab8196ea67d3067d79ab794ebd4dd49879ef9d4f61d8d5a38f6e54cc9f064 +size 476 diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15400-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4016530f2db305a7655417fbc7e7c9313d42ba19 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22951c51593da9b7fa91dda99338e4446e4eadbd1a3f1bba02f6ebc3d7eef804 +size 476 diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15900-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55280d53e394d228be104a82170ff712369a4eaa --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10e34514a9329494e940aad241f66c20cf3c284c6fdbed6a2c46eed3bdd3c51 +size 476 diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10000---10630-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10000---10630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c75fcf88d80b403fb2ab49e7d20f085565cb9c2 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10000---10630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a4c68eb298e5e780a5d6f22d91b7ebe946b9d51f2ec2d1648871823ca9076b +size 476 diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10000---19320-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10000---19320-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62566a1ec994b520dd1319a0a587737ff3059617 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10000---19320-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207f4f6828b7f154009d854b6ad3171aa27b30ef4ae7b43d62c99ec6281bc7ac +size 481 diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10472---10945-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10472---10945-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dc1168b1890f171e7e9b67c24a0a556f23534518 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-10472---10945-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fca3b1ee8279074b7ea45375cc68dfab1411769bf866b7b7f0fd35be783d9ab +size 476 diff --git a/source/parts/detail/a/apogee-components-polystyrene-ps-ring-12100---13020-in.json b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-12100---13020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0d90fe2497fe41de5e3875c290f5d0ea8ad73239 --- /dev/null +++ b/source/parts/detail/a/apogee-components-polystyrene-ps-ring-12100---13020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524fc9679c4adc07e737a8492419958daff55ba782b73969be731d0fc05af4bb +size 476 diff --git a/source/parts/detail/a/apogee-components-pvc-ring-10079---13819-in.json b/source/parts/detail/a/apogee-components-pvc-ring-10079---13819-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33c096441fe7777405d17091b93c93290551fb6b --- /dev/null +++ b/source/parts/detail/a/apogee-components-pvc-ring-10079---13819-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d7e88f013ce1573fd1a2eb04e83e4f2ccbd71778cdcdc34b81ea3316c55ad8 +size 443 diff --git a/source/parts/detail/a/apogee-components.json b/source/parts/detail/a/apogee-components.json new file mode 100644 index 0000000000000000000000000000000000000000..d1149eb5ab824f106d6b6537d42ee5b554436dbd --- /dev/null +++ b/source/parts/detail/a/apogee-components.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175e287780f1a17b088817a48b8326270f22e9769912ddc59c3dd5e3b0c04326 +size 291 diff --git a/source/parts/detail/a/arr-paper-ring-19970---21330-in.json b/source/parts/detail/a/arr-paper-ring-19970---21330-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31f3818c531b02b5b52c06a185a415ff8e15fce3 --- /dev/null +++ b/source/parts/detail/a/arr-paper-ring-19970---21330-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44aa8a643ece6811c1762868807e6829d5256f0d7e4ec8a31cd7ac0963ba8ce0 +size 404 diff --git a/source/parts/detail/a/at-tailcone-ogive-transition.json b/source/parts/detail/a/at-tailcone-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..e74e1fb54376eb312e18279c559b6389023a9c36 --- /dev/null +++ b/source/parts/detail/a/at-tailcone-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c7a2b1334984edb5f6afae941016555177b82da2f7dd901e74b2ef277d1fe6 +size 616 diff --git a/source/parts/detail/b/b2-rocketry-18-ft-916-tubular-nylon-wloops.json b/source/parts/detail/b/b2-rocketry-18-ft-916-tubular-nylon-wloops.json new file mode 100644 index 0000000000000000000000000000000000000000..e042a2b0c27284ea5fd9c7b739d83fcb44bfe82c --- /dev/null +++ b/source/parts/detail/b/b2-rocketry-18-ft-916-tubular-nylon-wloops.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f2c9fe8fd72a06f5945f3d72903236cacd8d2f588157e7547752a7745b433c +size 441 diff --git a/source/parts/detail/b/b2-rocketry-21-ft-916-tubular-nylon-wloops.json b/source/parts/detail/b/b2-rocketry-21-ft-916-tubular-nylon-wloops.json new file mode 100644 index 0000000000000000000000000000000000000000..ff7dc107a3ce96f914c69883a3c6b09e96d16069 --- /dev/null +++ b/source/parts/detail/b/b2-rocketry-21-ft-916-tubular-nylon-wloops.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc0a0dac5ba940de1381704d0556112f5a7d363eb4cd3f9357fbfdf2a7b2975 +size 441 diff --git a/source/parts/detail/b/b2-rocketry-30-ft-916-tubular-nylon-wloops.json b/source/parts/detail/b/b2-rocketry-30-ft-916-tubular-nylon-wloops.json new file mode 100644 index 0000000000000000000000000000000000000000..16c8f639f5967ffd3f4455dd25ee0287c0e8b3d1 --- /dev/null +++ b/source/parts/detail/b/b2-rocketry-30-ft-916-tubular-nylon-wloops.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3527d50dd48dfe2194912e00fc9f17466c7eecae08ef2474ae04ff66fae3f52f +size 441 diff --git a/source/parts/detail/b/baddazz-ogive-transition.json b/source/parts/detail/b/baddazz-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..55d7a59a35a59e17c1d7f365fc7979d0affd821a --- /dev/null +++ b/source/parts/detail/b/baddazz-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfe339c73eff1b0178098706b8c4c5608a781889896fd539fc480c21a74f219d +size 594 diff --git a/source/parts/detail/b/balsa-225-x-15-x-316-balsa-sled.json b/source/parts/detail/b/balsa-225-x-15-x-316-balsa-sled.json new file mode 100644 index 0000000000000000000000000000000000000000..2500e7961a48e8d35ada024ce9aca091d76c46bf --- /dev/null +++ b/source/parts/detail/b/balsa-225-x-15-x-316-balsa-sled.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1967a76813d5207477b561e2c5ca2f410f7df1add4c3ac369d216f93dfc64e4b +size 397 diff --git a/source/parts/detail/b/balsa-machining-bmseh275-275-in-engine-hook.json b/source/parts/detail/b/balsa-machining-bmseh275-275-in-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..e9aea12ccde1607462d053f43ef046c659574d21 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-bmseh275-275-in-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0b39d11d3769f41fdb4e38fd08b2b2756d6ef1f50d01d8e905fe7748b770df +size 443 diff --git a/source/parts/detail/b/balsa-machining-bmseh375-375-in-engine-hook.json b/source/parts/detail/b/balsa-machining-bmseh375-375-in-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..60e4210c594af35205531050ffee76c5f5106379 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-bmseh375-375-in-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3f80fa0ca869e08c4fc7ad7f421ab960c8fdfd421863dd21ff1b5c31563b27 +size 443 diff --git a/source/parts/detail/b/balsa-machining-cardboard-ring-09760---15950-in.json b/source/parts/detail/b/balsa-machining-cardboard-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef255589a60dba6b25e17fd2e872bd1a742e6109 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-cardboard-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16628b1890edea2d3de65c82806c9244edfb23e486e649be14ddeb24d35e13d9 +size 442 diff --git a/source/parts/detail/b/balsa-machining-cardboard-ring-09760---21750-in.json b/source/parts/detail/b/balsa-machining-cardboard-ring-09760---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..44210c8777f8f987889e4afc001a40df7bbf86f4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-cardboard-ring-09760---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88f8a4f06e09c8b3025dabdf1196a4c6893e9b104831735609b7efa952ab23e +size 500 diff --git a/source/parts/detail/b/balsa-machining-cardboard-ring-16370---25600-in.json b/source/parts/detail/b/balsa-machining-cardboard-ring-16370---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8fc7f4f13ebd46710ef07606bfa749f2eb13989a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-cardboard-ring-16370---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2a17f3fc039c72b52fe8aebb44b84fe040b4b76dfd3d0af357a2cb2faf9e7a +size 502 diff --git a/source/parts/detail/b/balsa-machining-conical-transition.json b/source/parts/detail/b/balsa-machining-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..b6391fbbe54eb170341d4b7019d801068e65c97c --- /dev/null +++ b/source/parts/detail/b/balsa-machining-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a70777be9b71e0197cf5a89cf4585dd2c21e8c90f6e7bfd6a177422eb930ed7 +size 642 diff --git a/source/parts/detail/b/balsa-machining-eh275-275-engine-hook.json b/source/parts/detail/b/balsa-machining-eh275-275-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..8542dcd170c936ddf0a245a42039104c09aeeda2 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-eh275-275-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9bc19e6e27adec4c33859e09e1cd8fcefcf2facb464a0fb6fdc5fb01c5cfcf +size 419 diff --git a/source/parts/detail/b/balsa-machining-paper-ring-07360---09460-in.json b/source/parts/detail/b/balsa-machining-paper-ring-07360---09460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8db3a39ad99c2e3638ef7e8eaf9391045b87c3e4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-paper-ring-07360---09460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:734c3024bdbed23cfdc1877ab487292f7448297852e64aa6e78505f3442e1d54 +size 492 diff --git a/source/parts/detail/b/balsa-machining-service-116-aircraft-plywood-ring-12300---30270-in.json b/source/parts/detail/b/balsa-machining-service-116-aircraft-plywood-ring-12300---30270-in.json new file mode 100644 index 0000000000000000000000000000000000000000..997e5d34d715974ee03e3a5c30c551aa2674a14c --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-116-aircraft-plywood-ring-12300---30270-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b80191df3d7afd7b6f97c02707d205d6242cd8148f992d0de6592c45db868f2d +size 525 diff --git a/source/parts/detail/b/balsa-machining-service-14-aircraft-plywood-ring-22600---53800-in.json b/source/parts/detail/b/balsa-machining-service-14-aircraft-plywood-ring-22600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..623dc3137033c9f4c6d1ddbff9efd3bcd4a27b3c --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-14-aircraft-plywood-ring-22600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:249c44ec7f921ece601c2a716791f41461317719170661ac84f662f7f7b41f26 +size 562 diff --git a/source/parts/detail/b/balsa-machining-service-18-aircraft-plywood-ring-12100---25580-in.json b/source/parts/detail/b/balsa-machining-service-18-aircraft-plywood-ring-12100---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a76afa3cb00443b74a06b98b481fb25202ab5562 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-18-aircraft-plywood-ring-12100---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd03999c7d93e3ca7b1341b05bd4c4daa8e6a8e13711d0ca05e9e612384a6844 +size 562 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-00000---07100-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59be0fb5057735c00b040ddf4eb7c710a870baec --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e767b50c90f1d59d8bc8777fd721972ee5af11095317ff1b5f5d8592d4ce5e +size 551 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-00000---09500-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..887137fa799675923ddcf3725dc7b63f4153006a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f615dd3b766a3be41502e73790c2c1245d47471d8438825f9d63409291a5fe2 +size 557 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-05440---07100-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-05440---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3f742fdf44329677c11468528ff683b72c2d88e --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-05440---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9df87c4cb4f4e71c1c12ad198088237b9b26a3854abbb2806b265069210e462 +size 551 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-07360---09500-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c79d9d75bb8b667df797284e20c0fcadbbae5fe4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7a9b70a330048cd7c54dff6467a705cbfaed11c9f2d08dc5c3d4d40a07dbad +size 557 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-07360---12830-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7dbec3f7068ef26f3348673581307d54d0f4175a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd0efaceb4a7b84811b8c16607ac662c29b07b7e3ace60e6920223541b5fdd1 +size 553 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-09760---12830-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4503843cc1ab733c5eebbd0e77f53564d27034ba --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d37d646f4a1427f59894531b1ba532fb44da4bad834e33cb41448e30d87138fd +size 557 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-09760---15950-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e7a1cf38f4f4e1f0435954401f5fa4924367f75 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fbfe97918c5008404bcf6469b57452cc59c0bad794f0cb0619e709702cf6c1d +size 557 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-12100---21750-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-12100---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f818cd8eb10cc77fa6e60018576b454eea1043a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-12100---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4be64d8954ba487d3875dc28a139c24dfd6c1e6a269454a6c1d5f378153168a +size 572 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-16400---25600-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-16400---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d42bc4d84daa7d89a303df287b985ca99c6a41b --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-birch-ring-16400---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a809d1dde43d2db3f67fd49700b93d3c1f45ead2ce69d0752bd3020ab660e84d +size 503 diff --git a/source/parts/detail/b/balsa-machining-service-aircraft-plywood-loc-ring-10000---25900-in.json b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-loc-ring-10000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..beccf60a797e02dcf70c222dd149c8ea88c417d8 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-aircraft-plywood-loc-ring-10000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ccee9fc15a6dcf641df388c25692b6848c97ff1bed5e16568ce74ddeae34ab +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---09100-in.json b/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---09100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f017aec01aff1c8185497c7af1bfdf9d69cf0920 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---09100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ff5f90c7b037edc86ac7aa2c5edf388dd7701911970e854cdcef873aabb76d +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---09500-in.json b/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7202d9057f2d92e1061112331f17f33d59ce0a03 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5165933d22cac2f4edeedc86879fb3a7babeb2d58b86c95104546cb954ad7676 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---15950-in.json b/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f203ccf61903bea1be0f9beb72dd05dd3eecdcb6 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5eb08a0dfd18d2d090c4a48e03545ac7425deec56c40546df0d3efbfc22976 +size 496 diff --git a/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---25580-in.json b/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e5d8a9ac2bb4345889b1c228bcd64df393bbb86 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-balsa-ring-00000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c83e7da4c892e96dc916ab9e83faabda06be3fd565eccb4fb7fe78f835e9263 +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-balsa-ring-08800---09500-in.json b/source/parts/detail/b/balsa-machining-service-balsa-ring-08800---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9f7919fb007738f50539febb2293a2492e2922ea --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-balsa-ring-08800---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b6cdcf55c78dd17fd0c4114115956e73e2f2029d9d6407c4f236e6a1da85b0 +size 511 diff --git a/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21450-in.json b/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ed19ba4cd33f42b25d2de495c8d95139f11f451 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b9c97b9ef3416e033033de3f71bf0ce527aa04e356d8e1a8a6a530088a8d6b +size 484 diff --git a/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21750-in.json b/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20a96e2941f6ca467d9fb35cca79bb034bb86934 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02175954c119ab814400e3d66835dcdd25d02b4b00f84587632205b3a0ca383 +size 504 diff --git a/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21800-in.json b/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2eae871be22c8710f3fd07cdd94a18eab60031ba --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-balsa-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7294faa79d51753b1ab2394b619fa58ce9fd4b5e0ecfa2d208764bf00d581bad +size 504 diff --git a/source/parts/detail/b/balsa-machining-service-basswood-ring-07360---25900-in.json b/source/parts/detail/b/balsa-machining-service-basswood-ring-07360---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a15190cde86826cc9650b918440aaaf18241f43 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-basswood-ring-07360---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e81f75c1cab535d3335d5680786af350682b22eccac553cca77aa18c44ecf0 +size 473 diff --git a/source/parts/detail/b/balsa-machining-service-basswood-ring-08071---25900-in.json b/source/parts/detail/b/balsa-machining-service-basswood-ring-08071---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a97550922cc76f6729e65dc823be8db240ea3912 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-basswood-ring-08071---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5779b61e1b1bd55f31085c9d6e6d37697b7c43e6cdc6fdc45e7816545c8023eb +size 473 diff --git a/source/parts/detail/b/balsa-machining-service-birch-ring-12830---15920-in.json b/source/parts/detail/b/balsa-machining-service-birch-ring-12830---15920-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0578c68a170a33f702c7979c546c63847839c0a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-birch-ring-12830---15920-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5283814923719124b1b2ab555e6f4d927a850e4bc79b910669a55715e7b4e4c7 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-cardboard-ring-09760---13000-in.json b/source/parts/detail/b/balsa-machining-service-cardboard-ring-09760---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a26bf200cf56d4de5c7a6724d8b4471f7b0a75a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-cardboard-ring-09760---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5415af94467567a2142f00576b0ac21569ad523bb9fc27c603bfc3271fe3cb +size 491 diff --git a/source/parts/detail/b/balsa-machining-service-cardboard-ring-09760---30000-in.json b/source/parts/detail/b/balsa-machining-service-cardboard-ring-09760---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..156051654013ab3a22ec2d4b87d904db3271318f --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-cardboard-ring-09760---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcf254655c8e82fb9fd366f740193899dbd31a5932d5cccf8ff013111c16bfc4 +size 481 diff --git a/source/parts/detail/b/balsa-machining-service-conical-transition.json b/source/parts/detail/b/balsa-machining-service-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..4edbb6d806ce8ad45662c7eaf7aec8a880802956 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57e5caa3f5de4c2cec8dd7ffea7575c7d25b0e932e52148b8ec77e25f25e733 +size 646 diff --git a/source/parts/detail/b/balsa-machining-service-elliptical-transition.json b/source/parts/detail/b/balsa-machining-service-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..4665fd12545d9352dbf6b2e40e453685be43afb9 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2bde20aa9feb09a86ea4db424c998e6eea17c1f37dee19564b48c819e4cc7e +size 658 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---12800-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ff56e3d670bb4324ff407d07335b02dbdd5e188 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3051b2e656b84f96ef63d98d8274567622bbf3da85c76ed61fcfe5d9aaccb948 +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---15900-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b0514504cbf6d79a37cb803dbae96cf6e09915f --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:359d6f5dfe4f5c944da5ba64475ae6bbe22578cf48a8b1d4fbb1a71d7f4dd1fa +size 519 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---21800-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ff845f39dfa205a405a3d94a76216baafd82a8d --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee99426770f512ecd987dddb2aa2489e1ba52b2254b62ae058e512f5b2752599 +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---25580-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc7975ebb37e16601451a3cefa562c3c072efb78 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-00000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d1290ab4551b1cb375d38628ba11d27fa2dbbd5c814ff03be6c32d638827f5 +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-02500---07080-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-02500---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8c2e66977d9878079c9b5c280f076594bb83f1b --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-02500---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5af1b7a5243cbbb81b1ca2b5d9d0dbc12d27f826db0395019db4d423bebba96 +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-04500---07080-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-04500---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..614536ac4c9261a86d9d761ddd971fd340b3be6b --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-04500---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:758cbf7495972c79ce3389ca01bf59e264d9e42c46ad1805eff494e3bcff7c6a +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05400---09500-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f5b402a09efb59984703427ccb319c7238ea7d2 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ce18ef76a099a576f04e2d0bfe54fa95fc1b6da794639f65e0fd94b7918a61 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05430---10000-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05430---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ba0a7fe230373b8fd3a9003ba5d124cbb5c86a6 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05430---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b68909f8d4d2fea99ee36852e09d5b03a77ad7bd47089fd8d8fc5054f336ce +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05430---11300-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05430---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50616bb6c9500cf3899e12b3179c8d49fcef574b --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05430---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f379fac70dae066aaf0068430004bd1018cc3fb66b7ab0a675981eadf0acac +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---07100-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d840c337abc4644c8a57e0ddabae66a0f54c8b14 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c4853f84586d81e9f7c413a774a504a542b09d327faa3dcb033050e815f5f2 +size 520 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---09500-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6534fb13842f5f922e09895fcf34da5a7b566482 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5449c0595567f722fa2c954745ff99986854e8ad386a912d43f5e24e623887f +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---12800-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce516f1567ffa776439ec0c10ccff44dff228c06 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2d7134eda126b0002a3409b6a63af5c08558a760518ce32a1d8e370c4591b4 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---15900-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0519d34dd72001e1de452c77095bd22259a2549f --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05440---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:289de5c4f1965cff9d047b143ddaf550b8120f5ca3d123420946e6194af85f0f +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05450---16800-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05450---16800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af20164da2c0d7843c5064acf6559e466b0a0770 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05450---16800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90fae1689d1b3f14559243ae460f26ef93289fc307ec9076c96452bdb5bd96e0 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05450---18800-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05450---18800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..811a1ba507ba4702f350415b3c9afaf00c60b530 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05450---18800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34f80dbba3d1ec908899f6f98cac05d3ba4b426f45fb2e87ac8abaa1ae59a5e +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---07030-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---07030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1dbb06faf9c7b295d0e1db82fabd147fbed6d390 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---07030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5058b0b06865a1cde73b85b63b3ed8eb4e1801f514ab200dc448bf609c773285 +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---09460-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---09460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7fc1f527f8c2754a9270fc31e56a211be0c96ac3 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---09460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65601dc28c163fde2900d991cc1a6f982606d0712497a99f2acd2bf675cfb115 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---12830-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..056f508241b2fe0b21c7e70d8d0a869b8cdc57c9 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ce18d00097aab164315d3d295c57d50f8874ca4eb0d790134d8fc99cb90094 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---15950-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3edddca7e343ebf703375dd60ec52dcbc1535b5b --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-05460---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63a095c52fd664e0425589b352a8c0bd0698c4634e4313811d95296e9d59752 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07087---15929-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07087---15929-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c5aa2988041739f781f39e8fef738a13e7abf259 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07087---15929-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff68bf9f00a5b2d8672b36aece91ab990444f44ac0e24b563959fc7c067bf15 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---09460-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---09460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5efd6c3b1a6f4ed93902ab2789c94b1a340d70b3 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---09460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2567343837acbbb6d295a340f329758d65daf2f47adbb4d9cae12d4db61a942 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---12830-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b52833318bfa6e609c3508a82c3069a0be4c3ca8 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b293a4b30187aa2151c0d6dacc432d6f558f37d60166fd3c33a36d4617f219 +size 527 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---13400-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---13400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a5e82f26b48d0df15867fb482f34ed2aee6fe5f3 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---13400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17c5bbb6c98578561cc7d0328793a60ef5bc924d29e73c8a6d763182856bb8f +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---15900-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4299e0aac0ae9f85125ecb36189ba10a0273d981 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8e417ca97dce20dc484b2681652b1152945c302a6c3b314e1dbdc5ba50dec6 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---15930-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77239424744fc2d25972fee1b8108f69fb201da4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf14991a5a15af40ef1896d03a1f4803e2a992ba950b33ac5458b0a48b54e63c +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---21780-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---21780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..476a487f956f7f15383182885c772367d05aba4e --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---21780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db32a3a258c32278386ee773da6254d618b85aa2f7136bc17502b344a5f1bc0a +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---25580-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..079617f8d07524a2c18e41365443669d32c23106 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07360---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e8a7a609c812f236b90773c0700cfc5547d1fc21c912e58a01b060dcf986c5f +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07400---15900-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6a6d8fb96d8a918e2a6f0117cb9cb698ad58951 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae2464447a84c1b29a51d81fc31c1b3fbc4ae97c32497d5571a75fa0e8fcc4a +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-07902---13402-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-07902---13402-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f6881d2fd72b0b549471131df4f2c1911358348 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-07902---13402-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d670051c330e0326f4ec455ce0c3f00ce4cc4b3d4a5a02031f4d8f1b6756996 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---15900-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5749a178ce24d491a4375d2ea6629715f3d341e5 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78dd42cf11212deed80e0e0a21885600d542ea68d2fbbd3ffad147cfd54bf43 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---25000-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e60abc0884d8c8d35edfbe1fb1a78ee109b7b66a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cb74c4135bceb5abc70eeba4385e53c3ed0a7d7c811d5c38d92570ff5abd6a +size 481 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---25900-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d7958925205a80de3dd098e431328ec4bf000cf --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caeb01049713c2548adbaa46fac524a11b8ada7de208005f7e759a6e010482f0 +size 454 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---12830-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a09406ddcb4723648829177ad6b96b35eddec4c4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85b8eb64f8ad4ace3d49378ef1620395d5d64fd35425270ce86c6bb8feab5fea +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---15929-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---15929-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7abfd47f9b915451df833d5983afb374da0b07d6 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---15929-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dddd49dcfc5e77c652e6b7509fd5cb26133d3873eb235f1a5c51ab6f41b622c1 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---15930-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..867eb13633099122d693c5487c83f178fbf85551 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ef7469a80b533f6d0d6ef65d54fbbed43104a737d8d61702444e5a3ebaee10 +size 527 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---21780-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---21780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8babcf45cbbd86f668ea62853536075fa4b0446e --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---21780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76494163781bcaada23777e5e99ffc6bfdb585e80c8536b906bc8204c3269398 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---25560-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---25560-in.json new file mode 100644 index 0000000000000000000000000000000000000000..974b07e0d21dc06c46e45e7354d80fd53cc16bee --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09780---25560-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b307a45cb71cd07f030265886a29c875b9518ad2e28828fcce5000b445328d8e +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-09900---15930-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-09900---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54dd01403144100c399af6ee3d95f94e2cd96a01 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-09900---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dab8914af596d2660bc1e5afcf0e781bed7895ae0b85bbbf434d8f5a9da2510 +size 519 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-11800---29300-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-11800---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae6056c41540e90d1cbad447e18a4fa5a24e4dfd --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-11800---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790d173dda7980e006ee021ed833ae065cedc22980cb622964e990080e088e07 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-12150---12830-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-12150---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d41c438c6b668c1578f1dee7154b69341ad9cf93 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-12150---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06995624d8a57fbe8d94280d3cc028fa8fa3569762e2ce4ef9989778990c22b5 +size 519 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-12650---21800-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-12650---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d480e4228e416d98e107d5a42e94c0fbcf1e191f --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-12650---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea927159fa7d75ae9c05cf0ff3c94b98e3f70c22d76ec121e2fd49eedd045ec +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-12700---19600-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-12700---19600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac6fe16229ac242e3606a8972223abbb40251a21 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-12700---19600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f05744ac07b0ca6cc64077475077ea8ab779a6779c8dfa9b3859e9f000154b9 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---15920-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---15920-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c6226e393a81f9cf1209573746d37f8009f4d380 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---15920-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f0df7d778f4960ed0ffc8c8d3669fc4854d15791dfdec67faad56bd83c8ece +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---22170-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---22170-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b7dbc020bb5932f3ad8ff9d1951cb506ff49f42 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---22170-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524bbbf9691b3a1384b4e270c86bc0f81fe70d730e9992e359919c0c7d72f38c +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---25580-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c1d935c181156042d2ae3f8bc1effae5ac6a6e9d --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-12830---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5656eda78311ab54e788e6ad7be0a86f970f3a4384f9d7981e29a65c4e033a +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-13500---22170-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-13500---22170-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a51cc796c0bac1227f3ce2488b4d49d7583cc2b --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-13500---22170-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c40fe402c881f74647b9138c416586c22c9fb8dc705b3fe61ee8dc33292a391 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-15950---25580-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-15950---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f688305451253066baefb75763793e7f3f80586f --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-15950---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb50e1a391ee51bc4ab4a77f9d0675121ba77192d3955287a352636100c72ba9 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-15950---38960-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-15950---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35f2a497121ca9b97891e069dced6622a4c872d2 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-15950---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0368eb79173359ac9d7844cb1b250c2e1ab57aa6b6cd90658f23de5ebd11bde6 +size 519 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-16400---25900-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-16400---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70a0207fdb107fa1b087982d089e64196163f2ef --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-16400---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5bee9708567e78d7a6b589d635c95a9a4c83ca02de1069e3a46619e0bec44ac +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-26000---29300-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-26000---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c50fb30ef4503c51c5b8edda0e8244dde7f2c48 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-26000---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd3d204c30393e8604d2f6f4a084fa7365c975498694506a823ef715e9865561 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-fiber-ring-27500---30000-in.json b/source/parts/detail/b/balsa-machining-service-fiber-ring-27500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a79a933ba78282604bb2bd65c95f0b2b666e6dc2 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-fiber-ring-27500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbe2b885be6654dcb0868688a248f60792e3a6382e2d05e373f77cc5cc19246 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---21040-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---21040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7dd9901609d60a4d1e5af2b895759be5d48186a4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---21040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a088391506e61e7f8355d98f714fe0127fbbd56fdaf65e17ddb90e13d22c7b20 +size 524 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---21800-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77d5a8d03b3972991b5021a12b692c645c370cf8 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c7ae4208eea5b110e98d27aaf40c318eed5eff0f9e8efeaa9c2bc0c28be5651 +size 524 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---24740-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---24740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..911ad52884482472eb504cd520df3998f228a83d --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---24740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b3d0588f8b5d36116973ca41f3bf88f46da270966894ee4f0da65a958df1e5 +size 524 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---25580-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad1f6b3d8d0c328527745e78e96bea8f79c430d7 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-00000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c79c2ad8925a223a0c4b7a852a7187113b6a4dcdbb63af4e69b37183c6a6d9 +size 529 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-05460---09460-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-05460---09460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ab9e9065b1fd722e735fe090f507dcdd37bdea1 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-05460---09460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f524de390776f023320d9fa8a66660205de2063c459153060ab9e0f3b61cab4 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07358---15929-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07358---15929-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a296dbad4cd4bec5b94c229f0113a20cc9326e5 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07358---15929-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27d3811fc0c0a637788ac72aa52ab6ddc141c8f43ead9de0ba70a8b0121f5525 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---09460-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---09460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50e0481ee4314695114d498710df4a42682d72e9 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---09460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca92d6b2a9da47280b77315395c430eee02b9a27b659cded7f004437876d125 +size 533 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---12800-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b51eeedfe6bca2a7c9f5235e70b5835498ab3e8 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eadd15dbb9ae23bbe7aab7deecf54b115ae9f1e76a553fa07647d5ecae5f9a85 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---12830-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..831f1e7c1768ca6401befdcf2c63c78a0f1503a6 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba4880ff6b291d4d99ed78f68f7c17cdb8819ddf9188a8c774479059ca3b647 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---15900-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ecb285c674b6b6c1b1a555c85d72eb0b5b8cf40e --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0708afa10ed5cd5f6fab06e50035da0751391a98c149460f954ac1f3bdb956 +size 488 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---15930-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f14bd7126357d17f557cea2b5d3e767549fdbc3 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-07360---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8218b8ff3ebb860e3939d06692eaf1d93dee7a56b6b5b6f34c5d2294365a24ca +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---12800-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29f29ffacb9e3b68dcb139c3b741b89bf980629c --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0375932800ad300156d458623e6d518492cb1cd5fd0f137b37e696064828e6 +size 488 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---21800-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a613eac8ab8de8cd72fbf7f36dcc5c335239fcac --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc5f7d50e4d312126bc1163eec940b250418ca0ed693749d4b1e02478e485f33 +size 488 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---25900-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26b7a5143c28bce009b7b627771b318e8d6a5fd7 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2afe18e67e3b747065bea1c0a565f9300e7559acaaca73b6ff02fc1b8e6a15d +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---12830-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bca6a73e5c7b8ea8963d4f0584d6c801533f6ba --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056eb0daf4000cb6a8240f3f2718c9cc5285634f87b8d06226b3a871eb42d81c +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---15930-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4eb438e40bb6b7cd32e73b0ba2a924a54209872d --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2389d363a0025dc986b73122cda7d3dbc4100626dfa64db2b862b6f95d4f989b +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---21780-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---21780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a9eeea403b03229aa39876af5563d97b90701a2 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---21780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0985791c78cb460e3c003daddfd1235450d825d68908b98f3e1d86c2ffaa2e53 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---24700-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---24700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55798cee3714832c0ab003e61134de399b0602ea --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---24700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b397384dba3b71fef3f21414b36d88e684ccd775b7e89908600244b8b5b1279 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---25559-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---25559-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b95a45ab53fb60fcc27b0f29c3978fb3326c8d62 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---25559-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ea171845d9b6b2c9750d88ce71dad55b764143be26e2183e555d22898cff62 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---25560-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---25560-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9f69929db60e4efe9683f1841301e66eed68c94 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09780---25560-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8142d548e65ef7797fa43a0997d17f71e14cefc30aabcf79892028f0e882c8 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09800---25600-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09800---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..61a882e53d7c1bba11ad352142a92ddf477e9179 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09800---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:513cc7bf8aa204cf3b170f04aa4d1065ae6f1d00df6e35276c11da5c2da462b9 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09900---15900-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09900---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..918138405063a9841b00d0e9aeccd3d6b1232ca4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09900---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a6a152ae728064628ff23c087f72e37021a4b5a87c0d42c08b316ebf7582db +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09900---21780-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09900---21780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85f6386c68ec3daf1a96722d5d6df346b66d528f --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09900---21780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c13082f0a7605675dae70ded0e6c570f22021117a68f2a7856fc4dac7052a6f +size 528 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09920---25900-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09920---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..460ba22dd1b2444f14852b25e31814b86b023242 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-09920---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860bab1c4f281d38ce468ec2a8b1f8937c7df6a78b63d701136db652d03b0408 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-10000---25900-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-10000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9eda07d7d342ee538c28435078f9d84f0f42252 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-10000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137d442c02255d819373b7d2c3a66e538e6d35ed4b72151c7a76233eb1f41a73 +size 488 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-10400---21800-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-10400---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a4bc70823fdccf85da21ffa64ea41ec84d937e0 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-10400---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f07ed4a7245e93fc093040aaec43acd597633af3a3706f0d107e36f78938b7dc +size 488 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-12150---25580-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-12150---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba93fc27b4b5222b713b7a17c45340b82a6b6039 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-12150---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe06895becd1ba3855212fd1dd1809e5b02626eaf806258c91cbd1b2b0ce3330 +size 528 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-12500---29000-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-12500---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55e71f9ee4d4bdb722cfd1bd3af0dbafe33623a8 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-12500---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49de2d02373a7b17c89b3e8c3e23aff175de83f875814d0ab3be604de7e6f8aa +size 488 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-13250---21780-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-13250---21780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6771b110cebaf12075a40c52154bb7f3db7bd4cf --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-13250---21780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936f8f11d7bd8c092000c4a72c2b5e5bd3ed3a0d789fe5850cec889d0dcf0471 +size 526 diff --git a/source/parts/detail/b/balsa-machining-service-lite-ply-ring-16350---26250-in.json b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-16350---26250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50ba1b028cb74f20e52104ba8e6d63619f39f6f4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-ply-ring-16350---26250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdaa85ad151e620f39bd87e38d7cfe97c53d2b07745fc20c6cd99ac1fda9ce22 +size 539 diff --git a/source/parts/detail/b/balsa-machining-service-lite-plywood-ring-09760---21750-in.json b/source/parts/detail/b/balsa-machining-service-lite-plywood-ring-09760---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b432943db26a58702fc6abf2641e9ca62b88b6b6 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-plywood-ring-09760---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b55e13c905058d0b0fa8c30a678c800abd0d8dfca035b7338ddede6ccb137a9 +size 543 diff --git a/source/parts/detail/b/balsa-machining-service-lite-plywood-ring-12100---21400-in.json b/source/parts/detail/b/balsa-machining-service-lite-plywood-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48a398f829fe102ca306c55640194a3769d60a7a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-lite-plywood-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4847b490fc58881ce5f6da63afc2c50a1e5fbfcb1af89d27fc557e325711b764 +size 546 diff --git a/source/parts/detail/b/balsa-machining-service-ogive-transition.json b/source/parts/detail/b/balsa-machining-service-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..93d41c443a0475e7fac86f5908fd62541859baf9 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88fe1787f28b3effe47a68be33d8c56362b3ad45db0a8ce4e85a8722a6027ccc +size 662 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-00000---12830-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07b97df579724edf0311b3ba83cb33905bb4cecf --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bf73013c1f96e8d1e2e086c22e598bb73a744140a6682ab4a5160cd347c8e54 +size 500 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-00000---25900-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-00000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e25bfd3e403819fe7147092e7683cb48f10d9622 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-00000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e01c8c376792435847566f74604053d94c7f639d61dcde14faab99661b8bac1 +size 515 diff --git a/source/parts/detail/balsa-machining-service-paper-ring-03760---05160-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-03760---05160-in.json similarity index 100% rename from source/parts/detail/balsa-machining-service-paper-ring-03760---05160-in.json rename to source/parts/detail/b/balsa-machining-service-paper-ring-03760---05160-in.json diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-03760---05180-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-03760---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e240ca97fd144cfb741cb8a576e5c6d1042ed813 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-03760---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29895c554c218d75938915e562ffcbdae0efe05f31347dcd72679ec80560b84c +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-03760---05200-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-03760---05200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59f0959e65ce20ebb45627614f8e05dfaf6198a3 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-03760---05200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a8884473d60324f90ded269f65bfb3159e8ede2391d900ce9217c6edfe0eed +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-05420---07100-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-05420---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf428e25bbdaae5825a38f11ba0e8bb28e0c8416 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-05420---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4a2aea914a612b399323e709f71ca1d8d65892d5cdb283274435faf0449744 +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-05420---07250-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-05420---07250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a1260d5c6ff3aa57c3319d88e08a6c918bfb997 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-05420---07250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49fe80c6e388d58b0157d5a77dc6eafac30aa65111a8bcd575c11395c4c6dbb +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-05440---21800-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-05440---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..123195f50c13c1729af63b77b1e1ddccf64055e5 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-05440---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f3aa46c3f44a307b44f65d323bff81fec372baf10db359d8147eec2f61a4648 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07080-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a029698167fa2869e3a264d9c8b1155b88a34fc --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c0697ea8d494240f49c3d38e86d2bc12bd2b566c0f68a9a892e9c97341b9a3a +size 515 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07100-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c9f0303a5b12fedecf2f824678a424d0009f7aa4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e67d7d10ae6224f0d2195f79ffe071028243d37a73331c8c3f9b7e442b389a0 +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07470-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b87d013674534657ca516e2f786ed5d0ddb7df6c --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86566dfbcb38b67b81ffb49a21eefd335ae84688b72eb3ae3de875fa965085fa +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07500-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1fe0e80e15e5bcbd826e6b07a5afdca3a332d631 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-05460---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:398297e4a5a274c2ee6abb19048137a39c30b758c69b510c2883349f4993ef3e +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-06660---07080-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-06660---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bbf82645f00066f6843d56830a314e1aab3e15ad --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-06660---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5806c1b591dc090c36ff6ef829a4ecb700c8dd00b9ab7c0b8721801f1da75728 +size 511 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-06661---07087-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-06661---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..249b271d7bf9f64e294760b0844b8587e0008d04 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-06661---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa296d8d272ec5905b0ce5765247e26310c29d71b3b7664b5a6611b5c9ead778 +size 511 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07358---09500-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07358---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ad4494215b9f105559b1b01cbb64e191cb483e9 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07358---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a698f4fff4d7f684bf010bd4d0ea0afd885302f2982cecc9050c298ca7bcf227 +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07358---11417-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07358---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7581bb2517356947d041ce0a0f831ccb705cd36f --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07358---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865d17ad8d9b8b27c6673e409b7253ba61c4a232c9f3ad7bdc3592f462af2d41 +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07360---08650-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..950754b3b24280c4c627119f6c9cf5d2eff4c8b2 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d49cd73fceb949892fd52ed07704887f381eb5fc2c94bc6eadda8ad9e184c7a +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09460-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8db1d24942698e93d21da3981a49b568e213457 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec30ff2febdd8071379a315fe0f5de2510784a0295995f346b501d082a29b6f2 +size 522 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09500-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18fcd54cec4dab1b437df0677642fb425222754a --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d621d15c6b74e835c88c09c75ba490e2b96f560ec86489ed0f2124ddfd864bf2 +size 518 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09501-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09501-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa8ae4f7825ac34cf97b1b74fbee90b1b0ca5464 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---09501-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5839ff900b67e704820e802c07512d8c8891a50a4848b72f89f56a23df6c9864 +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07360---12800-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7208560b2fd195d77ff6e4bcf208fc6dd1da24c7 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39fa63826a3079fdea384307005f6532e81e93ded726eee4abf2deb59542bd06 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07360---12830-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0fea57db8a0498acb6f1a4f86566188d360bee8b --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c34f95a70c5384f6f9b59998a9d2d4cb40ace72b29757776cf4d301f064229 +size 517 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-07360---25600-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca0b37f9cbd5393e9821ddec2e1b2a2fa22bf559 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-07360---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73cd989e358c0561da65e8b4d8832ce6f31280d079ec615e0697896d0ab1c83f +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-08800---09500-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-08800---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb3771aa565807000da0644f300aead28bf61716 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-08800---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20188b1595f26b3d025d399dff64c26ef493af7dea101f8ba296edf927cac4f +size 511 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-09760---12830-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64283e8d1ffd2815ba153ff814e1cd7eddc80b32 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b328c56c4fbe001dc5e1c6392f659c6acc7cc1d2b5f380393fc00c5626ffb96 +size 500 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-09770---11370-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-09770---11370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e92e1defd12dae29c65f52f97ff28cb6d0c693df --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-09770---11370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d938e25c2781449ef9977f41983d664161b588fda8ddb5af555193f2233479f +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-09900---25900-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-09900---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dda99fee3a5e7fb80de001b995c2ced8510db247 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-09900---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71941b206a84c8fcb69b3f4c05a5d557d024af4d9e0fd2c4b7e7836028f2d707 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-10000---25900-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-10000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..477ae57498e69c71e8d3542ab1b6a33351da0535 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-10000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da927c45cdc3c741af2a43153c65fbd5ab45ae1f31ef1686cd55c8dde31e70e5 +size 479 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-15240---15900-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-15240---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58958d5ea7bd21924a32b1f13ee15541e8ea1bf5 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-15240---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f6a423f68b19c523d8c4798a5c73642ef6be8cdf9f0825c5f7d185e7e42d3a +size 511 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-15240---15950-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-15240---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2237dfa99ea9fda961431b528ec16264086157f5 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-15240---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9b08e2c5e34623dd8ea656205a9254912eea13c8d136673e5be27a9e92656a +size 511 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-17280---18800-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-17280---18800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d8fae9170bed45ec69cc78b7b6348ceb10f744d --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-17280---18800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79297eee6449223ad09384bd20cf6c05f79b86cd6c9940e1b63fb77b917048af +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-21040---21750-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-21040---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9fbb1a62028879f969f9cb8ff41bf5f7f00127cb --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-21040---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a9836ad38327fb057270e4b11cb661e4918ba1c9d6fe0bf641d745395355394 +size 518 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-21040---21800-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-21040---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b0c9a58e92e8834a21eb30207e0168eb92dbe9c --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-21040---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98364d1f15dc2e8e83ae3199a7ce918e55edc468d6243bd414e5d62b05bd61d +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25580-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6409d04625896fddfef9681c6ddbe8b259d94007 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1380413c2e0a6f3f288359c247b18a652f8a09625a418f2e04819de781cd12f8 +size 513 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25600-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da25ed6e5b653a54734ec1657409d816bcc8b9b8 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae6932216a95e6106e58140b693475ddcd4918b5fa0824b18304fba7d408a02 +size 484 diff --git a/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25900-in.json b/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10a9c58d3454d7ec0b50a6d72b81c6f591db8db4 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper-ring-24740---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0ffd618141ba8c606cb4ed1d8d4b97c7d83dcf3f08f866b0864d3a4bca1e0d +size 480 diff --git a/source/parts/detail/b/balsa-machining-service-paper2-ring-09760---12830-in.json b/source/parts/detail/b/balsa-machining-service-paper2-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76b17da4d54dc1a2f55fef898f2dabd3ade3bf2e --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper2-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1344d8dae2e0270d1787da47817e266955fae32886a39b2b202e3712cb401c +size 503 diff --git a/source/parts/detail/b/balsa-machining-service-paper2-ring-09780---15930-in.json b/source/parts/detail/b/balsa-machining-service-paper2-ring-09780---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41b9962fd8a264ecf48840f65979bfdef685a1e1 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-paper2-ring-09780---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdddf69ec23bfb720878e6aaa497c69d68158f775858a8a4a98ed0fb45302eff +size 503 diff --git a/source/parts/detail/b/balsa-machining-service-parabolic-transition.json b/source/parts/detail/b/balsa-machining-service-parabolic-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..4de9b594780bfe58b1d4d4b50f95cc5917e35bb9 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-parabolic-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac28d50246694c3da901452a1154a14327f791ab42a92381dc9acf9ab61ec52 +size 649 diff --git a/source/parts/detail/b/balsa-machining-service-powerseries-transition.json b/source/parts/detail/b/balsa-machining-service-powerseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..8f738aa2d51c3d45ad2b5c1f98d58610a4955a4b --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-powerseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43943ef2cb45af5d72ef0915acb49ba83b95fb9ffe1b9223d75fc0d2eafdb8cb +size 686 diff --git a/source/parts/detail/b/balsa-machining-service-russian-18-ply-ring-00000---24740-in.json b/source/parts/detail/b/balsa-machining-service-russian-18-ply-ring-00000---24740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90c5b29b6cd649ea1090fc08566d492ac3f47432 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-russian-18-ply-ring-00000---24740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a98690866bed7c9cfaf72d919f6f6a94a644ba0149e70f41f906a69a2f638c +size 545 diff --git a/source/parts/detail/b/balsa-machining-service-russian-18-ply-ring-12150---25580-in.json b/source/parts/detail/b/balsa-machining-service-russian-18-ply-ring-12150---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6d93a0253c9ef06164d4e11c9852a338a5e2b9f0 --- /dev/null +++ b/source/parts/detail/b/balsa-machining-service-russian-18-ply-ring-12150---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319082a82ef143f050541684c4021e14d283b6c4fb0c82b603913cb6e89f02a8 +size 549 diff --git a/source/parts/detail/b/balsa-ring-09500---09500-in.json b/source/parts/detail/b/balsa-ring-09500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0629b75e5981a70f2727b6b74a5b44d8f7816ea9 --- /dev/null +++ b/source/parts/detail/b/balsa-ring-09500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704ac3161dc50508566c976d5341641b1350be9250e293a0c2c330c5635a6f35 +size 385 diff --git a/source/parts/detail/b/balsa-ring-11417---15950-in.json b/source/parts/detail/b/balsa-ring-11417---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4aa80db9899f7f36cce5ffdd8c0c84371a23907c --- /dev/null +++ b/source/parts/detail/b/balsa-ring-11417---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184da17a6967b7c9b8bebcbed0e3ccdf411486d154fe1ccc1180cd574db8a71c +size 373 diff --git a/source/parts/detail/b/balsa-ring-11811---15950-in.json b/source/parts/detail/b/balsa-ring-11811---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b30d51aeef69b7222f7a204dc6fb9aa644dc92c8 --- /dev/null +++ b/source/parts/detail/b/balsa-ring-11811---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ef03e723f321d37ec83bb6391006124fe9d2023b0da50773a8c5143b1a67326 +size 373 diff --git a/source/parts/detail/b/balsa-ring-11811---38000-in.json b/source/parts/detail/b/balsa-ring-11811---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e862ac178153fbcebf6d6723bdd6856d4e58d1c --- /dev/null +++ b/source/parts/detail/b/balsa-ring-11811---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d8a63411dc8854a27f5f4f4249fdece270260cf1450e2293d0d3e63917f724 +size 389 diff --git a/source/parts/detail/b/barclone-kraft-phenolic-ring-37000---38000-in.json b/source/parts/detail/b/barclone-kraft-phenolic-ring-37000---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4363c66753cdf7b6b0782cdadd357eaa6038d3a2 --- /dev/null +++ b/source/parts/detail/b/barclone-kraft-phenolic-ring-37000---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b207f1bc823a262e65f37ef79ee47e6f9de3113c94d5c8b7ce39efe47023a3 +size 491 diff --git a/source/parts/detail/b/barclone-ogive-transition.json b/source/parts/detail/b/barclone-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..95322af02b0da71817764c715547c11e4abb42f3 --- /dev/null +++ b/source/parts/detail/b/barclone-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90be67762991c9e16213a93ae7a199362a1d02afcdb5a3c771a77c4c8e56c7d8 +size 602 diff --git a/source/parts/detail/b/barclone-paper-ring-47000---48000-in.json b/source/parts/detail/b/barclone-paper-ring-47000---48000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35cf7ef895480b4011aeaa86d17f8808b1eb583d --- /dev/null +++ b/source/parts/detail/b/barclone-paper-ring-47000---48000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b69d621ddba3b029f64e33c07ab096910ad93910f1afbb7dc0a13baa846bca6e +size 464 diff --git a/source/parts/detail/b/barclone-paper-ring-50000---51000-in.json b/source/parts/detail/b/barclone-paper-ring-50000---51000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f977cf49694f1ad6600b3c5b1e15ea63d202415f --- /dev/null +++ b/source/parts/detail/b/barclone-paper-ring-50000---51000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbaf3ba242756d16577e069fcc9bb8760326495e657b2b16016a9b120ac4882b +size 464 diff --git a/source/parts/detail/b/basswood-ring-00000---39000-in.json b/source/parts/detail/b/basswood-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b5cde80e3c2547441283f97d42caeed8c567c2f --- /dev/null +++ b/source/parts/detail/b/basswood-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d39ef5f7585585d0f19716bbee1a04cfa64686f266ac060a502fba3e90989432 +size 385 diff --git a/source/parts/detail/b/basswood-ring-22100---39000-in.json b/source/parts/detail/b/basswood-ring-22100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b62638a66c1e9d1cdb5e56dd6bb4886f53b4ab03 --- /dev/null +++ b/source/parts/detail/b/basswood-ring-22100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b3d80dcea3fe1a9ba518abb7fa70c18308e63dd09565afe384dd6c2948f6534 +size 385 diff --git a/source/parts/detail/b/beeline-beeline-gps-beeline-gps.json b/source/parts/detail/b/beeline-beeline-gps-beeline-gps.json new file mode 100644 index 0000000000000000000000000000000000000000..b60628431b030e5dda3431ac41c64d1dc89f43c7 --- /dev/null +++ b/source/parts/detail/b/beeline-beeline-gps-beeline-gps.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9e7f4c3d844a61a3649d456790d4b08a90535b9c6220f7ea7408b4c4bc0fd6d +size 393 diff --git a/source/parts/detail/b/beeline-gps-gps-transmitter.json b/source/parts/detail/b/beeline-gps-gps-transmitter.json new file mode 100644 index 0000000000000000000000000000000000000000..b47941abb69cb4fd1badef3a97454cedf9c3742c --- /dev/null +++ b/source/parts/detail/b/beeline-gps-gps-transmitter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c274f97bf3b20128f1f4b99dce2bdf231f4e14e902d77d76dd1ab2950d2381 +size 377 diff --git a/source/parts/detail/b/beeline-radio-xmtr-radio-transmitter.json b/source/parts/detail/b/beeline-radio-xmtr-radio-transmitter.json new file mode 100644 index 0000000000000000000000000000000000000000..8f4728cc29a12f23984a5438380277285dbe9bb7 --- /dev/null +++ b/source/parts/detail/b/beeline-radio-xmtr-radio-transmitter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:117b123c43f47e4d9b7e89770a6d8722ba97fafa47f771551790570a0d173384 +size 413 diff --git a/source/parts/detail/b/beeline-tx-tracker.json b/source/parts/detail/b/beeline-tx-tracker.json new file mode 100644 index 0000000000000000000000000000000000000000..e8b1b7762d304121b74f4fad76b47e9d1babc56c --- /dev/null +++ b/source/parts/detail/b/beeline-tx-tracker.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c9bdc4916e8c53dfbb1dc25314d6620f4e3b0c5e6ea1420c2ec098a919ca0b +size 341 diff --git a/source/parts/detail/b/big-red-bee--70cm-gps-tracker.json b/source/parts/detail/b/big-red-bee--70cm-gps-tracker.json new file mode 100644 index 0000000000000000000000000000000000000000..6326df145f4080e68c8e3e0bae341efb86289d4a --- /dev/null +++ b/source/parts/detail/b/big-red-bee--70cm-gps-tracker.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37fdaed077f7a69b95e18064bfc5d3550dce9cbb12dee2e280046dc6b34d071c +size 363 diff --git a/source/parts/detail/b/big-red-bee-brb-900-brb-900mhz.json b/source/parts/detail/b/big-red-bee-brb-900-brb-900mhz.json new file mode 100644 index 0000000000000000000000000000000000000000..9bd57370b068245a04b145477ddd8800a2d5ea94 --- /dev/null +++ b/source/parts/detail/b/big-red-bee-brb-900-brb-900mhz.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49892fa28c8c00d980c1911bd30b13f8b923099f1e982d8deb839171c9d9e44b +size 389 diff --git a/source/parts/detail/b/big-red-bee.json b/source/parts/detail/b/big-red-bee.json new file mode 100644 index 0000000000000000000000000000000000000000..51633c2c2dd8a64a2b1c2db8bc9db302657371ba --- /dev/null +++ b/source/parts/detail/b/big-red-bee.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47ee7fb62894edc7601d507e26b0e0a1fa1de873035da6d3dc6fe07a872de27 +size 273 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-00000---37750-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-00000---37750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28697e794fc5c0c8f879b1e7a9db4c7c4bb0f0ce --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-00000---37750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ca75fa6ba7f305e75fe9f0032caae1690546072eb7b009ac56f8f0963344989 +size 497 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-00000---39000-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..983b632e6e28d5ca3f54e60a669ea616e2e63390 --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7df13e80da113b398ed0cbfb72bb16a42f9b97d58ee7eae97f090120d3619e +size 541 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-12100---25550-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-12100---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e6405525f519e1c9f3b1946f0be73ca5edf564c --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-12100---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4424d07654569dc74a82494d8e102ef541cf38a371a02368168a4155f6584e03 +size 541 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-12100---39000-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..88f93f1bf7c429aaf15f1ef5bedb7c733ad8feae --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745571bc62d4469cf9129af2e4b2b6dee1df91f8cbc5e1a043d3c7f1d0c208dc +size 541 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16350---25550-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16350---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..503fb374867dd46b99a17392f6f4bb64c80cca95 --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16350---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e9ec23b79b39e6e3a4bd893b68bd620218f7948aa10260e86353657a54bda8 +size 541 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16350---39000-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5c04987d793c3a787622aca6fce970597d8cc0db --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:461c6fae369b9c59a75cb2a7f9f13c4551bfd867e0c68c3b2f7980f3ffafa886 +size 546 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16400---37750-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16400---37750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..14d6cb9eb35432eb80ecd1cc95f5d2fed695e1f2 --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-16400---37750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3779edff2e2b1bb71900f3a35dc8e845639642c4a8b4baa9fc881f55c52169dc +size 497 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-21500---39000-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-21500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d02400db295e76a733c745bd5401557dad46c159 --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-21500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f65972f9d97d97d3a01b23c4a7afea69abfdd725a279f9173fe94febc45928b6 +size 541 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-21600---39000-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd7b7a2661b67240129b4c57cdab2a4313fb8865 --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058c546708a39b3b0e49a6dfedccaef14a8bc9d48c4868bd72cf85d1745229c3 +size 541 diff --git a/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-22047---39000-in.json b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-22047---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a8cfb1646c71896977fc53ee0a73a988f4a53ad --- /dev/null +++ b/source/parts/detail/b/binder-design-aircraft-plywood-birch-ring-22047---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f6b310512f394f3ffe2f3cb54596aca4ac0f99e2e24c5b1b07c9801dc9f700c +size 541 diff --git a/source/parts/detail/b/binder-design-birch-ring-00000---25550-in.json b/source/parts/detail/b/binder-design-birch-ring-00000---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b9ad44a770f8d6256e8258742016f2f35f6c1dd --- /dev/null +++ b/source/parts/detail/b/binder-design-birch-ring-00000---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a172e85901d833d4d9b847856da965fd882b5fa03d8f252a9e9ef08e9eb09b +size 478 diff --git a/source/parts/detail/b/binder-design-birch-ring-00000---39000-in.json b/source/parts/detail/b/binder-design-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fcab970de3ec47fe3f0194ae7e4a29c65bb14e99 --- /dev/null +++ b/source/parts/detail/b/binder-design-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:025d928223bb1b4fe8631ef79e13800a2a000e36280dbfd7d8a8b4cd98757a72 +size 478 diff --git a/source/parts/detail/b/binder-design-cardboard-ring-12100---21800-in.json b/source/parts/detail/b/binder-design-cardboard-ring-12100---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9abb5b14915e3c58b9a6085db895014a1d55f9f --- /dev/null +++ b/source/parts/detail/b/binder-design-cardboard-ring-12100---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305ffe693de281abae3da765d62983e2e20e1e2734c1d17d46f2d2bdf12ff482 +size 456 diff --git a/source/parts/detail/b/binder-design-kraft-phenolic-ring-37760---39000-in.json b/source/parts/detail/b/binder-design-kraft-phenolic-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..802e56eff8dead8b78346c3cc38dd5218966669b --- /dev/null +++ b/source/parts/detail/b/binder-design-kraft-phenolic-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16bb4ee08818886b77ce3549039e731906105223de9d33c73bbb52a03cfa2aed +size 507 diff --git a/source/parts/detail/b/binder-design-paper-ring-24580---25550-in.json b/source/parts/detail/b/binder-design-paper-ring-24580---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d3c0841d749e7a744062bcaec922d9dab07cebb --- /dev/null +++ b/source/parts/detail/b/binder-design-paper-ring-24580---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d7f140cb7763c3fdf1ed218df41ea3850463f139850dd1e88ec1feaeb89829 +size 478 diff --git a/source/parts/detail/b/binder-design-polycarbonate-ring-21600---39000-in.json b/source/parts/detail/b/binder-design-polycarbonate-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a97bfe1a46cb0e8a229b82ad2797925d667641cb --- /dev/null +++ b/source/parts/detail/b/binder-design-polycarbonate-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:232939c5e885ad4945c6f3e7d2dc06ec43c379e875cf97029321822e07eca6a8 +size 512 diff --git a/source/parts/detail/b/birch-ring-00000---28800-in.json b/source/parts/detail/b/birch-ring-00000---28800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64d2d07aec693d4e1837abfa31f0e207f5a85d0f --- /dev/null +++ b/source/parts/detail/b/birch-ring-00000---28800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15163fc58597f8823a7042f19d5fbad76ee59384601f1969ce62b6fcf3392f2 +size 373 diff --git a/source/parts/detail/b/birch-ring-00000---39000-in.json b/source/parts/detail/b/birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f1ddb8b58fa5e30aee6f49423a824250700384a --- /dev/null +++ b/source/parts/detail/b/birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c2539bf8051fe1dd630fb3db8c231260a9947dd6b5edebb498519debf0a1e9d +size 373 diff --git a/source/parts/detail/b/birch-ring-00000---39240-in.json b/source/parts/detail/b/birch-ring-00000---39240-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2eab43bba299b6908582833120b2ed0305eb4310 --- /dev/null +++ b/source/parts/detail/b/birch-ring-00000---39240-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2847d4e6ae8125ac3635c8429808b7775e0ca7d9e97ef1325ecda32293878d96 +size 373 diff --git a/source/parts/detail/b/birch-ring-00000---75120-in.json b/source/parts/detail/b/birch-ring-00000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..442c15e66c8cc342c4bd491a1ae659f951c58883 --- /dev/null +++ b/source/parts/detail/b/birch-ring-00000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e645f3d41f067059aad50778231df6be95c3050f4aa7f6ed24caf59a15f4c6 +size 373 diff --git a/source/parts/detail/b/birch-ring-12650---15950-in.json b/source/parts/detail/b/birch-ring-12650---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2aa2c56964e3484328d21f0fd6fcce24ab8982c --- /dev/null +++ b/source/parts/detail/b/birch-ring-12650---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cb3a5282a795c1d293411f8ea178bee3c5b36a2c41bc93a9c139a1d6d63dd94 +size 373 diff --git a/source/parts/detail/b/birch-ring-12690---39000-in.json b/source/parts/detail/b/birch-ring-12690---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e5d91446f22b5880d606f49ff5203b1619e2efe --- /dev/null +++ b/source/parts/detail/b/birch-ring-12690---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adf9127ffd5dadcc073a6fbe02430cbc769039338aff4db84eb9828b8e0e6568 +size 373 diff --git a/source/parts/detail/b/birch-ring-22760---39000-in.json b/source/parts/detail/b/birch-ring-22760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0952f0872d219d5a904f02bab78e9684de0ba3e1 --- /dev/null +++ b/source/parts/detail/b/birch-ring-22760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0815625da3d414755dc49cfc57b1a17892ee9e235c60aafcea8c850601fdb5 +size 373 diff --git a/source/parts/detail/b/birch-ring-24500---39000-in.json b/source/parts/detail/b/birch-ring-24500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c6b80589cd92eb0e8b668cad4fba5a21dd0ed1f4 --- /dev/null +++ b/source/parts/detail/b/birch-ring-24500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da9bf4732f76abc4609363f0a6f6203a5122ceb661130195fd0cf35339d90ee7 +size 373 diff --git a/source/parts/detail/b/black-fwfg-ring-20089---21585-in.json b/source/parts/detail/b/black-fwfg-ring-20089---21585-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3598d698e6dc99094f7c794fbe8ed0a011c9e412 --- /dev/null +++ b/source/parts/detail/b/black-fwfg-ring-20089---21585-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05181cc181ba9fe6b5e5474e457488dce65d586e482533b7c44b6ffff12249b6 +size 393 diff --git a/source/parts/detail/b/black-fwfg-ring-21260---39213-in.json b/source/parts/detail/b/black-fwfg-ring-21260---39213-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d119b0f0da7a3d637816ad15d4cdcc6f3f65b7a0 --- /dev/null +++ b/source/parts/detail/b/black-fwfg-ring-21260---39213-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed4780409c8f81777c3ece806e346aa88db1055c30909f9c5f6c8361a515100 +size 393 diff --git a/source/parts/detail/b/black-sky-alt-acc-accelerometer-with-9-volt.json b/source/parts/detail/b/black-sky-alt-acc-accelerometer-with-9-volt.json new file mode 100644 index 0000000000000000000000000000000000000000..87a0ac7b753e96ea095206ddd09c381927157a6a --- /dev/null +++ b/source/parts/detail/b/black-sky-alt-acc-accelerometer-with-9-volt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb485ebf957fd21e27a075010d8900c0f06252b2c7e8e48b00cf1102ddf07977 +size 441 diff --git a/source/parts/detail/b/blackhawk-rd-aircraft-plywood-birch-ring-16350---39000-in.json b/source/parts/detail/b/blackhawk-rd-aircraft-plywood-birch-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52449dd9f6de50e4da7f9880f272a4a8e8c6991c --- /dev/null +++ b/source/parts/detail/b/blackhawk-rd-aircraft-plywood-birch-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dfd0138892865ea2c0061d5aabf5aaec963e4c58396c18c46f4f81fa2d05a6c +size 536 diff --git a/source/parts/detail/b/blackhawk-rd-paper-ring-05460---07100-in.json b/source/parts/detail/b/blackhawk-rd-paper-ring-05460---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..69a3d00cac4ad37e6ea85534c07b64c41083a4a7 --- /dev/null +++ b/source/parts/detail/b/blackhawk-rd-paper-ring-05460---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8191180fe258c944bf91913c74ac7d9afa88b971c55b4dae83849abd513871 +size 468 diff --git a/source/parts/detail/b/blackhawk-rd-paper-ring-07360---09500-in.json b/source/parts/detail/b/blackhawk-rd-paper-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f04bab73b468af65d4670fd8fcc8982e2284e06b --- /dev/null +++ b/source/parts/detail/b/blackhawk-rd-paper-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cca38aa88c9a53a1541ddcf817cf2a07469b25288e388f8ce39d8c88cb53830 +size 480 diff --git a/source/parts/detail/b/blue-tube-paper-ring-52000---53800-in.json b/source/parts/detail/b/blue-tube-paper-ring-52000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c9e1dfc6b07d26f4362dc36a8681439695a591c --- /dev/null +++ b/source/parts/detail/b/blue-tube-paper-ring-52000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6446ba9232ce124accc13424eee541ccc4d52ef0a264b465ff5aa071b47936b +size 460 diff --git a/source/parts/detail/b/bms---balsa-machining-service.json b/source/parts/detail/b/bms---balsa-machining-service.json new file mode 100644 index 0000000000000000000000000000000000000000..98b3e01d91f65d84d230975312195c2caa381508 --- /dev/null +++ b/source/parts/detail/b/bms---balsa-machining-service.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5efb1cbd5f91e1390f2f9ada2b6d66ee39a98752722abfc76921b1f4c87920c +size 345 diff --git a/source/parts/detail/b/bms-semi-custom-cut-1-conical-transition.json b/source/parts/detail/b/bms-semi-custom-cut-1-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..cdde9675db0d323e7fc21af35cca1c48d5ec7c48 --- /dev/null +++ b/source/parts/detail/b/bms-semi-custom-cut-1-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:522e7259205bda418c832f871012d2dc3ef1fecb74ef8987adadfb206b37e74c +size 635 diff --git a/source/parts/detail/b/bms-semi-custom-cut-1-elliptical-transition.json b/source/parts/detail/b/bms-semi-custom-cut-1-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..b2fa990df2622d55d2c732355d96eb6cdb4ca524 --- /dev/null +++ b/source/parts/detail/b/bms-semi-custom-cut-1-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3ed7776e53f002be62b58c92f95c60c0a32932a8d970571cf111282e683612 +size 647 diff --git a/source/parts/detail/b/bms-semi-custom-cut-2-elliptical-transition.json b/source/parts/detail/b/bms-semi-custom-cut-2-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..deac39812aa845e22e2859e86938651018b7dec9 --- /dev/null +++ b/source/parts/detail/b/bms-semi-custom-cut-2-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cdd40b025ceffde22f2571795c7feafcc6acdfd9c2e8baf211463c56f28e3fd +size 647 diff --git a/source/parts/detail/b/bsd-rocketry-cardboard-ring-12100---15250-in.json b/source/parts/detail/b/bsd-rocketry-cardboard-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82898f942bae2a21711d217f412656abe597d324 --- /dev/null +++ b/source/parts/detail/b/bsd-rocketry-cardboard-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e9481441dba840bb5649a6f73ce9524c3a34fa806de8e6ce8209385bfc5e32 +size 496 diff --git a/source/parts/detail/b/bsd-rocketry-cardboard-ring-13800---15250-in.json b/source/parts/detail/b/bsd-rocketry-cardboard-ring-13800---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..922c665c859fd91b665eebd5aefa8f9332c7f871 --- /dev/null +++ b/source/parts/detail/b/bsd-rocketry-cardboard-ring-13800---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72092eda95968912ffe28052d9bc4708a4df4eec968cdc076a9cfbbd1f5b48d +size 496 diff --git a/source/parts/detail/c/cardboard-ring-00000---07087-in.json b/source/parts/detail/c/cardboard-ring-00000---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60adc621dc40546b42345aac8610c6856a0cf228 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-00000---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55aa89a77bab26d5c1bf262c0ed81edc30e66b0217b28bde18327a89e1317d4b +size 397 diff --git a/source/parts/detail/c/cardboard-ring-00000---12250-in.json b/source/parts/detail/c/cardboard-ring-00000---12250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c474bd4a61731726108f610f4db61d0ab18e7abf --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-00000---12250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959d86c43b954982fd5c9a1f2e58cd01b3bf9157a5aa19e8d8cde6102c38afa3 +size 396 diff --git a/source/parts/detail/c/cardboard-ring-00000---18504-in.json b/source/parts/detail/c/cardboard-ring-00000---18504-in.json new file mode 100644 index 0000000000000000000000000000000000000000..726e63e2f2880b4672eb8363ad34023a1f87dfff --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-00000---18504-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:100a50f54d28be144013ddd2caf192e3c62c3b53d73941645685b340643b9d2c +size 383 diff --git a/source/parts/detail/c/cardboard-ring-00000---21122-in.json b/source/parts/detail/c/cardboard-ring-00000---21122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33033e60ec31eeb3d7f4580db5cbc8bf1a3e59b0 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-00000---21122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be74bdac0c50e2c7a9efe97319aae57f4915ffdc45db7ec0fce3324512461cf +size 395 diff --git a/source/parts/detail/c/cardboard-ring-00000---28425-in.json b/source/parts/detail/c/cardboard-ring-00000---28425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cec9f00ceb5833cc4cb945b7599a4c2176ce19b8 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-00000---28425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9626c7ea2e0d27021fbfbf94656fd44bca88f03351ae0c648a03b479a9015cfe +size 403 diff --git a/source/parts/detail/c/cardboard-ring-00000---29370-in.json b/source/parts/detail/c/cardboard-ring-00000---29370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..182152170e8620177d2e21a6ab11e6260b95a673 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-00000---29370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f27ad20a817157a6839af1aa3542f0bfe216bad0019509d010faec1bfe2c1d +size 399 diff --git a/source/parts/detail/c/cardboard-ring-00000---39240-in.json b/source/parts/detail/c/cardboard-ring-00000---39240-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9625bf18034832c8cee4a7c94343f755f5dada89 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-00000---39240-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55eeb1a2caf5d97b7f299361e7bf7c63a154e1ff3509056575a47aaa7536308e +size 389 diff --git a/source/parts/detail/c/cardboard-ring-00000---53800-in.json b/source/parts/detail/c/cardboard-ring-00000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c9810c7098d6fb0fc0c9a1f2d483eab3af78ad7 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-00000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b2446deb73083162aaf7162d807b077c902447344dec7f6119f3364f89c11b +size 391 diff --git a/source/parts/detail/c/cardboard-ring-04724---07087-in.json b/source/parts/detail/c/cardboard-ring-04724---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6992b7468254d35e7fb9b947274272f080e2d119 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-04724---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4fff190e19f8f94404021ca609449e712cb713f9ca25becaa59fddc65ad389 +size 397 diff --git a/source/parts/detail/c/cardboard-ring-05394---15748-in.json b/source/parts/detail/c/cardboard-ring-05394---15748-in.json new file mode 100644 index 0000000000000000000000000000000000000000..46c653b0f14fafaa524223c7c46894321a305838 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-05394---15748-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936a7293209a57ca1cdecd7f3048b275b12c12fe33831ca8a210e8191d366984 +size 399 diff --git a/source/parts/detail/c/cardboard-ring-05785---05785-in.json b/source/parts/detail/c/cardboard-ring-05785---05785-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a85c4b39a88cbaaae81a5f5f9bb4f2b91a0a965a --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-05785---05785-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:970b1e30cfa97bfb8a82ef793e38e4fe7af7ce0d786d20b3490b10ff593d8df1 +size 396 diff --git a/source/parts/detail/c/cardboard-ring-07087---07087-in.json b/source/parts/detail/c/cardboard-ring-07087---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f9c54739dd43d60fb30a03c63b5dcea4555461a --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-07087---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55c78874676f1f1583b4b422a7863226fa1a22da9e17e030d845e4f40f46765 +size 397 diff --git a/source/parts/detail/c/cardboard-ring-07360---15950-in.json b/source/parts/detail/c/cardboard-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a9a6120a4a8c98597bd1f2b97d437bf90b89988b --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ed8088396c13ef162f4e92ca738fb78a1dccc160e927e9a9533b4d00dbbe8a3 +size 398 diff --git a/source/parts/detail/c/cardboard-ring-07400---09500-in.json b/source/parts/detail/c/cardboard-ring-07400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ad294dbe6548b431a8b5370fc82ec3f27c61d29 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-07400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa41dc28cb07ea91ff9cd132e777048651cd85bee2be2497d8f6a2d7775f8d32 +size 412 diff --git a/source/parts/detail/c/cardboard-ring-07465---09449-in.json b/source/parts/detail/c/cardboard-ring-07465---09449-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d04b72d756eee27ac10f0fcc175891d313838b42 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-07465---09449-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd31a51c04b0466fc4e95c9ed7e7b71fa7497d47611a4e6adcddafe3f6f72623 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-07480---11550-in.json b/source/parts/detail/c/cardboard-ring-07480---11550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..669723d050586aab072f67e76c8899d114408338 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-07480---11550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acbfe79883d7142dbdd64b0861ce45f5be81780304b2ee3b38f3e58c075216f5 +size 396 diff --git a/source/parts/detail/c/cardboard-ring-07480---12673-in.json b/source/parts/detail/c/cardboard-ring-07480---12673-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8c380b51a5e740bc30bad04d6cefba165e7767d --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-07480---12673-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2134d88a3464b2bbb86e65378649742b7f913ba5e64e514a9ecde69132db78b5 +size 397 diff --git a/source/parts/detail/c/cardboard-ring-07480---15950-in.json b/source/parts/detail/c/cardboard-ring-07480---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c98edfb70dbfbd8f9cb4b0f4448a03fb3c94518 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-07480---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec113d5f0b7df69d5aaa38528f7757eba7fb44acd9116dd8a480954ab50c007a +size 404 diff --git a/source/parts/detail/c/cardboard-ring-07500---12500-in.json b/source/parts/detail/c/cardboard-ring-07500---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11577231fb2343e92f494732745b81b469469faf --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-07500---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb0678bf6c4f5f79b849a1b36ac02c664ef71965e6cb9f97d73672236614b577 +size 396 diff --git a/source/parts/detail/c/cardboard-ring-08300---09500-in.json b/source/parts/detail/c/cardboard-ring-08300---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..44318d9f307ac65596f15d48fe2528a7d03a4861 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-08300---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2b35f53d1c81fc0cba3607413056bd8682b2084101acfaead44ef80b597c05 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-09331---13031-in.json b/source/parts/detail/c/cardboard-ring-09331---13031-in.json new file mode 100644 index 0000000000000000000000000000000000000000..353ad45938939a260f8e4e3682920f92712bfe54 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-09331---13031-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a12d7a853b1d58ab7904df4da5c9897608ffdd6ece11d626af5207d5fa4851 +size 407 diff --git a/source/parts/detail/c/cardboard-ring-09500---09500-in.json b/source/parts/detail/c/cardboard-ring-09500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..81e6712541469886e887008890e2316155d4fe24 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-09500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b4015266402784d5d5f973bd7bc28ac94e813572642cd4a52e2fd77264119a +size 397 diff --git a/source/parts/detail/c/cardboard-ring-09760---15950-in.json b/source/parts/detail/c/cardboard-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..427d553f4d14fb10c7ca5477ff06d93bd0cce22b --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19994ac77412498794ffbdea1f1e34becf2421ba0b956fc2c5cadb2d6dcabb5d +size 404 diff --git a/source/parts/detail/c/cardboard-ring-09760---25882-in.json b/source/parts/detail/c/cardboard-ring-09760---25882-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c1265d78f17ccaebf64297e0484a2c43a489403 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-09760---25882-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:360103412b6b61dba91705d56e5a864717fad61b60d11cf47223e0dfeea79c69 +size 422 diff --git a/source/parts/detail/c/cardboard-ring-09800---25580-in.json b/source/parts/detail/c/cardboard-ring-09800---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a523c7cddfed1a7be0345122bcfa66aa6b6c608c --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-09800---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c81b807af6e516f59375ec69389b5aad8bf012652b49671f376c3cb7367e00 +size 412 diff --git a/source/parts/detail/c/cardboard-ring-09843---12598-in.json b/source/parts/detail/c/cardboard-ring-09843---12598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4649b4b538af1c3aa2cea060a272d077caea1866 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-09843---12598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79581d0728213f36f441eb7d9f86ef3066c02235094def13ebfdbc37c2eb83d +size 389 diff --git a/source/parts/detail/c/cardboard-ring-09843---25213-in.json b/source/parts/detail/c/cardboard-ring-09843---25213-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ed5c9f9cbcc00b098470b68b9bb4e7558738dc4 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-09843---25213-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0f4f986bb6f08e1955580843c6e3182d432fcd6c3389db5ccb7543db28abde +size 389 diff --git a/source/parts/detail/c/cardboard-ring-09843---39000-in.json b/source/parts/detail/c/cardboard-ring-09843---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e8d77d02b6c8cd3d2f2a6ed84799c26da7a97eac --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-09843---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb440608cf4b1fe497d0ef529eae65e5dea14e034804574797fe1e69b3d508a9 +size 398 diff --git a/source/parts/detail/c/cardboard-ring-10000---25580-in.json b/source/parts/detail/c/cardboard-ring-10000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74cd12f83a06e0c98eb7288ca68bf5c048a2a703 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-10000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765adb49e721d117b23e2a9dd2eff5dd01cb2f5eebab6ffd6ab5b83d75bb42fc +size 412 diff --git a/source/parts/detail/c/cardboard-ring-10000---25880-in.json b/source/parts/detail/c/cardboard-ring-10000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a9b3e115d4ea2e03c97e8fcd8460c72e097e5c52 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-10000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4033f2662043a2652228d0d4ba680c2261acde1eed219a573eea8ec2bfd65c64 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-10200---11450-in.json b/source/parts/detail/c/cardboard-ring-10200---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9ce27b71f98cfb948735ea2679b665879ef2f16 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-10200---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db87aada1aa92c1b860aac5ed785192ef274184b3e3df53b6aed77e2b64dbd1 +size 412 diff --git a/source/parts/detail/c/cardboard-ring-10300---11550-in.json b/source/parts/detail/c/cardboard-ring-10300---11550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..607eff7c655f3693ca5b1c08f3453d957f24c7a6 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-10300---11550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f72f9d6ddd6c24d86b4cbfafa0fb4bb7ba8f5ddf50088eefb341699bbb79fe4d +size 396 diff --git a/source/parts/detail/c/cardboard-ring-10500---12830-in.json b/source/parts/detail/c/cardboard-ring-10500---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7394672260c5489d33a4e6c5db3d11d4b968e7a3 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-10500---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c57e48debf32da911311bce4a4b92a7c4f63d4e3a3c91182cd7bdf89db6dc9ca +size 396 diff --git a/source/parts/detail/c/cardboard-ring-10830---12830-in.json b/source/parts/detail/c/cardboard-ring-10830---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d44f9cc0ca4b979fffc68ef981de6163e702c22 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-10830---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96654d10cb2903eb06ed6e94efda8e81407ef71ce9d2964871880055b756e01d +size 396 diff --git a/source/parts/detail/c/cardboard-ring-13800---19250-in.json b/source/parts/detail/c/cardboard-ring-13800---19250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f52e730cb2a5af477684d8a6e8c8f3d290422b4 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-13800---19250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17969677dd8418cb23b808cac69a764a637c77022fcdc2e3de8804dca1d5fdc5 +size 392 diff --git a/source/parts/detail/c/cardboard-ring-14764---14764-in.json b/source/parts/detail/c/cardboard-ring-14764---14764-in.json new file mode 100644 index 0000000000000000000000000000000000000000..374ce60bf3617ab92988027ac9fa2e155a15b9fc --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-14764---14764-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab0842cad3f264e9687feee10258695ddfcd2a88068dcb4fe920ff754f10d1f +size 402 diff --git a/source/parts/detail/c/cardboard-ring-14961---53425-in.json b/source/parts/detail/c/cardboard-ring-14961---53425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ee9f06d4bbd61f0d682cd392c13889f94ba02fc --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-14961---53425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be546736592b25710250d48d9f1586906d89a1485306f2ebfc7fed85c79a9a03 +size 399 diff --git a/source/parts/detail/c/cardboard-ring-15950---15950-in.json b/source/parts/detail/c/cardboard-ring-15950---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..38c9f1751a8633a63017d968d6c58ddd159e9974 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-15950---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c429363c83c0856bd7e9b6ea3daa580b7f822e2165a225fe4344f73224533503 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-16024---25591-in.json b/source/parts/detail/c/cardboard-ring-16024---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..19a0eeb74edbcdff6f3db39a358a281ea57b919c --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-16024---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e045fadb1696762d286dc3d9fc8b59ad2e83ded61672d41c670148313bd8a39 +size 396 diff --git a/source/parts/detail/c/cardboard-ring-16142---21476-in.json b/source/parts/detail/c/cardboard-ring-16142---21476-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a1cbef998a035c1ea7e2902192e605b78463dd5d --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-16142---21476-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b9f1ee8039c2a8b865666b06a6cd4395c6cf94e9759ac89cd2df3c46bece1a +size 395 diff --git a/source/parts/detail/c/cardboard-ring-20709---20709-in.json b/source/parts/detail/c/cardboard-ring-20709---20709-in.json new file mode 100644 index 0000000000000000000000000000000000000000..090efa4ef71e262c90123d69dccc8824124e7031 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-20709---20709-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4ac66ec7b41ff4f49fdebb248dd2aa818ca96539a78aa139aff4a391dd96b1 +size 393 diff --git a/source/parts/detail/c/cardboard-ring-20925---20925-in.json b/source/parts/detail/c/cardboard-ring-20925---20925-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28e6826a0c84a9a632a8ac7968a51a206bbe2264 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-20925---20925-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c74621f808250dfa4e3b7be1149cdc4f914509a45083e6f843fbeae670da71f +size 401 diff --git a/source/parts/detail/c/cardboard-ring-21000---29000-in.json b/source/parts/detail/c/cardboard-ring-21000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6276214d2911fbb869ef4dce2bd142765bca78ef --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-21000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3526728680338663fdab361aeba89025e352c12c3c79d4e353ea3398b9ed5da9 +size 403 diff --git a/source/parts/detail/c/cardboard-ring-21000---75100-in.json b/source/parts/detail/c/cardboard-ring-21000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..746e06b11aa6b4a2b3f55f9ad01b532b99ae51a7 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-21000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2085478334133a9aa6cef6ce20154755a02c51c88ec3c48d7856cb3bbb7f92a0 +size 391 diff --git a/source/parts/detail/c/cardboard-ring-21260---25000-in.json b/source/parts/detail/c/cardboard-ring-21260---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fac080c7ad0029a42f4d45071e81cd4daea4fd93 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-21260---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115b6b29fee1e808b89b81e5d00acfba92000e69055906d59ca15c4af6079ec8 +size 394 diff --git a/source/parts/detail/c/cardboard-ring-21550---21550-in.json b/source/parts/detail/c/cardboard-ring-21550---21550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1a6c4aa2c810762c61914732134147903aeceb7 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-21550---21550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1add96afb90694bd9f43a8088f716a3aaa306ee8de08383245d77bc308ed5f46 +size 396 diff --git a/source/parts/detail/c/cardboard-ring-21600---39000-in.json b/source/parts/detail/c/cardboard-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..964742826602d54094fb1cb0a799e6c383749f7c --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac0a263d56eb79796411a99e2caaa7d02acc26ca5ce1f2ba4acef288d1b7ed6 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-22700---30000-in.json b/source/parts/detail/c/cardboard-ring-22700---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a59d0b24d62790f4fc2c99fbff94fd52f6365dc7 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-22700---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2dc8c7a98d19aafd57bab9669b14f9f3422ec682a8e2f959ac19180620e484 +size 394 diff --git a/source/parts/detail/c/cardboard-ring-24740---25540-in.json b/source/parts/detail/c/cardboard-ring-24740---25540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..253b321e66c311e58ce3b919c1d998e8a3664b0b --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-24740---25540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08888f12bf9aeb589d070c0a345bcd8873c5ba1e5e838240787346cacf01db29 +size 412 diff --git a/source/parts/detail/c/cardboard-ring-24961---24961-in.json b/source/parts/detail/c/cardboard-ring-24961---24961-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae5b8cdaae0572872c3a7ae84f7c080e587b4e8b --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-24961---24961-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8638d8000e050d5e83333bf57c190a6daee6145ecc687f41f91fa8407069d81e +size 404 diff --git a/source/parts/detail/c/cardboard-ring-25000---25600-in.json b/source/parts/detail/c/cardboard-ring-25000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a580ae649afee59746d7e28970c2bd82611cc65 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-25000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c8b208a7cf6c64adf08f83d593b6e9f26e16847bd143b0a81a977d6dda86e00 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-25760---25880-in.json b/source/parts/detail/c/cardboard-ring-25760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58223939a6e2727039f0f99a2c5cba3f67fa98ad --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-25760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c106cfc09289d007a2b806077af1c6d1a91ad04093a36a8e8ccf0aefdbf35c +size 389 diff --git a/source/parts/detail/c/cardboard-ring-25882---25882-in.json b/source/parts/detail/c/cardboard-ring-25882---25882-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78505dd651d2d9cfa698986fddb9dda291254b67 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-25882---25882-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7748d607defa154e85269db3c0529e3645f651ed10ce270bb618aadb8567950c +size 422 diff --git a/source/parts/detail/c/cardboard-ring-26000---38960-in.json b/source/parts/detail/c/cardboard-ring-26000---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8729aaa7917f171d8fa4d42dce3a40d7b3da836 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-26000---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f51198f20ea5f4243f7ea1d3dbf22543b0399b204644e9809c1229630ec45e +size 398 diff --git a/source/parts/detail/c/cardboard-ring-28300---29300-in.json b/source/parts/detail/c/cardboard-ring-28300---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..84ffcab4f0d3da45396f7402de06f587255bd8ba --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-28300---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60c247a48a13bd4e34258b9379216b282c56252bbccdc6cb35b22d83d48444d1 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-29200---29200-in.json b/source/parts/detail/c/cardboard-ring-29200---29200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9dfb72503c844b648c648c4839b0d9b2c1e67512 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-29200---29200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aae9badcb1867eb052504f9c6416d169cdc7bfe8220a5f9822fea082e2d0bcd +size 412 diff --git a/source/parts/detail/c/cardboard-ring-29331---29331-in.json b/source/parts/detail/c/cardboard-ring-29331---29331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c218db71ffcc33cba436979becd4f32ae08bb21a --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-29331---29331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec870ad16ef9264073b780fb33ed194b08df5ff34e583d86ee4916f9616e06d +size 392 diff --git a/source/parts/detail/c/cardboard-ring-29400---30000-in.json b/source/parts/detail/c/cardboard-ring-29400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f35d7a5961d55dc073cb93054df048318aeea31d --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-29400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dd3885cf9c2c66628cfb08e6273ef2408d89b5270ed4b9aa24f8468f02bd508 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-30000---30000-in.json b/source/parts/detail/c/cardboard-ring-30000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db8a5a6665c35400e8a7ac333d55d392566b8396 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-30000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f78fbdd071cdfcbbda1c0c85595c1d717848348b49e45c986c4f2da506b78c1 +size 394 diff --git a/source/parts/detail/c/cardboard-ring-35000---36000-in.json b/source/parts/detail/c/cardboard-ring-35000---36000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb23f83c54d6df117bb00439bb77a6cf4fc31825 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-35000---36000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5b6ad2ace972f08af30fc92649d2258367b63351254d154a9aa972965279a2 +size 401 diff --git a/source/parts/detail/c/cardboard-ring-37500---38750-in.json b/source/parts/detail/c/cardboard-ring-37500---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45c1543fc7f87bd799b64b0836517e1952ec2784 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-37500---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc6c5c94a9fa63917bfc093095cf5eb887f75a85a254f5dc45dfdc3e4d44dda5 +size 397 diff --git a/source/parts/detail/c/cardboard-ring-38000---38000-in.json b/source/parts/detail/c/cardboard-ring-38000---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d251cf6fdc7439c31d548a71b17d5f4dd164e82c --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-38000---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:990f18aa213742b36831d4bcdb603e13d356746a7b0a0dcfc25ba6b04d09614b +size 401 diff --git a/source/parts/detail/c/cardboard-ring-38425---38425-in.json b/source/parts/detail/c/cardboard-ring-38425---38425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..872b8ea39cab737d19551d3167202bb8d222271e --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-38425---38425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e391b2e21b5c9f41f30ff555e8050b412616bde03f5bdd06e0a88f568693236 +size 389 diff --git a/source/parts/detail/c/cardboard-ring-53800---53800-in.json b/source/parts/detail/c/cardboard-ring-53800---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..32e6001d96864a92e6f7cbb65fc48b5af65261f4 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-53800---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8f127afd9ccea2f80b78d54d3ca257e386620366ec72814148f6d41fa0eb34 +size 391 diff --git a/source/parts/detail/c/cardboard-ring-55000---75100-in.json b/source/parts/detail/c/cardboard-ring-55000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f98461b4866128e534f3cd141a83a061937ca700 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-55000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276094e4bfb4ab7ee7bf0e928046a2d268319570df82946aa7adace843ad9ba6 +size 391 diff --git a/source/parts/detail/c/cardboard-ring-75100---75100-in.json b/source/parts/detail/c/cardboard-ring-75100---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4c84267856c000ede2a752d190830849966f77d3 --- /dev/null +++ b/source/parts/detail/c/cardboard-ring-75100---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd2ae0e8a948f06973c90cde6a26d9f4cd1c1ccc2db8c8ae91cb6adabaf6675 +size 391 diff --git a/source/parts/detail/c/cardstock-ring-09880---29870-in.json b/source/parts/detail/c/cardstock-ring-09880---29870-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f84372e61c9f0c2a6cd4b82e521e1a6e6b4cf74 --- /dev/null +++ b/source/parts/detail/c/cardstock-ring-09880---29870-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d569de5af945a107582c7e092506926c8c4baea6ca352db40c35b459161f35e8 +size 393 diff --git a/source/parts/detail/c/cato-11-oz-uncoated-downproof-ripsto-streamer-00015-in.json b/source/parts/detail/c/cato-11-oz-uncoated-downproof-ripsto-streamer-00015-in.json new file mode 100644 index 0000000000000000000000000000000000000000..723006921cc0a4c3fbb69bfe43fd15493899683a --- /dev/null +++ b/source/parts/detail/c/cato-11-oz-uncoated-downproof-ripsto-streamer-00015-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb744e79575465aba5629926d354bd1ccc5e3b34a8bb143714f37e1d4652ad80 +size 492 diff --git a/source/parts/detail/c/cluster-centering-ring-paper-ring-09760---25880-in.json b/source/parts/detail/c/cluster-centering-ring-paper-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb7a2f78abe30c17e758426d1b496247cf41a91b --- /dev/null +++ b/source/parts/detail/c/cluster-centering-ring-paper-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:631e5c643e459dd3158fc9f50d0847b5352f1f1275e88534a411398078b4da37 +size 485 diff --git a/source/parts/detail/c/composite-warehouse-6-coupler-fiberglass-ring-58000---59980-in.json b/source/parts/detail/c/composite-warehouse-6-coupler-fiberglass-ring-58000---59980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07458be103efcfcf35ac13d9eebd386b38b418c6 --- /dev/null +++ b/source/parts/detail/c/composite-warehouse-6-coupler-fiberglass-ring-58000---59980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1acb3251e3c536795a6ce8f44956cc03bb5767b4b7effe525bdeaf53c709f75d +size 611 diff --git a/source/parts/detail/c/comspec-at-2b-comspec-at-2b-tracker.json b/source/parts/detail/c/comspec-at-2b-comspec-at-2b-tracker.json new file mode 100644 index 0000000000000000000000000000000000000000..1466d8d2a8400ff4dc590ef8600c13ba544c421f --- /dev/null +++ b/source/parts/detail/c/comspec-at-2b-comspec-at-2b-tracker.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b37405943cebad1167704bc1afe4fefe11307bf7e28918b7ad7adf9443418a8 +size 409 diff --git a/source/parts/detail/c/conical-transition.json b/source/parts/detail/c/conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..2f15dc377f271aa71dd85a1a8eb388462b6524b9 --- /dev/null +++ b/source/parts/detail/c/conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d7664e21013f81822c61a7af9076bb6723b7941f086ef1e68c837f92ee30174 +size 529 diff --git a/source/parts/detail/c/cosmodrome-erswsn-eng-ret--nut--washer.json b/source/parts/detail/c/cosmodrome-erswsn-eng-ret--nut--washer.json new file mode 100644 index 0000000000000000000000000000000000000000..8338a46e79b92abf9bcde4d7027d4a11b09612f6 --- /dev/null +++ b/source/parts/detail/c/cosmodrome-erswsn-eng-ret--nut--washer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5826824788b39a537686617e6777b796e0b25f15e8ad7d009385d5538e9df67 +size 431 diff --git a/source/parts/detail/c/cosmodrome-ql-quick-link.json b/source/parts/detail/c/cosmodrome-ql-quick-link.json new file mode 100644 index 0000000000000000000000000000000000000000..762cf6267720c937e11343440c78e3225819bef4 --- /dev/null +++ b/source/parts/detail/c/cosmodrome-ql-quick-link.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e552ab09d1597205cd49f776920c3820cbded43acc3a632e654d8e7f48c9edb +size 365 diff --git a/source/parts/detail/c/cosmodrome-sc-25-532-in-bungee-shock-cord.json b/source/parts/detail/c/cosmodrome-sc-25-532-in-bungee-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..959080b5c14b6177a47dbc53bfd16cb77849fe23 --- /dev/null +++ b/source/parts/detail/c/cosmodrome-sc-25-532-in-bungee-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22f483d1a9a53ae581b9d775b963b2b132db4d4b53ec3b2438838d7c4460433 +size 437 diff --git a/source/parts/detail/c/cosmodrome-ssepa-screw-eye--anchor.json b/source/parts/detail/c/cosmodrome-ssepa-screw-eye--anchor.json new file mode 100644 index 0000000000000000000000000000000000000000..fb7b97a7323c583198e9b99ed18a0146b27b1763 --- /dev/null +++ b/source/parts/detail/c/cosmodrome-ssepa-screw-eye--anchor.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a26597a153271ae30e4b88c3ef02b07ee333476a6a397e1fd03bae6c572e96a +size 409 diff --git a/source/parts/detail/c/craig-mcgraw-polyethylene-ldpe-streamer-00020-in.json b/source/parts/detail/c/craig-mcgraw-polyethylene-ldpe-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba22e7f4c9a19e7ead55d7e3c4230d2a7a5c263e --- /dev/null +++ b/source/parts/detail/c/craig-mcgraw-polyethylene-ldpe-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6f4f49f0850499033a8e8bbc40e96a80b1272b4820ad7d46ed5064410ec388 +size 473 diff --git a/source/parts/detail/c/custom--375-in-engine-hook.json b/source/parts/detail/c/custom--375-in-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..eb7ffec13c44b088c30ed801a475b4e7c54a91b8 --- /dev/null +++ b/source/parts/detail/c/custom--375-in-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c0ed2679dd3736561ecad3f8b800b95023ea689bce4e370940b9df9f5a66dfb +size 353 diff --git a/source/parts/detail/c/custom--516-quicklink.json b/source/parts/detail/c/custom--516-quicklink.json new file mode 100644 index 0000000000000000000000000000000000000000..190d2f12f2df671477bd356573ecf573e74e3586 --- /dev/null +++ b/source/parts/detail/c/custom--516-quicklink.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2d5a26bf3e0ae280a3fd468f103d25a0b8460a74774d9912845ce089fef1d1d +size 333 diff --git a/source/parts/detail/c/custom--added-epoxy-puddy.json b/source/parts/detail/c/custom--added-epoxy-puddy.json new file mode 100644 index 0000000000000000000000000000000000000000..726e6fc289c7dbeafaabee5a1805e606eb27034d --- /dev/null +++ b/source/parts/detail/c/custom--added-epoxy-puddy.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f6dd5be0eefc44bee767b59ab9183687776291d57dfc1a707f3598ccadbac6 +size 347 diff --git a/source/parts/detail/c/custom--aluminum-nose-tip.json b/source/parts/detail/c/custom--aluminum-nose-tip.json new file mode 100644 index 0000000000000000000000000000000000000000..40c401c41b68a701690ffd4eeae35fa15c373039 --- /dev/null +++ b/source/parts/detail/c/custom--aluminum-nose-tip.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c74ab5d769db3e8a84cdd252cfd9b8a446704cf2a7e420915613faae271a55 +size 347 diff --git a/source/parts/detail/c/custom--d-ring.json b/source/parts/detail/c/custom--d-ring.json new file mode 100644 index 0000000000000000000000000000000000000000..57aef20d852d096b0b7b819fa9b4403765993b13 --- /dev/null +++ b/source/parts/detail/c/custom--d-ring.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03fe7c781fcc58c88999a7370e84ca8043c9ea5e0c2f3f51f1348d160ec06a7 +size 303 diff --git a/source/parts/detail/c/custom--eye-hook.json b/source/parts/detail/c/custom--eye-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..53e3ba8d906d10b053e0823faa2a51fe014eeda2 --- /dev/null +++ b/source/parts/detail/c/custom--eye-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdb9b3d290eb9bcf55202757cad4ac6505b9ae33d97950a3c668572cabcb7b72 +size 311 diff --git a/source/parts/detail/c/custom--kevlar-cord--750lb----125in.json b/source/parts/detail/c/custom--kevlar-cord--750lb----125in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2a2a28cb5faf79b135938e858526877d8758cb0 --- /dev/null +++ b/source/parts/detail/c/custom--kevlar-cord--750lb----125in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66dd5770d00a9e650d938787eb8a8beaf5b48f6b10d08e464ab9541d626d481b +size 389 diff --git a/source/parts/detail/c/custom--nose-weight.json b/source/parts/detail/c/custom--nose-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..01e385e059909bb282b4f19163ed0b530f36bec9 --- /dev/null +++ b/source/parts/detail/c/custom--nose-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3458dd4499a9c955757d3c9fd58dab52b909b116b36c2280a91610a5b2d06a24 +size 323 diff --git a/source/parts/detail/c/custom--plate-retainer.json b/source/parts/detail/c/custom--plate-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..722ff8f6cac43ea720c1393916301c2f3b6b9df0 --- /dev/null +++ b/source/parts/detail/c/custom--plate-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c157d34c572684a91b3b67b8ca5b4029c6a68eaee9214ebda04e578a98a2400 +size 335 diff --git a/source/parts/detail/c/custom--ring-00000---00000-in.json b/source/parts/detail/c/custom--ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c399e805645c4f7b9bc7d9475c4ae3af86fe1b15 --- /dev/null +++ b/source/parts/detail/c/custom--ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fa88bdea436fad8cf53d08fbfc8875ca326e9fc455e2e7e6fcc2bc58c410773 +size 383 diff --git a/source/parts/detail/c/custom--ring-00000---15803-in.json b/source/parts/detail/c/custom--ring-00000---15803-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c7947bf481e8951e281d5d973fc2f9de903a844 --- /dev/null +++ b/source/parts/detail/c/custom--ring-00000---15803-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be573adf81bf62a7c2e545f11bc4249fb2fce5deb819e76526a83091c9336a0 +size 383 diff --git a/source/parts/detail/c/custom--ring-00000---73200-in.json b/source/parts/detail/c/custom--ring-00000---73200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..61c1b72dd5ca9ff3a425103400bb90117b873f25 --- /dev/null +++ b/source/parts/detail/c/custom--ring-00000---73200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e5472e689e96d1eb3fa0551dacbf93debc80f11cc6e494bb7858acd4936227 +size 383 diff --git a/source/parts/detail/c/custom--ring-10200---12734-in.json b/source/parts/detail/c/custom--ring-10200---12734-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e1875e469a0f65820d43079bf64f62ce889bf1f --- /dev/null +++ b/source/parts/detail/c/custom--ring-10200---12734-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f01e10c6aecb530637d43c689a4cbf24ca47f2374b0ecf831148b71a6ce4872 +size 383 diff --git a/source/parts/detail/c/custom--ring-20200---21500-in.json b/source/parts/detail/c/custom--ring-20200---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee721c7706aff600701e8c74ea983ed6e04f6155 --- /dev/null +++ b/source/parts/detail/c/custom--ring-20200---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812cf0909f37420fbe45385fe8227760743ad4414b1642f12167422437102263 +size 383 diff --git a/source/parts/detail/c/custom--ring-38300---39000-in.json b/source/parts/detail/c/custom--ring-38300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64b3685cf5956f6ac193259e733c9ca4fdb31165 --- /dev/null +++ b/source/parts/detail/c/custom--ring-38300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce476686286450c336492a325baedbc1ac2e5d626244e60aa965dce8a77d874 +size 383 diff --git a/source/parts/detail/c/custom--ring-58300---60000-in.json b/source/parts/detail/c/custom--ring-58300---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3233e4db636b9c6c102e54b0ecc6af046d880af3 --- /dev/null +++ b/source/parts/detail/c/custom--ring-58300---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fa098bbf0def8f24d98211aeef28bf8412ffcc59399f589f25a645bf2e915e +size 383 diff --git a/source/parts/detail/c/custom--screw-eye.json b/source/parts/detail/c/custom--screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..e62318fc23cd8b5fc52e064ef867259b1dcc87eb --- /dev/null +++ b/source/parts/detail/c/custom--screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6c96431fab6e359c084da3cc4a17e5599025456e9df3417fa9146e95a3092c0 +size 315 diff --git a/source/parts/detail/c/custom--shock-cord-eye-let.json b/source/parts/detail/c/custom--shock-cord-eye-let.json new file mode 100644 index 0000000000000000000000000000000000000000..d58f5be8646ab6a114a60ed7dfae9b7ef354589d --- /dev/null +++ b/source/parts/detail/c/custom--shock-cord-eye-let.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10195c46b9dad63b7d63bf5aa1c51ef7c0afa2472a4f2ee37391e88b3e0e604e +size 351 diff --git a/source/parts/detail/c/custom--tubular-nylon.json b/source/parts/detail/c/custom--tubular-nylon.json new file mode 100644 index 0000000000000000000000000000000000000000..02edf29c162cd505cae963465c0b8282c12c3c91 --- /dev/null +++ b/source/parts/detail/c/custom--tubular-nylon.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3551c0576433f6f7aebec64c8d5202499ea9f50e39fb4b49581ca0936cdca63a +size 331 diff --git a/source/parts/detail/c/custom-002-14-u-bolt-long--4-nuts.json b/source/parts/detail/c/custom-002-14-u-bolt-long--4-nuts.json new file mode 100644 index 0000000000000000000000000000000000000000..2df38c7153c3996f187aa9fd7ad17d007c4e4944 --- /dev/null +++ b/source/parts/detail/c/custom-002-14-u-bolt-long--4-nuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0850a89c8e33914490f677344bb8b30c0251f38af1bc48cffb43dc15db3b26 +size 413 diff --git a/source/parts/detail/c/custom-005-316-quick-link.json b/source/parts/detail/c/custom-005-316-quick-link.json new file mode 100644 index 0000000000000000000000000000000000000000..f5ce28278a6fdd8261040619c4743f84d2f0db6e --- /dev/null +++ b/source/parts/detail/c/custom-005-316-quick-link.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1150dbe5535d652c7eb6640c68a1e437d90676794e38b25d49614c561fe8cd1a +size 375 diff --git a/source/parts/detail/c/custom-006-14-20-threaded-rod---12--8-nuts.json b/source/parts/detail/c/custom-006-14-20-threaded-rod---12--8-nuts.json new file mode 100644 index 0000000000000000000000000000000000000000..7e50cfed453951609bc5925c8b9cc8b1606aaf04 --- /dev/null +++ b/source/parts/detail/c/custom-006-14-20-threaded-rod---12--8-nuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b358633c569145f4889aeb2ab9e128037a536aa381a59c70cbcb04348bf2d872 +size 449 diff --git a/source/parts/detail/c/custom-010-1500-swivel.json b/source/parts/detail/c/custom-010-1500-swivel.json new file mode 100644 index 0000000000000000000000000000000000000000..60832088ac9a42a2ccf04e2270528705afdc8b6a --- /dev/null +++ b/source/parts/detail/c/custom-010-1500-swivel.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81e30d71c8baf68684c2fee0df85bc43388cdb330fc6f4319495ceae5f8450a7 +size 359 diff --git a/source/parts/detail/c/custom-011-long-14-20-eye-nut.json b/source/parts/detail/c/custom-011-long-14-20-eye-nut.json new file mode 100644 index 0000000000000000000000000000000000000000..f13a8d519e647dd268304c903026ee1acd206cba --- /dev/null +++ b/source/parts/detail/c/custom-011-long-14-20-eye-nut.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4536c5b818178aec82272f9cdf6a8d15516dcd817e2fdab780ef035b2c826420 +size 391 diff --git a/source/parts/detail/c/custom-017-516-u-bolt-wplate.json b/source/parts/detail/c/custom-017-516-u-bolt-wplate.json new file mode 100644 index 0000000000000000000000000000000000000000..e5f023f4eb76c29fcbc1993194f4886b14b3f9f4 --- /dev/null +++ b/source/parts/detail/c/custom-017-516-u-bolt-wplate.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae843f0b626149b8cefa465929fbc59373c0b4c1d891d2f96cb51f1c92cc32d +size 389 diff --git a/source/parts/detail/c/custom-060-carbon-fiber-ring-00000---14500-in.json b/source/parts/detail/c/custom-060-carbon-fiber-ring-00000---14500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f5f6d5ebb09a78c7c76e58945217861ef3e7de63 --- /dev/null +++ b/source/parts/detail/c/custom-060-carbon-fiber-ring-00000---14500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fca8ae889729e092f2d0bd821c5bfc0837e911f1c77cab12e0d674a3d0a1669 +size 450 diff --git a/source/parts/detail/c/custom-060-carbon-fiber-ring-00000---14600-in.json b/source/parts/detail/c/custom-060-carbon-fiber-ring-00000---14600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ed0ecd43aa2ce3d057c5a89be0868464bdf902c --- /dev/null +++ b/source/parts/detail/c/custom-060-carbon-fiber-ring-00000---14600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d71ceed75f70bde09ab477d9a6647e722b7ccc0ec24a917f65cd1cb77fc0a60 +size 450 diff --git a/source/parts/detail/c/custom-1-u-bolt.json b/source/parts/detail/c/custom-1-u-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..389db46b6dd4602c12d6cbeea8cf04043306dca4 --- /dev/null +++ b/source/parts/detail/c/custom-1-u-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23fa71322363fb1172442d994ae5c45d2dfa0ba28bfaf446b001417e565ea7d8 +size 329 diff --git a/source/parts/detail/c/custom-11-ounce-rip-stop-nylon-streamer-00010-in.json b/source/parts/detail/c/custom-11-ounce-rip-stop-nylon-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df1e823395292825b961072af5b95a14f85d8abe --- /dev/null +++ b/source/parts/detail/c/custom-11-ounce-rip-stop-nylon-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4a512bd98597c6b3db0851d29eeaad20dea57ee0bfaae0de0edbe842a3d120 +size 444 diff --git a/source/parts/detail/c/custom-116-aircraft-plywood-ring-00000---11400-in.json b/source/parts/detail/c/custom-116-aircraft-plywood-ring-00000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c3e08375a90f310916592128378b51993ebd812 --- /dev/null +++ b/source/parts/detail/c/custom-116-aircraft-plywood-ring-00000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ab8b84b0fb12057809ed19634b863f63f1d2e8f7a4e6ac01275adc1f8b6200 +size 462 diff --git a/source/parts/detail/c/custom-116-aircraft-plywood-ring-00000---39012-in.json b/source/parts/detail/c/custom-116-aircraft-plywood-ring-00000---39012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0490e5fc083a53684dfa1f2afb8c654c69c86d59 --- /dev/null +++ b/source/parts/detail/c/custom-116-aircraft-plywood-ring-00000---39012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4231e2df8a588db751296f2e89210cfef1d5b29c170693fb791621287740fd5c +size 462 diff --git a/source/parts/detail/c/custom-116-aircraft-plywood-ring-09760---25900-in.json b/source/parts/detail/c/custom-116-aircraft-plywood-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a7453a43059a29e2e2925a67aec52c57d60641c --- /dev/null +++ b/source/parts/detail/c/custom-116-aircraft-plywood-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7fae52ac4423fe5bb072108e6950b7998bd3230087914cbffc77ee20f98d94 +size 462 diff --git a/source/parts/detail/c/custom-116-aircraft-plywood-ring-15250---20120-in.json b/source/parts/detail/c/custom-116-aircraft-plywood-ring-15250---20120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0b5e35b7c2d3114acbe5e80f0857cbf4ff1d98f --- /dev/null +++ b/source/parts/detail/c/custom-116-aircraft-plywood-ring-15250---20120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21cea378ba678681851ffc18af7f50d88680504db2b09a7359dcd3945017271 +size 462 diff --git a/source/parts/detail/c/custom-116-aircraft-plywood-ring-16400---30000-in.json b/source/parts/detail/c/custom-116-aircraft-plywood-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c8d670af8763db86b2521e06fa78ac3ee7f2073 --- /dev/null +++ b/source/parts/detail/c/custom-116-aircraft-plywood-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e06b85ad9e146c66ffc72f648ebb90a959f4af32b706488a6faa61c5eed007 +size 462 diff --git a/source/parts/detail/c/custom-116-aircraft-plywood-ring-31300---58600-in.json b/source/parts/detail/c/custom-116-aircraft-plywood-ring-31300---58600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b0eecd1492d0761423b1091fbe655cb2ac118d23 --- /dev/null +++ b/source/parts/detail/c/custom-116-aircraft-plywood-ring-31300---58600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f310dcccc41e03bb2bc30488dbf65c37c1b73f4a5b1268c0a2f0864b39279c2 +size 462 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-ring-26000---26300-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-ring-26000---26300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e993df055d1cac0025e2a2a5a7ba835a7a76cbee --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-ring-26000---26300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bc972a331eacfbd1fbd6f22f918c2a601686833ddc02456574550e3039e8c0 +size 489 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00000-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..140e2733ccca64bc2b18a44b29908ef9a92d4a76 --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ceda710234e2945d1a228b572a93ebba9c780a2d611aab5c843e78516b6187b +size 470 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00010-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83a9f98df38896249fbcac5cf2ab85032ed67f27 --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:743a39f8bedcae63d16c26daa6653be04574467fdf0fa5f74a3cac5679b210a4 +size 470 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00020-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f12ffd3ba28c937ca9583f15caf992404ed8b4f2 --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124ffc564d82165e237c5b644f7fa5b5814cfc51b8ccd5718938f0a13c6fedc9 +size 470 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00040-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cbee89b1860885e30873895b29a564a7ca28f59a --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dedafe886ffe95d981800c5518b6822f0bdc96b0daaa9f5cbd4354142d0d8ddc +size 470 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00050-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa17f3a90453d2a35c1e6fd61f3a0ed8b26dea4c --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2247279bbd0d91046c998276c9973bd647994233b628c50dcbd968c2fe21cac +size 470 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00100-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f2a26266407b7593fda9445e3a7c531ea8ed9cd --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c738f9535a92c1430a034c4048000c2e59fb25935ed3d4f586c10606b5ab437 +size 470 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00224-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00224-in.json new file mode 100644 index 0000000000000000000000000000000000000000..025463659c3352ec1627697e723f8e68385a802d --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-00224-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00c2c9f076b270eb8a5ec2ce22d40e89130818bc4b7f45e5bb363f6ccd5b6bca +size 470 diff --git a/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-10000-in.json b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..145e6c3f0f587c0e46b8cd839f746e25345eaf14 --- /dev/null +++ b/source/parts/detail/c/custom-13-oz-ripstop-nylon-skyangle-streamer-10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7088db34bb1f00445db9ba56cae405bed34685585ff97622efbeeb278b9c31e7 +size 470 diff --git a/source/parts/detail/c/custom-14-20-x-8-all-thread-wmtg-hrd-14-20-x-8.json b/source/parts/detail/c/custom-14-20-x-8-all-thread-wmtg-hrd-14-20-x-8.json new file mode 100644 index 0000000000000000000000000000000000000000..f921e2e2ed71b220e0ef8ae0b8cbae084b82a88b --- /dev/null +++ b/source/parts/detail/c/custom-14-20-x-8-all-thread-wmtg-hrd-14-20-x-8.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb119bdf73790dbe47cef40dc75cc977e124409ba68310224ad92d9d55ccd1ed +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---100000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---100000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db8bda975e179973b52af9772195293348557c69 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---100000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9f18d5c3a0df245f4c5a444915c05837aeede411a3c022555918b491407667 +size 463 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---15000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18960855118b7bce1f191a393211fe0e16b2a393 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bbe53fa32f02d3aec2892f93b722bac1b850dd7f875df8eeac235d03726e950 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---15250-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d44ae63338cd425a20ed8c82a0ae083317c95bac --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b817225214b36b84c6239c8d2f1e99b5c46264baf6c7c894720559206c985f5c +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24400-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..860d93a02af21568ac10db9d9da8b9ca5bfab013 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca4fd669369324badb6891698a7e0e0fd2b793ee166baa6924da5b2099ffb48 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24500-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b05140798bdeb0bfcee3d45c711961d62a0306ed --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df49871e9fd6a02cf80c025155020b3c14952d655a41965ccf95af9cbf530bf +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24740-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5302b2cbe4f9c31fb38aabd7682b122bb968a7f1 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---24740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a340c78e217dd511c709e0c1b7f36924f21b17bb1d024ebaee3b342428406bf9 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe435c37c3d59a87a52664fd49eb724e189eb16e --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86b9617761510db6c840790ae4d8e66b5885977998297b149c631d1bce9684a +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25598-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e75afda74370ea7e5a2627f4d0a602dfc6ccaeba --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5645518a75250f7632d8d482c78aac3a31d562ca3bf023987b5bc2ae26ae61f +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25600-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8587ca3d3b36a8cd8fee8e346b27ff5b3069ad8 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b781e927621dad102d31f847695b3b1768bd8ba22ae375802abca74fc8b11e0 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29300-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fbca74543b6abe4463ce78c7a319b49d0a0f9011 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a469379f2aab52e97a78fae8c538f9d6fa54d136d1d2fc896cf92890c6c984a1 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29700-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea880dabd272d99f3cf368cfd6bad193d0b6e434 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214110d793ad7dbcd4595232272e101291198ceff94fdab57f99c3cc9185c921 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29900-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..decca65bbe65ebe86343d14f4b8f1c9a5fb6fe24 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee731cfa4f4597c582dbf64c28b918d28a86e2082fa8b7994378620b3783e400 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---30000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6b5ab5c07fb6db76781e7345a249ca241b4b16c --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4683314bd98bf8a6afee5068a2fb63a2ec9442e2c906977e0425efba7da6db51 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---30030-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---30030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eead4682c21cb6105c1fe0286219c1db262cd454 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---30030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54d253fdfa3d4ab85454d55ce35d4ac720a7fca9d86d0602ef96fe0acd0e23b +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---37760-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---37760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b65e7010865a70e24833201aa80f203039fd7a39 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---37760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91d2721060e6a700d695a9ca1e7bd3d4f0c852b94590d690483ed71938efd293 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---38000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a8d61b4942da075d255689933332fdf131fb0b4 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4648a50ba215fdb9dd28b8ebc05c702f50491d1146f37fe89ac4866d45e546b8 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ebf8467d6faaf53251fa589134580767582f0b3f --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f78c8f3a8f7d20565d1956f7fced15dad0877eca16efd80d80b86f5cec0140 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---53800-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b2390bf2414cc82599c266a16e5ba2b1f20467f --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1224f1cf6ac5d285a1eb8d39cd83717b043dc7c022d16f9a6fc68da1a80c22b6 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---61200-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---61200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f181425be10fac33757467b9bfcaae7e95a8cd91 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---61200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7ad12d7ab28ea40f6f7a2305685dbcb2fa9e15a1aac28c7d670db93e37ba77 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---63200-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---63200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28d63f956e4d4d7db7de0352dfdde0aa89891790 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---63200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66370992036dd4df8d6dc1458e1158f314fe13320eed8b29de785196b69204e0 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---64500-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---64500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de44e9d6ec213ac083283c5e102d683cdbbade7b --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-00000---64500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0368e65fea85b0054beed75bbbed0244d9b2cd2c13cf2c92068edaedd80a245b +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-05440---09500-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..885483201f6a6894ef1ea77520bc22c842e930cd --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6557e5eca83bc1985652032def7f3361095b0ad9571c9e5133454edfce7118ea +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-09760---25880-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe99cc1e5d5b5ae9a9ad677df4c7f395c18ed821 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0498a41e88462bfc64543caf342a380c8cf56a5920d73ae14e3db4c1d4a91eaf +size 491 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-10000---21700-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-10000---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a1a6f9ce9ce3a97736e37d4893e36d0a66be1b0b --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-10000---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91375a4f8c14a650af1b56e9a366134aaecc277aedc0857922bacc770085caf4 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-11400---21700-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-11400---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..611e4f5b1f7c4880eba4d4203bf1dded5583d0de --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-11400---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e8989a23e0ed8109d474a40b62c3aa41f16cf0921bb64ef745d737deaf2c064 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-11710---26000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-11710---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10abd0eaaf69b07cc367aebcf6e23aecabb279bd --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-11710---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da5248323d48cd575faa62993a5c7895c5d7634348a40b9febd40d0bfc7efb63 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-11760---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-11760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2895e66f931149bd88631a8b09c7caf1761390ff --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-11760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f645c4ae669d280871e7f88aa1322fac12b2bd589219e843a4ce2362cc52473b +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-12000---38750-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12000---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..628a0f6728fa88150fc78a48253f87f6827a21c5 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12000---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ba8f294d93745e9bdfe48473d767ec5cbc93389b053de95b2c98b0a0769506 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---15950-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d6ff8a3dea1fe49fea2960298e1c27c8a0ccc63 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e730f71479758a57874f7213de92e41f9139d52a938b32c5f74e93e798a8c7c +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---25900-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ab48aa2f95c33eae8294de307bac9c2a134c2ba --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7d1c3ffa144f6a82521b864dd079d7a994ff56649d434c21e86cae8fffc30e +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---30000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbaf5a0f63bc26d4adf9c074b66464fb928c1051 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34588c0d3f9ec43c78440b7ebdd420cf102339d60c07098a1c4e1e840089c658 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-12700---25600-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12700---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da7cfb463006964820a2f9cc0f2a695c4bb29fe8 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12700---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a191348595e9a446ce8e539ae71ed24bca3b72c701bd0ca487b2f0c5ef931902 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-12700---30000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12700---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba8b45527ca0b9f2513115cf169d0b550b0eb0ae --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-12700---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e57df9371512c75e87d2d4723bd1eefadaf9bb5eae0a0ca66f4fc4aa9f82bd +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-15000---32500-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-15000---32500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..02cda23f39da84a017e7106fff96784a8fd1125a --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-15000---32500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0da1c71c176d4be392e4e572b8e1dc363562886ca0a7bc6bf5a42e4c722980f +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-15000---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-15000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..058f0abacfbaadc728a08fb3331e373c5c6db906 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-15000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cc4658f31e9093ca63d53bd6f2d1fc484c083cb7da6ce8754a25ad83f9e933 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-15748---29134-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-15748---29134-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff0ce77581c09fd591b227f5a375913933de385f --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-15748---29134-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d51fa72c7320295c035663195069a311fba7dfe513b3117fced9871b6a1766 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16000---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..13c68f3fb1c0b1727d74c4cab71cd0ca24dba05b --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe4d65c25a482dac109d2dba61d1a52532dcaf4225520a1fd5bcaea4b2791419 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..23d372677592bdb5c20e8da364141b24fe0a907d --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da4b730c014f6990b37df0676ec2726c45830349ff432297b5dad72a3e09e62f +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---50000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0cc54667b02b42667701955299f25b4c34885fa9 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:492b6e695687b113d4c0ba922e56bc30e0cad33a677b131483309400dc1eaa63 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---53800-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..115454a319d3f490d6c330765ba396be586eb6f4 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16350---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2659db9e8b1bd6fdf33b5ac1f22e7cf308597f32b13de7f5ae7c4bfcc730a7b +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---21800-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66b096a2eeab42b791bb24f523b0b7f9c17aa30a --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8192b9619d4110dbbf1295f14c2c69abd9c85d3d627387231cd871f130e701 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---30000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a3fc2b7aab8a2e410b5881f8663a77e949e759f4 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920356392c5b5cc97fe50ea1e41009a091fd77927aee2d5f5349ca6fe46eae8b +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..44af09dbad486e2653ea324d80d2c2367c5f58c6 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16400---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d362219071b1370744450ed49e2f6f7ee59b780a3da8527533a5159ef5423e +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16450---18800-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16450---18800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..16ca9a447819c116e63a393390ddbf386b8dd627 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16450---18800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf9b116618d35d3b64e306568aafb910d4a4ae429d07582ede8f6cf25391084 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16450---21260-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16450---21260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ca2f2b8039ccbe3336313271c4fa5aa7aa1292d --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16450---21260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c942587fa9212c119c92299e003aeeb4aa61489d76b53201a34a4203c8595c8 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16490---30000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16490---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6aa381b58187d02d2389ddf01f2259f775a985c0 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16490---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92f81bd29a10e2ba6f8ef191eb848029b307b9a7a7b195bb4db8ea250ab58ac4 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16490---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16490---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae92a3fd3e7a3233ec65e2ab2febe3ae9e722bab --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16490---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e0c21517191edec604c9557465a140f433653881a50ace42d139b2db06d734 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-16500---39600-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16500---39600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52db6867ec14607453f3b8cf942d2d71995d4c6b --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-16500---39600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cee01d65db628d6e9b02a5456c180c04e7dcc2c52df2a380a078100f9b7e392f +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b828a38c6f94f8eddbb261f50a8bfac992adb5e2 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f038d1502fbd84473e184f59311c811c31499a4b08c42586a33a815a9c21c1bb +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---74380-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---74380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..618497872b124e6e717a79205f376c3b25cae2da --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---74380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcea05fe0bd3393218ef3b24b38debf156e5dc5d7f9954e399b39d64c94bd57 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---75150-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1a52717a85e814a73c7205271574de14e8cf09f3 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-21600---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909ae1e3f6d37fdeb22b6ba1e7245ed3f7afb00b3cad67e30757ae6eb8b6859e +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22047---72244-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22047---72244-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec5e09c980675e2ad0ad5511d52a4b41edbfc04c --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22047---72244-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d58e70bc4c3d08dbf40382897f05c7c3482d555df80750e8b6873b247b7ca5 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22047---73622-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22047---73622-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f07654069eab1352f099b3ca394e71db00093f8 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22047---73622-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7defaf879e0c20875d67e128bd273246f134539273aeb9264ccd160adb1bf20 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22244---80000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22244---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3846b9454825c1e7ab061614285e12fdd5d8bc7b --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22244---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa77751b4fb40588a2227b8526b2ef143b188dfc2cd75bdcedec3c385f4d6163 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22500---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..532570739a301007dc5e631f70e92c6f9e1a9297 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8317c908ccf477fb041b5e7cc469c71157a3c0f40edb84babbbf87fd3c7aff45 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---38750-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..24afcb80d5dbef3e73920b02769399cf6d215568 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b484ad7c81ee65d78fae6dfbfcd255f6ec6a969f1fe000cc738e64e9177c136b +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0fbf4acc8b4ca9b5fac08ceaf208aec5a18583e --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9069e4ec807022ff8092cae610f3a335ef6c4eb31debdc1924f812d0f5213e8a +size 493 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---52000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---52000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5642f88eb6c3f0ccc630d1e419710772d544e82f --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---52000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c36130c718b0a9cbe6e6775788daf29bb2d76df8a2c58f89381ca186799ff78 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---53800-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41dab24e208a0e24ff24b4862bfdc548aee3e27b --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e163aec2ebd454f1fc3d880c97b1d6d25303e082f39896c3f4822b6fcaec83 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---55000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---55000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0192cb80c3905565d30eb44628e814bcb5241a2c --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22600---55000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:663048d11d0e8368eddeb480293998aa763d6a4ae729ad1f123bd4284eb6aad8 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22700---65750-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22700---65750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e7c7e8077f5ee227630a89d3b7aa4701bb043e89 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22700---65750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4037590de5703f92560401cc1b25139a77aa8a3eb035b7b31c8bb82a3f22ec40 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4cfe65e8c3aab09f53f41e77dd5b91b1dd9c1ed --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b34c4d62467e04f149ea2800513c6794382c1cf762e2e45a867fd4c4df18f429 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---47600-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---47600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6ae21bc6c12084160d7ca737e71bc1e2518ae65 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---47600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fbe651bed0cd4e33bb9d1baaeab3fb7c86a2a8ca94b9abfc0fadea4f4f98a61 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---49000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---49000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c643330f9e9fd4b70e9d97287b8f98f33b72376b --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22760---49000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a2fb3ab0aec490df8b4daf767324c4ccf1f8cfb4f7a8e1863b6f1dec5018bd +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22800---25598-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22800---25598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..73cc2fa967cdf98872896569f4b1e0387bb376e7 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22800---25598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e21cbc40a3645d41a11d2e6dbdd00e9bc55ad4645194acf3885c2e207f364e2 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-22800---60100-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22800---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..535d48c90d14114fdb7902b21da7527c108efdfb --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-22800---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da49830e4265708ebe7b20a04f59e1ab49630c0c6cf7bfa1eced14e6d28524f +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-23622---29232-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-23622---29232-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4ca9270cde859fb8499bd82f6f1391a09272656 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-23622---29232-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccaacfe6acbd517ecf6a6365997a64e7caa8f3f4e64c62a87a0101fa52e08fa1 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-26800---30000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-26800---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6074f22c768815c33f074a3661f464af11104f34 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-26800---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d868b6bae0ff11a6d078f04437f69123bd09658ce4f9a451ba29559730032b1 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-30000---105800-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-30000---105800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3298dc3f7fe8393d67cf32d02be01b97b6383a93 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-30000---105800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9be14a4f4b8f9b35fb029148f3a4c83dd904a50b4f2db8bb5c57720a2d6907 +size 462 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---39000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c463fff1bfe17784df6c7a004522f1c1eebcfb6 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1020baecc36cbf8c073bc9c279b2363fbaa99f2d5b25767e756683c7144ad5 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---39920-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---39920-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60560ba5a5495bc94b53218665c5f74b9eb158a7 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---39920-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae99f54c14c2a81c319e204317c9d4b8170cbcc390f391d90ef255a4ca0eb37 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---53800-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ad7ec6b35fb38467b6d1966cccb98ab33a2fd17 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-31000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bcf18df6b51378a09705f39c882018878b8a4572fecb0a869bfe7d68b1f290b +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-31496---58268-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-31496---58268-in.json new file mode 100644 index 0000000000000000000000000000000000000000..04e7dc15565e5aca4634a3fcca5c4396de3a7f51 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-31496---58268-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc52c4b6ab2b8b92acd5840b6a6f240ae1b7b7803d7d8afeeafd83eac6297753 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-40160---57500-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-40160---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3662c968c3a2892456fda8e504b624fa73963fbe --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-40160---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee27ffa6283a10693ceff0322aa86c8c150af40cfa52d5ebc086ce6d10cb3db +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-40240---59600-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-40240---59600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5294230777a71ab8f2299df892712f7836083127 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-40240---59600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f49346b62047e3d840f6e083811fc58bb77348535109b7ded1d778468124a42 +size 459 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-40800---114000-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-40800---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b57305a792a1619b1ad6f8fbbfee8f99bb15417 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-40800---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8763e392ab533231f3a20a5beb16ebd76a6be913545d2d2a539e4367407acbde +size 462 diff --git a/source/parts/detail/c/custom-14-aircraft-plywood-ring-50240---59600-in.json b/source/parts/detail/c/custom-14-aircraft-plywood-ring-50240---59600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4f396eab1e9840012621d2cbb8c3587c4a1e461 --- /dev/null +++ b/source/parts/detail/c/custom-14-aircraft-plywood-ring-50240---59600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b99c3a5bce7173786b8fcef18c9a202cdf627352706da4527aed5e9ebb95795 +size 459 diff --git a/source/parts/detail/c/custom-14-in-aircraft-plywood-ring-16370---20000-in.json b/source/parts/detail/c/custom-14-in-aircraft-plywood-ring-16370---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10b1b286872e7dd94d46a8e422d848d4f75d8fe6 --- /dev/null +++ b/source/parts/detail/c/custom-14-in-aircraft-plywood-ring-16370---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e977f160bb9cd02153482b86f3b5beb0b055d851744230d63c859336fea3f4a +size 469 diff --git a/source/parts/detail/c/custom-14-quick-link.json b/source/parts/detail/c/custom-14-quick-link.json new file mode 100644 index 0000000000000000000000000000000000000000..e0cf0c886bb4246b132b2fc8735b376a4f45b757 --- /dev/null +++ b/source/parts/detail/c/custom-14-quick-link.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:addda5852d00f9aadd4ab409b34a2f52258cfdd62cbc3db5c9395b99494587d6 +size 355 diff --git a/source/parts/detail/c/custom-14-u-bolt.json b/source/parts/detail/c/custom-14-u-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..6996251de72c34f8559f3d1c6da7c2d502b623e8 --- /dev/null +++ b/source/parts/detail/c/custom-14-u-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9f929b984ed45ab6dd854802f481f3711b327e053daddbe7dc647de32c741a +size 339 diff --git a/source/parts/detail/c/custom-14x6-eye-bolt.json b/source/parts/detail/c/custom-14x6-eye-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..f48cf488c412b968d04f1c3326232578fb45525e --- /dev/null +++ b/source/parts/detail/c/custom-14x6-eye-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:445d4ef2b7e4538197cd381766aaba4597b73c8ff7a6863390d4ac488e57575f +size 359 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---07100-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd1b8b5529ff24bb65e7074f72b679775a33e313 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9c90caa2e5acda52f220d6fd5b91022389763a7b5fe7113c62c77e43107f1d +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---09200-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---09200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bd1d4c3dea074438eb99f5b2c61a8f53b6b3982 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---09200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f057677a23ee7e0e5d278783f8c782c11102ff4843955cf02a30d8a441ca1a50 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---11000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---11000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7fd1a1e796d6e0e16660a919361e86db18b6b246 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---11000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3094a9e93347a037ef3e3e9e654fb9f26436802035d52f08afb227b6dc72da29 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---12800-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e44018c84ca6905fa3aad9db61ccf3717bdc020 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00d1481c7dc80d9dc0bddb8d22975b595cf97aadb176dd6523ab34879ce73c7 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---12830-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20be69553bf2abb257c1ef548bc4d36e9dab7ade --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0932f36f324988d843399508b2c79064e3c09a9cf6be4fe310763440546f2fba +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---15748-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---15748-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45ac14f5341e2ee30c17fded4177742fa9e1d3af --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---15748-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14c49c5d51c7a604cc07baf0af4c962f22140a72db903e652f3fe9265737b5d +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---21200-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---21200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..176a7aac959b77869d593ebe469192012340508c --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---21200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8360b6441caa4e423a2eb8726a360b1327f3ed0fa4c603d2f40a7180c1160cf9 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---24900-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---24900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..baa7b7b6c40b418b31262756418e60ea64e80e23 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---24900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7486a6b2ac3e468da2e490c081c757154e2d5c36a12427b7f8fb592898f056 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---25600-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c20e18c4bfcd05bc72711ea0cfae181c6cfdf41 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf4a098c85817639ec6d79b6d526ae87ce0af39fcac8e0f0b165b835714ccfc +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---29330-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---29330-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27c6e0307b6ac42a3b2929c1a6cc7c5111ee164d --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---29330-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47648b2a9f69cc02f34af238f6663ea30b0e071c6811f32e3dcc2269ee0f5885 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---30000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b2ad43e161ef95295454c83a37d5aa817dd9351 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd25cfc9b74a6e92175e984d51180b25838a51ded0529e02abc44e94a112f6eb +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---38000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..faf58fdaa09794f76f114a532f0c9b11fa6c2214 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8561c55730010918e28016e51a109cf4ad833f429229507eeeeef5f4fdf1d3dd +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---39000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..246cfeadb18c9a8700cc972399e28df5cbdddef0 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50e13547bf03a20830baa55900586baf937c026b8201504d04d1886cb5427fa0 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-02500---15902-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-02500---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d1f6bc25bfc969221603cdc4842e6914f6ba23cb --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-02500---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f13557773062f7e64c70a0646457b76351f895bac5583df5d63c110742a568aa +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-02500---16000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-02500---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ca4e923b7b09170c4a7cfb351199c3757f443de --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-02500---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a87dbf036b314f744e207690a86596af39cf1cb71831e0dad71f977c1b10e49 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-05440---25900-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-05440---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95c2c384da16a08ef7977f8c7b3d0b709bc4cf83 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-05440---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88765a2b3ce7bfa76f81d1fdf9eed0447f3e7c1c1f4a9dc6a7627592a1075460 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-07360---25000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-07360---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0328792dc8f55b2741eec64cb62cf268eba60d51 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-07360---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a64f0334ef694cc033331a6cee18f2a519b704130145615a92e822ccf33a7e9 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-07360---25600-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-07360---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..12717e7390323922a09983725dad82f86528c13e --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-07360---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc3efc84a2a421ce96b00b9db6bb8c07387864fc3500dcf7b6852fabf3a8c48 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-08000---15950-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-08000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..786a292e748a51fe68420a282cd2738092e50105 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-08000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba998db7ff6f89157739bd832620b9f4cf76072db14b98d9790ae4737e783fc3 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---12830-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..43f9fca5fa713cd378b6a31963b476be32513843 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdd29c4dd946e71b215eff1b798cfb68a65cdf8c7acea26b0f658d3c46d62c10 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---15250-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8232230b11f45458ed8f641cc35d0c117559f76 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae6a2673aaafc4f30c4faa34f8bd4405e20b5d17e2c4b985ba93a374e62e21a +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---15950-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c25afa657df8f088929f0b01e10abad36b069499 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b98d21de383374e2e8f91bf443d45d63b6beaaa88920cbc7451fa1296f39699a +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---20000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d938ca557446e36203b9a953351b4ab4a439e934 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de1402f59d3018c235b4a591ae11ed276e977e9252df9c8417b22cc19e503b2a +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---21750-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..568c410507acc91918521a0f4dd67320faed2c6b --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c671007d022c161d167426c1c60e77f26d8406f14747b968bbef7136d11873 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---25000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..57940658ffd585fc28a63d424414c686a98ce0bb --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff170d501186c40d8522319509b37859ef4f7c6dc19ca2d6d603668c8574bfa +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---25900-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d3f504d0854a8346387e78998d79e1a241a79f5 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2002a3b166ead1fed24546b96315abdd3ac6e9ef410180a7ebd51d63d493322 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---52900-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---52900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c15d826e0c4b226c80affc4d29fdc401b5745eb1 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09760---52900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130c0f8418c135ba63f7875c475b9beae153627ac3cd70bdd271c88967fb49bf +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-09799---15902-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09799---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef0eb91ac323747106ba1af98e051e434025d554 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-09799---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a33af528f33950e20046d7a9386db86948b1e0fa49c4c3180d443f094a35ca7 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-10000---25600-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-10000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a008b29bfb44561da91be045bd469b91e3a64a79 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-10000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c13cb3adfee0a3fb83d1fd837b2479a8c322b1e37971fb89e351ba5ac31a08 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-10000---53800-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-10000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e744a919ebbd84daa2aa411ba135d3243e199c8 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-10000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6fa15b044cb98f989acdd1ddcbe85f5323ca9e440d4b18818964f0025b8d5ae +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-11760---38960-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-11760---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b17b444fbcc2023b4bc85778a020c512a13eb69 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-11760---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e009073c5eb9fd75af15281892636275fc689c1b09a56e464550eb4aa14ebb +size 497 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-11811---16000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-11811---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42f9199ef8a71553e578db3b2c496a3e068d5f8b --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-11811---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a9bdfe2bb01d98ce933940f9534f3498bf887d0bc8bcea9fd1feb6d330349b +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---18000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52761431dbbcb9dafc9a9df8244429eb00fd73c7 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301da22d522d0c59499e446ac563dc70db378e15d92448c093fc891c2a633834 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---21400-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f318e0b49b3a01be59864eda8a629ef18f81ca9f --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:190b378e0af1ed414650aedddb197901bdd372c797c74bdfb36f17659d4fa038 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---25580-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a7033486010665b614f8a58a5e62d50846bb4ac7 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89cde00d93f744057691e0ffb28ff29f572a1674e49659e7133c442e4d60e212 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---25880-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f58245829600be0309eebd88f38cb6ea6447ef4f --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cdf11511f7057ff0129afc667f37c7818e53ddcf166928e36fc6bc03102f1c0 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---30000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0697c5f37c9a638f98cdcb294906c217aa650898 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:823217fa9f1b83bd0dae005efd17d5ea63dc1b5b3199b95dd1f3f6335fdc9dc9 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12200---25600-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12200---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65b5daf30ff8bff2c7869570184f0cd7ed4c32e2 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12200---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901b94d7dc578f4e8cc13a284a6be5ea57177d4829f33752bff805725acb3da7 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12200---25900-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12200---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8c161b3b58008d50263d6a83c7192193d490f16 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12200---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa8f11598d9dfdf466f57d5ea5262d090ecbedec5677de678c50262b59382b0a +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12500---39000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b402b28ff97b12956984aa1d23a5e6352f793593 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7c30afa7f3c59ad4265372503ca63cb02143829dbd76732a6a72a1bb3aa2e4 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12600---24300-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12600---24300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..19ff48d28118b1429612fb8cb2264e09c609c0a7 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12600---24300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e355190149b4d630da32dc5c1b2a2bc2df6ecda2794d59597bacc07ea01917d9 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12690---25000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12690---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f4ceb82733dbe99010cc220696d5887beb0a6da --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12690---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370ba9ee5c0c679333ed4c36f09fb1ae20bac50af103b1ecc609f5b5c6af5668 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12690---25880-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12690---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c25c339fef364d3199b0351ea24a510a12e7631 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12690---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb59455d76590fa142331b5a7211dc3b48a66e5d1598ad9983fe06f5645088cc +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-12700---25600-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12700---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0390dc0510b87be4ca590937b4e5e529aa31d5fc --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-12700---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92cef2378049a3eaa1e3a89a28eea5cc038756d23a5270f873a7cf42bbd2100 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-15000---25580-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-15000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..19c96842aa69f0e75a10524a647f3f47a2349c79 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-15000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618582e1353150672fbdb1c9fefb8b9071e80467018b1a818377b98f5f64b335 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-15000---31000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-15000---31000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95465393db05f7ff6ffc0cb071353f0da4886e81 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-15000---31000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c897fb01c28741e15475c904b8a4f9d64d1ff641cb5f072d9407d3611204a4 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-16350---25600-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16350---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d41754115f9b560e90daae1293b40e4e7f90a8ca --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16350---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a494716da13d98cb1d6defd063ccbbf9ad268b400e858e1478ab5c1ccb76e4 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-16350---25880-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16350---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9367f78d865f5778854116f7038053c6187da51 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16350---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bdada393dba78e74233d8b1a2e1033e46d4176511e09efcfd33359ba0e7a03a +size 464 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---29000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0e2e499bfdbc022d490f91ec140b102adc52d347 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e72bd675e9b70ab5d8cc559944163c8fcbbe3cfb72c59324a4a8a93fdfdfcbd +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---29300-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..46d6f7b1f302945fbdacb4f4a9bde56349d19414 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:773adab7a35cf6939430ce0b47b9442673dffebb980cc1ca2466dba892d65235 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---32500-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---32500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa4499c2e48cec2fe560e6b96c34d0931579c570 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---32500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a29bc2636760ac76191343367e37a5ff1eaae0beb0a8fc2baf9c230d5ffd3c2 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---39100-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d1af705cd53c55c7024d5deacf49ea8b87c6002 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16400---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce16d569887e9e3048f48af779a692d068b302aad42e74f8cda8f97a9f6114f +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-16420---53800-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16420---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8bf8bc99c2e91ad2fa4a7a7a0124198eb30c7429 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-16420---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790561af02a5b5f4a96839b3044761654065545ec9aa7c584c61a5c12cfe856e +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-17000---17500-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-17000---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c86a70d365a5a29241879beb987b252196a2b00b --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-17000---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914473a1899bc2aa77607991e5da54a8756a255e4d9c6e17d70786ad80b185cb +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-17000---39000-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-17000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3da14cf0a0f14838a2831a22c947439c4ace13ea --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-17000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac05d220f72c20e3086b38b0fb4378b789527845e0e6a2f77083362e1bf8c7a6 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-18800---25580-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-18800---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..778b2723278b6e5e0d1186f89a563fa935b669d6 --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-18800---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:931a0a30b48a27281dba0006b8110d93a0b211d3f25c90849c56a9698d91e0a3 +size 459 diff --git a/source/parts/detail/c/custom-18-aircraft-plywood-ring-40240---75120-in.json b/source/parts/detail/c/custom-18-aircraft-plywood-ring-40240---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f4f8165f8e2146104ca6d3238a013ca1a2e90ed --- /dev/null +++ b/source/parts/detail/c/custom-18-aircraft-plywood-ring-40240---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95da3c1c587d25c944d7ba60236e367764d6a972b52039a959b711217ce85cc0 +size 459 diff --git a/source/parts/detail/c/custom-18-eyebolt-18x24.json b/source/parts/detail/c/custom-18-eyebolt-18x24.json new file mode 100644 index 0000000000000000000000000000000000000000..9f48facf9b4ae71167c44ed5e3d21558678c6d53 --- /dev/null +++ b/source/parts/detail/c/custom-18-eyebolt-18x24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de24d9c511b3ec79f27130da7b42def9691d26d202b218d72332db4a25ed6af +size 365 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-00000---23750-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-00000---23750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d1f97ec55b73ece685b9c521193c4b5beb0ad165 --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-00000---23750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65ff0280679227935ed895e49e98a50517452351b531ec67aaafcab19c096278 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-07360---20000-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-07360---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b68d1ef066ddc33e2a06fc32e3108247a465175 --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-07360---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b78d6207677af7d02ae4b40f596aab71f082f639d5ea6ff4cafc1282358bf04 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---16250-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---16250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9dc5856834f1594a83e19a3a7faf7c84dd00e80e --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---16250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f78742aeacbbab6803fd67233740cc384bef0a0121456a207852bde34ebbab66 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---18000-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78aa10e8d8853b2bde0526cf2a6efd104f28d313 --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc06e092a4413d36b30f86910016de44e832275ef0b42e8fef68a32b9f13679 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---23750-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---23750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fabd4dcbedb61e788d4c7d691479bfa72f776d71 --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-09760---23750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e43f0ade4061bf8dcdf1093919e0dab62375ebc7bddea2180a9160e99a15d544 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---15950-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2a531e31f70ec120b1f3d9315e031b037b590e2 --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40f801a0ddfcd4481193fa52f10590359c6239dbbe5cac557ae9197d48ee22d0 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---25580-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a2504c6418f7c3cf7086292b65280b97a46111d --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5decddfafa6cd2e831fc08d9bb5deb86ae53106816f50caf829d6af800117d04 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---30020-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d82bf6724b9214305c4c05add746e83109b425b6 --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-12100---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf65c479c391211cc12b2ac86b983b1e7d3b41688afcf14fcd96c4d85b15e53 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-15870---30020-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-15870---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a16a8c1be86bd15a6384910273eca8fd8d417c2 --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-15870---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edcf675c86ed2a8282e3d3b6409ad66b9bd71d44e81ca80fb17732a4020d7541 +size 469 diff --git a/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-16370---30000-in.json b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-16370---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f95388439c94f78fd188884f794ca51388880975 --- /dev/null +++ b/source/parts/detail/c/custom-18-in-aircraft-plywood-ring-16370---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d05c9d21b5d36fc87d49ea00e7c99cd04fc54947720d481e201ef3226494ba +size 469 diff --git a/source/parts/detail/c/custom-18-in-birch-plywood-revell-ring-12100---24380-in.json b/source/parts/detail/c/custom-18-in-birch-plywood-revell-ring-12100---24380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0fa6580d8638eb86a4d38bd6a093a70d774dc65e --- /dev/null +++ b/source/parts/detail/c/custom-18-in-birch-plywood-revell-ring-12100---24380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fc2b615002d218dcc7fc80d5ef1ec40fe0abcdd0966e3d3992ec87dc7b93a4e +size 482 diff --git a/source/parts/detail/c/custom-19-oz-ripstop-nylon-skyangle-streamer-00010-in.json b/source/parts/detail/c/custom-19-oz-ripstop-nylon-skyangle-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7cd80ae10dabe283365551d00025791d6185d958 --- /dev/null +++ b/source/parts/detail/c/custom-19-oz-ripstop-nylon-skyangle-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d4fa7c57b4d466bf397c4abaf2c77e679456531eb35c0bf97e9624cea09a35c +size 470 diff --git a/source/parts/detail/c/custom-2-polystyrene-ps-ring-12100---17500-in.json b/source/parts/detail/c/custom-2-polystyrene-ps-ring-12100---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c89c80d5a8c367effdd9d3b99a01a50748108dec --- /dev/null +++ b/source/parts/detail/c/custom-2-polystyrene-ps-ring-12100---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3001ed40916d747d923b6bcfee38981807f0d878876534d64ef0e7430565a122 +size 451 diff --git a/source/parts/detail/c/custom-3-core-3-carbonnomex-ring-40240---75150-in.json b/source/parts/detail/c/custom-3-core-3-carbonnomex-ring-40240---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01622fb0a150d659d3a417fd041d93a6d8554882 --- /dev/null +++ b/source/parts/detail/c/custom-3-core-3-carbonnomex-ring-40240---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149a7d1cde1d2ab491f62b33eb4f9b7595c219aa8c4b1335f43640acd97120ab +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---100155-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---100155-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2c77d789798206d0a6e16d66802e381dab63013 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---100155-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d695e5dc7db160deb7bc085339b46eed351db286fc6703c3115383f3d4fa9384 +size 466 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---15200-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9aeeaa169e50015fd2249579355010dd1202f1c5 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c38d9985084db4669aba237ed8ec0460de0a916c015953c1b278ccfc910f110 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---21400-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d1799f03c48c0d3f2768bfbc099805529a1ac9d --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0699b80fe54524b94e4c090b1bcabc1dc93947799df248547e41769b7ed0d05d +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---21414-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---21414-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f9f4ab7e4e9f50bff75a01a079c8d16d60e77cd --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---21414-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2605369a603576e8bced1cce9625309621cc3662cd67467ef8f4b982d11481 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---22500-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60745fda707ed7d8720ddf47ea92684bea959abc --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d353dcc6b84eb38478d585d55c8897f31bc779fb0a089ab5f7c3668899ccefa3 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---28346-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---28346-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d5a13348d8de9a9a11918898e8c08301daedde0b --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---28346-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a71dfab1ed9c3330938bfac8d85ef91920f541d9699a69345e71a278d31ef0d +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---28750-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de9a1429e2f0620a4815a7e70bdcc50a584e1b80 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:932a85dd8df20d7f06cabc3a8ec90b7344937dcb11cde7a690c3ad54b80a09b0 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---29300-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..669696905ce72a2eb6974916d614b53d2d9f67c2 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a20ee0e9cb4783690795741580fe7144c68207697c7f2e266f0c0fc6c278f7f4 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---30000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b72754ffd4f3ea20c4804db42cec84416d8b5b44 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625286de2cfa7d7616be1954249bab6972e441e297b59b583882510d3d4a0268 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---32136-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---32136-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9ea62dbbadbcbf2814b4d541e44b24c1cd30ae62 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---32136-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05f4c84f4cf32ca6fc0396a357933d8d2abbafbd85f45edda9e44b97ae19ec2 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---38674-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---38674-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06ffff09769067c2cfe37e13bf790197a34546e8 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---38674-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc260e58be5e7e43a2f82ec0456ea5570ec717a53673942842de9211e013065 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..38aa77e6cacd828d4f1fd73680acc0ce55325bdd --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03189808ac3aac9f197c9b29efb8bb3e8ce3a0bce819db9bfdaff10268ea3160 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39100-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60f6fc9f0dd681f86e75ff00712434aab659188f --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847c5eefff6553574dbc79625609e43340bdec986d0485412506c2fdfbf26e36 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39600-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e488623daac657bfb9315d55fcdd98e200f56b4f --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---39600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439012d113e576151f953343b37cbe5478d64b27b21b41a0ccfbc456c62883c7 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---53800-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f194d18574090fa39873e430cd340603df1c628c --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71cb1e6830216853a4300a4e2d0de34a9261169300b69aca32133586f074b03a +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---56693-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---56693-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39bb3372736b7f40e8e2e9c5ea33ece7089c6431 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-00000---56693-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882b9db604a0994c9568e866a1913fa43d366a822044b32d1d3494cd863333b7 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-05906---20079-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-05906---20079-in.json new file mode 100644 index 0000000000000000000000000000000000000000..786f5af7da2a728ceb08478c734027da84ba41f0 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-05906---20079-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b565336a149b29b3444796ccf888510a672254ab86a761e245a610fa3a37cac9 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-09646---25880-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-09646---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11996b1d7f9f19c20fddcfc1a431cfe6570dd74e --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-09646---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da94e8b839a5ff47ff3107e30ca96bfe3050342a42771cfe4e0ae0a7c93e6395 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-09760---15950-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb109576facece52cafd25be3890b7a8dcaf4aa6 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a40bdf6f474c5c30c158d4e698b92cb73a70ad6033c562806eeb06c9c84efa85 +size 450 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-09760---25880-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..34aaf1955cca3399dcce69c574acbf3ee668487c --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:401dfc05cf6dd7748ca9b9fd5bc6d6c05bb92ce27ff6215021aef33e66d2111e +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-11400---19375-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-11400---19375-in.json new file mode 100644 index 0000000000000000000000000000000000000000..02c67bb3e8ee96eef5bfe3aefda83b38a816495f --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-11400---19375-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5373c3b8439d26392bf49ecc0905e60515aaaebad1d832ee92fc174fd80724 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---25600-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10b64f28e824b84727b123587e3391e540cd4421 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08c7ed07b92567078a37f8c8e3d72eb367dd741b5a59b604ba12a77d29b3763 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---25880-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae840f1b4da046edf68cf4877cc88dcc2aaa353e --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402d48de179f8884f62a6b4ce58ac1143e57fd246b0996a62c2b17186ed64fff +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---37850-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---37850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2bcbd27c4d16b29864750f2e1303db1a150bb6c4 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12100---37850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a80850eba19aea042b686a8c0413a621b54b5ed32082205d14dc33b5ca57a4 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-12500---30000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7f05b51baa7024f9a9afdab4667b19b77a65525 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a79e18255117665f4b6fae78cbd1727d48ac7f78c4e900f1c32db81c9c6aba +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-12690---25600-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12690---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54f44b80d149d3017670c3bd52c4e1b791975732 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12690---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0798b8e4edccd6c6317045a4270ab30bc9e987914944092481e72b54119c48dd +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-12690---49700-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12690---49700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eba5a6e10b4f1635d0f727a71d97180c7e38ed17 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12690---49700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:844d5129a4054e3813a8dc28072240b83ea9921e8f712ec506825a9e45d93536 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-12700---48800-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12700---48800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a5af32adb88ad5cf24a851f0da70139d9be635e9 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-12700---48800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1276e47bcc0ae98d6b188a42a6e0486d152405f0f6100a03833ddbd58b33fb6 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-15000---38750-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-15000---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f34c2424e24c5fb61d84c9e2af7f335dd128969f --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-15000---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1949709a12e09d52cca33cbaf105a705e6a6997dcf688ce44de3bfec23b94f51 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-15250---21375-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-15250---21375-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c5d94f3e35e54c9b2bd7d85913ca4ab5ba1c3bc --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-15250---21375-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a313f709b7976d66e63443a82c0edbde3485ff6dec54191f27f58e7493f5345c +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-15250---21520-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-15250---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7064c0d66e5d7d3c5991ae06985261b9fb6d38df --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-15250---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03e8354e875ba2e9d1b42412d04634b24039dc9fad328d21836a2a3c6b1ee60 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16000---39000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a7c01bffb42a99eb95c650165426c6b86b7f9db0 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcd1815f7b6a4bb1505a5f27aa4700cd51981eeedfe812c3d57be846cf93e80 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16300---37331-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16300---37331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..233c8a88d02e26ffbe090d686cfe58f0a93a7a84 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16300---37331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e24eb8769d7d7baf44caf7a7c7549d6e8b631c7e109444c40a6ca69aab53a3d +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16300---38670-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16300---38670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..932eff258d3c3ab5fbd0ac0de7c5258dde188b19 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16300---38670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:441b9ec44ca591138116aeb03e99a0cfafb34cbf93c1ece20f0a8076a8b2eea8 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---25883-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---25883-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a06da994f841494743e33b51e61566be4b7bbe2 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---25883-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad0b0495500f5cec00b01e8fb7601215cc62ce5a5d70a67b48b62c744ab5baaf +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---29451-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---29451-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7fbbbaf59b28eedecc342420e612add8e370e8e7 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---29451-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:529d7239d0a774f9e241c6821d915d00fb76d983686bd96b598d7be9ee74c428 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---30000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff2498e1c6748249622fdb796c892fc6c62de1dc --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fe3ac58fef3c2cf3722bb8fc0a4144d5ea2ace376c7a69bf71a6d6e840c1cee +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---39000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df853daefd8cd03a8551984a17815eadd3eb55e6 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92286b87d71382fab186f749ce460ea72a5ca256b73a09dc045aa5000f887347 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16400---39100-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16400---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6428fb54ba814948b3ffa1a407323095a264057a --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16400---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ad532bd6727e44a888c19e83f48f03651d988ca53ede6c354b7b52d89089fd +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16420---20120-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16420---20120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e7ba2b9cc4866c98291c69af706527fb9978e30 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16420---20120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66810898d88390bdbc389c905c9b57e66fd5dc89534d5a97c7ce434232cf6576 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16420---21400-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16420---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2121062931d7e71cb5fa7b22f2a8cc2dc63b92bd --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16420---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec31b932f7f10430432b70b158faa1e3956e7bbe811b54cde534c6e72d99a17c +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16490---21520-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16490---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e75b1101864fe76eddc3d77fe677b1dc97bb6b7 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16490---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f93fac15d66f35f3ffa6a53c02fe7d6c5f6bb59b132c209ef179d5cf5bc6fd +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-16490---80000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16490---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..12c16c2a8d8557b541cde88ab21ed5f5d2db20e6 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-16490---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a40cacf1cc62db01368a104256dff0ae0ab8a322ed5906408db161839db11e6 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-21000---100155-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-21000---100155-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ade6bdaa6c817232a1b1cf7f389b936acfe390fb --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-21000---100155-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635433dd5c14204c4e899ede71b7446add786e21ac2591342680eb13ad975ad1 +size 465 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-21600---53800-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-21600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..caf00ec8062b07450d1306c4b47056a80cdcaef9 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-21600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a774783d4d9f4b80b1ae7727bc0d43753d65302c1c7679e5386878b08afc9388 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-21650---30000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-21650---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e75a3edafdd90b53b2996298c56d4bfbdf7804f --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-21650---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:516051be356184a8c2d145d42f7b3c08e2cee726df16e1c65f1229b502fe075e +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-22710---39100-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-22710---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9d7be03acf8328769151f28d9a5c112d88dde7f --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-22710---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f233fbc8ae990c04b51a9b6cefe507c34693fed03326a8a660178c797d903c +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-22760---39000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-22760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..177332588e4839cd2d1bb8e48e54186020d8a79b --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-22760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46fada5125f2425d5158c34439a9cff50ddb3aab0bc3ed031658b2eb3aae2c19 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-22800---39000-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-22800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2d35e6cf8174a1cabcad5b9322954e17333697a --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-22800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda8a7993573030c69ae96b34884a9064ae2a6c172bfc9a0e5a371e15584b9c0 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-26800---105800-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-26800---105800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea66dac3ddb996f1da8f1b88c3479b7ef6ae8bd6 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-26800---105800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:797b3acf7e1288ac1e45c948fdfe2cc644fc157e66a81a773dfe512520ac8c4d +size 465 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-30000---105800-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-30000---105800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55de4aa04966086dc4c90c4faad10397fe1cc7fb --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-30000---105800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5569258a13c85d07e723be4ef28fafec27c6697f50495271957e53e6374c2450 +size 465 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-31300---105800-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-31300---105800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a81e49685b9c62a96d1b734cbdeea786bbaef495 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-31300---105800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc07477fcc3c64a7e239e6a1bfe00d8c74771e92b1fba3802ab6585e1080674c +size 465 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-40000---74380-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-40000---74380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f83170d2207831897d88d531ad521a7a77f15e9 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-40000---74380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c398616ae863936ef7f7d7ada7a697414c22749872b1b804d546ff72953009f0 +size 462 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-61550---100155-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-61550---100155-in.json new file mode 100644 index 0000000000000000000000000000000000000000..250443a9522352f424adca0bd5d1adacf12807cc --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-61550---100155-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f850a39ce94143ed1a4734d8b34b32df0e1924be0fc7ee6869bc49af353d33 +size 465 diff --git a/source/parts/detail/c/custom-316-aircraft-plywood-ring-80000---112100-in.json b/source/parts/detail/c/custom-316-aircraft-plywood-ring-80000---112100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2ebe48472d78a3fec4b2511ce8c60e838e67be3 --- /dev/null +++ b/source/parts/detail/c/custom-316-aircraft-plywood-ring-80000---112100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f4a03bddb75cf4e5444bd72431db594aa213207a419ff56ffe2adc869aed2e2 +size 465 diff --git a/source/parts/detail/c/custom-316x15x1-38-u-bolt.json b/source/parts/detail/c/custom-316x15x1-38-u-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..cbba94ecbb4fcaf3f19d1d14132193b12ee86c12 --- /dev/null +++ b/source/parts/detail/c/custom-316x15x1-38-u-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ebd787a01317c57884b5b4c900916d645f1eaa16e05300b4a9cf0b7ec49c42c +size 387 diff --git a/source/parts/detail/c/custom-36-14-in-elastic-shock-cord.json b/source/parts/detail/c/custom-36-14-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..a643772041b371e24cbe5d6c18d033631d904ae0 --- /dev/null +++ b/source/parts/detail/c/custom-36-14-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6092b6e929b395049d11fec4f5331b797f66398d97091221b224d6096719b8f +size 411 diff --git a/source/parts/detail/c/custom-38-inch-flat-elastic-streamer-00000-in.json b/source/parts/detail/c/custom-38-inch-flat-elastic-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4c82bbba7340b98a741032bee369678fd102ea31 --- /dev/null +++ b/source/parts/detail/c/custom-38-inch-flat-elastic-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a65a30cd4cce2a92fbefb7762f4d26579e197c5ae7fdce56f6e45288e339c39 +size 432 diff --git a/source/parts/detail/c/custom-38-inch-flat-elastic-streamer-00010-in.json b/source/parts/detail/c/custom-38-inch-flat-elastic-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6df004a27d81df481de0011e4165b23c9d8fc5b --- /dev/null +++ b/source/parts/detail/c/custom-38-inch-flat-elastic-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f683c8c87919e944ce398d51b70d379f1231cc94939d0bb338e2a196d8432c35 +size 432 diff --git a/source/parts/detail/c/custom-38-tubular-nylon-skyangle-ring-07360---07500-in.json b/source/parts/detail/c/custom-38-tubular-nylon-skyangle-ring-07360---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b669f6389e184f76c0ea1d5364e6ece42f76a78 --- /dev/null +++ b/source/parts/detail/c/custom-38-tubular-nylon-skyangle-ring-07360---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75c95b9552aed131c8a9521f0037d05b2a86b0ed65f0c6bafeb6f5e1d428db6d +size 481 diff --git a/source/parts/detail/c/custom-38-tubular-nylon-skyangle-streamer-00492-in.json b/source/parts/detail/c/custom-38-tubular-nylon-skyangle-streamer-00492-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce07993e57061e781bca30ef7a7b5a53e3503495 --- /dev/null +++ b/source/parts/detail/c/custom-38-tubular-nylon-skyangle-streamer-00492-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e239e134d60edaad86cdd36ebc7ee3c265217d6b6043ea93ff9c1022b8f538e +size 460 diff --git a/source/parts/detail/c/custom-6061-aluminum-ring-22600---25000-in.json b/source/parts/detail/c/custom-6061-aluminum-ring-22600---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..078ca8afa7ff11605eb84ed2c2eff9fa3c059f5f --- /dev/null +++ b/source/parts/detail/c/custom-6061-aluminum-ring-22600---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f66e385413487d3f7b4e5e1893f1d0bd68b36be7704be214dfd1c701c193b6 +size 440 diff --git a/source/parts/detail/c/custom-8-all-thread-18x9.json b/source/parts/detail/c/custom-8-all-thread-18x9.json new file mode 100644 index 0000000000000000000000000000000000000000..3b27e56464d4824b7da8daa6ee8e9e199b630630 --- /dev/null +++ b/source/parts/detail/c/custom-8-all-thread-18x9.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b957e72a3b5dec7001dacb0f962b45910cbe190684e1201422e9b489d8f12fa +size 369 diff --git a/source/parts/detail/c/custom-acrylic-cast-ring-00000---15250-in.json b/source/parts/detail/c/custom-acrylic-cast-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56ba63d18361cdb53fdef65d697356f60e215bce --- /dev/null +++ b/source/parts/detail/c/custom-acrylic-cast-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aa87df3ec5795dcb4b07dc55fe40ab803f2fa81858e2e65375518dc6f0922f5 +size 439 diff --git a/source/parts/detail/c/custom-acrylic-cast-ring-00000---21700-in.json b/source/parts/detail/c/custom-acrylic-cast-ring-00000---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..205bf247e4671ffb8e9e2399447ed9af5f790b5a --- /dev/null +++ b/source/parts/detail/c/custom-acrylic-cast-ring-00000---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec88adebde65a86c73b7a362447447c9fa68e03c9a0f745fff0d13c706a3c8af +size 439 diff --git a/source/parts/detail/c/custom-acrylic-cast-ring-09760---15950-in.json b/source/parts/detail/c/custom-acrylic-cast-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..077b9ee3312232a52521ce1c493770a1831af048 --- /dev/null +++ b/source/parts/detail/c/custom-acrylic-cast-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb591430d03c673ab8260d126f0d4ec2f2ce8e828f0c8786bf0a2b74dfe7a70a +size 439 diff --git a/source/parts/detail/c/custom-acrylic-cast-ring-12689---30020-in.json b/source/parts/detail/c/custom-acrylic-cast-ring-12689---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..84d6c2898920390ea7bbd8f1911623ca4d47d603 --- /dev/null +++ b/source/parts/detail/c/custom-acrylic-cast-ring-12689---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9169f708fe41ff25f41f87bd7547cf73c0c3525e02ed012515a626f3eb184fd4 +size 439 diff --git a/source/parts/detail/c/custom-aircraft-aluminum-ring-39000---40550-in.json b/source/parts/detail/c/custom-aircraft-aluminum-ring-39000---40550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4dec958b9338c3c3a68522685b1854172cbdc40 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-aluminum-ring-39000---40550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41cfda4c471d61b16bebd611b4702e688161820d919df925e97b61605654bb3a +size 452 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---07100-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8931e17c6cbaeb7b23df5b3e61033b6f07d124d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349264725d515065f3343a418b65ca477dbb7a0668888b998607b2eaf6828b0d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---09450-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c585bdc88c7d03bad6f777a1e8f5731cca0fba88 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a26db81b4a5b59936affa32bdf12d5ad78c9d3fafc693e498d7162b20358c43 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---09500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c26271c8dbf4b05da6e24dc8d21d0d7953b4dd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f30228bc7c27b755b18bcdc343c05db1e7b25c9647f0dfca4f4b7ae8eb78528 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---110500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---110500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75cd12f03e6d9f5331a923e292906c70075f656b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---110500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae428bf49c5827e7d944f862860764ec11fcb9c3fb71a149d1b750e79d367b2 +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---112100-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---112100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7fd6dba0460dfbc17825ae0aedf138d5fec91c27 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---112100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6db85d440cc415830f35c7bdf792829e4a5973cd6e40fd0d9bbaeb206d63766 +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0e9d7147800eaa75bc60756961ce2cc81c7087f1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e670c822da4cc65aebfecdcd9cecfd8f830f86c606115707dfeaa39c3650876 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11402-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11402-in.json new file mode 100644 index 0000000000000000000000000000000000000000..71b432adcb36ed77eb196bd848bbde661cc91d42 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11402-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c69f6eadf0b131a5fd148dffdf477753f839392b3c9b9af4f41fe574e739c6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---114100-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..481aafb2d67aabbb3787b53932878aaf27670c36 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bc274ea1541af55f668f610fb638d09882c80736d752156448650cf77bd139 +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11420-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11420-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9406b165481c289c4f36c9e902d51a9e01917aa8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11420-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22547feb5f43b83a4fa669e4e6346c7fd3583d11ecd8089055bbcefc8e81c6b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---114400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---114400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..579502546af3031847b70b69ce6ad6b4c010a506 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---114400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570a4ca9c87200e2027e7326bfae467a4ebbb59919cdfd2b185230eec91c186e +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11450-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..624c7282818d1d59e6353508e2cf07daf8c59f58 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f723a24f562f531388f0ee8b2cc96d1731d2eb2b110c8010015590a761f7ceb +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c64d4e15c070802ffe48c095f0b33a04fa32e659 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---11500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e442165351e380a0712528653ecc77b43379520ec59381e103665446c71551b8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---12830-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e3591dd9678dbbce28bd28c2b2088124c22723d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e2f00ffd11f2bc8b4ba691d538cbc48615e84a21bc6166fc8645ee131750bd +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---13750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---13750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b52ca625aa07e751695d3035d86a235efbc22773 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---13750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de57ffc018a3ed7da02334e28b2326970f41c89461151e8bbdba99882bc18d9 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---150000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---150000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9803d3c49b7ab568fe42200760d27d6ddaed432e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---150000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d04b2089036df5784392646ee43b83fd751385ba3a400cf807a62869d0824e10 +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---151000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---151000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..848d8f71bce3a66a24423802ff7eb8e015ac5883 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---151000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4265c8c0b8be145c3b06a6131a72db11a1a06d9b4ce06a22c6fa437071d25811 +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15200-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c76cc5d7801083d7f73ede9e35d41b6f382f285d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44dc938dc34c62e8010f1b63097c23950f5d1b60197bc7d6032a2d210b623cd0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15230-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15230-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e450ab5fa6433cb2a9bcf5dc8eb32dea0f95c436 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15230-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349aa5b02997d5aab5469edf97288c2a5cd4fc9b880b3334b8d74249aaf7969d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80dab2839ba256d14421b6248d77f805558d16ba --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:851aabbbe07c35635b512ed53e078c9086417b551fc98113611f3b64b8bba85b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15900-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eca2d4c0f54769eac09e5c962be6507d50f670f7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ad12038c43f1b977ae9794e03370f734cab398e68aa0fea3ce76e7bbc59240 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---18000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89134078876ab3097f4d811c694c44e6fb589045 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d542bb4181937baaceefb20897dee44091b1427009b70dbec9780b6230672c +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---20280-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---20280-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c3e14af85abb71df14aebedd30624a1e87d0df3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---20280-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1951641d72084bf221dfe5021837574d01a2faadc8fe1b540a1beb1798393492 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8308217bc45faf69a4ef4b8cdcf1be1ca655a50 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5889c9264df0c49ca4d8942966ff3b0f4e7992c8457739d5e681e28982fafd +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..555d50c43161718f9c9c4fc3d55affdc6b3a996f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6957a6c498b370eb82d2f60c068bc6ab24e6c537badbb70eb763fceb863b3a0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78b4612ba4784fe3fbb1cf231a7148f6bded04b5 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7fed79a7ca26a353ae7ab7458d82056b30442b186daf9019ecbaed9f565195 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21520-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..443a7b92a438fd27c7e3d93218de93ecbea98860 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f27369d5b9bd5d3a16acc8f89ad0b1fad4b9d2c677beb5be3b62a871e24bcd2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21540-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f32601143bb660d8ce87612ccbd30036e74b68b4 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e2a56646fc7bccb6228ed3f5d62f502e541be900d7a91ffc47cb2db84c92e41 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21650-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a34fc8f9543730ee8c7eeb3f492c702990e4d711 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5b57ce3c926dfd8a75ef40b40e0d000295315530856507bdd2d8b436d2511d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21700-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b63d582b191709f3d03b8dcff0aa2837937276ef --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641568ef1f37c9c5630790b03b39a077f3f0701408cfe2199da08d23461d960e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21710-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21710-in.json new file mode 100644 index 0000000000000000000000000000000000000000..331eb26263b156ba3657ca5156aa04c0f2188be0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21710-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71644284a4238ac171f475ac517477ef339572703066addd408a804748883ef +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..581a1066fefdf693a595425b8096127308069b79 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0387b1004e123a69357ab03c23620ebf00c97edcd331af5e0eafbe53f8097b11 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---23750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---23750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..177ae08cf686c1a04059f3cd74da507f2e0445cd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---23750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d7236f6dc0309c90344081e7f22a62fc3d9a23991fe6703a515534add154b4 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af8b175ab11a27351247c25a44120497e0583354 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0508529c63dacb1ca449d8410a753bc19364444c6d480e0deaa0bbb1ad89db7a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24724-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24724-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a17589972c9fda119d45b557a11365fabce079af --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24724-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d95b9a2a87df416b908aae01432ebc9d7673e8abd435028c5f8cb98a9be45fb +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0f0a227751e4031503b9bbd781f6cf446a30b59 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca86390224965dbd69771569463e31d778b24596187489a8572d54eabf0efcde +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24900-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..025a8004ce4787b16b22cbb3083388575530e3a2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---24900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2405966029980321dc8a250e5e4841bc8955a42a1a1a53bc7284c2f962948a2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25550-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db02350f1317ecb62978366e89c6cb22dcf2a1bc --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7818ab5d224eb911e56cc56ff8b5b3764f748140290f39b2e174e9b298022ed1 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25591-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1322bf8e9c0868146d67dda3204d8a14247cb7d3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8037961901b0982d29d14af3442b1171ffc59180c0a979247df5b8c7bfedb23 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25600-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11c2b6b0b6c2ea494d93d9c385d167be98edaf2d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8902e01e1e10f18dfb023f84a716313f3864e644435c29d92470ef52ec3e6b6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a936f14128cafaae3c4e8854017389f8f70d0b2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611e93383ee46828c491e08eb1f310c1935c6be100f0cf60003c89619b174fa9 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..815106ff01ae4153905b4fc4d5387b7e0f8f7248 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c8adc2e9398de4212b5aa05682bd63bf53608bc06bedd3404ba7bcefd63cb6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---26500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---26500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15701cc7cf70fafe6b709b1452ffc07c72ebb66a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---26500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2bc73d03067a7063ec7690941f5af9d8224b9a8a8caa66f4036883b6ef7a683 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---27800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---27800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..801e7d0b8b3233403fbbaf9c714a5088e7c43741 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---27800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6fc02a6fd2f66d5b14d67c9d4f560ef597ae6394918e0266702e19c091e85ba +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31ce6087f5b889ae2b71ad152a53b15a0f4e3b82 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2ebec1771c41625bff4a23fdc6ad3bec285f57802d07fff9f79c1d8950ceb2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29300-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..13dd81c8e43dda01955ed4061119643541352bc9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cf08759e466f1c4bf6c13b28aca5b7a62195a34a5a390108e6515d0ad452830 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ef028a43f26814a7df3225e1ab9831fd1e06b92 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e3dd0f714bd0ea209d189b159011a96260269c5728b66e906be54c505f4e3e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..471784a12238a9a39446272d570ac3bd040538f6 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---29500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:388bfdf556df19436eeb1b461d7e8de60f423d9f717e2a4c13c88d0b5a1203fc +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2468a8bb6caf3343555ed3e0c8c94a4b66b9f70 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37297cd49cd549baebd663274470571963bfddc9e763417518bce067b4f8a893 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30020-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..070fe87235d8e2dff455d95dd8793cd974b265fc --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c39a59d94958a62a7bc46fc83354824149ba99fe4905ce52e95c4ed3807d3e4 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30120-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2a5d5add42dd018d5d653c1c9889a3a5a0f3ab8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4e9b20eba77861415f444ad1d5aa423502c24b2be8ab43d32a475dffc8f935 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30225-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30225-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26fa5edc20ebd9c19148c1bf934b4c43bd4a3920 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---30225-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52caecddae1e627c9787ebebec3c72b6d623b6c075125fa53ad78784252a592 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---31000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---31000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6be43319c9b835c4aa19a217b6aa7b7acb6c406 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---31000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e017c64cc28fe4271e52af20084d26aaa8d719ae279208f2317ade0b7eb621ad +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---34136-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---34136-in.json new file mode 100644 index 0000000000000000000000000000000000000000..814b6d4ca12955c88938d29669dcbe176b73dc21 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---34136-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b994858e31fba45e75ca0aa9fe7dcdeb7ed9277f115980556aa7fd4bdc1779c +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---35000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..debe68ba9cbfdc62383b1080ab0c7e64c133e69c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:230bb6910d773c8c5109967e447f52178cbf7ad970c154346976a7b01345b23f +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---36250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---36250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..feb2d555c7ab7dd09e66694088314e91b012749e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---36250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95bc0a4ff4e0cf8ac06b8682611ff8945b5a8c63811388b85fcb5ee06f834a92 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---37760-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---37760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2d58dbc6513e13ab0ecd8dc74657d0406bf35a3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---37760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a2325fb5c60f4f3827ceded872d92075d6bc3de802bb2196b410e817e585ae +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7dece4bf118b8dc3b3e79f6dc2cf3b71b3279a1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca7e93971064e5dab2c923e6d13faaab302bf87acbfdf839005fc359d47dc4a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cddd44716dee8cc73c835a1860f23347fa6c642f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f09406e737af235d16cb76faf63a5647ee4969ed5e81916363a7bc4e207ffc0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b059f66acb7393bd5345584d180cfdd6d5fe8d12 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3d6649e53bc1ae9e270b82fa2752a52825eef273c890317c9e998ffc8c38eb +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..92d6bf0014f8ade18d39d6fc5002b3d947b2b3f0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5d4592698fc02ff7299ae8fa58b03ca1b21e05e22380486ec0ac20965a871a5 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38960-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f457c61525870782c7e34f44c1d793c4d8a13be7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e71a67b429c2b0f891b28bbedda9766d643416507704b21f383fca1fd92ac47 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56c34056eb0b6ec2755872f6a9132726144e172c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a7f95f978b2b0b79f9631deee22476dccab7010fbc860bb3439dc83a8a44e5a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39700-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa0beaa36f2de65c8b2574f79984832f0220ff6b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42db55b7a2c7c7b8648dcb127875810b509dec71e2cda1f833f9a5e1a081dc6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39900-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb3b4fc3dece8fb3fccee9239a1d5ecee6f85c59 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:030f003c8793dd1a496e4e1a08cec91eb4740511220a14f91c659dd04d887403 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39980-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c63b8d4fa04b118d8a6930a9d8b44afcdb956e75 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---39980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e99eb047fb0eadcd17b54bacf14d956091d478608e06e8626b97acecdd2c66a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---40000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..405a5205d4c2c994257f446647bfe4130d114be4 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93252f67c27fce88ce185adbde7b03ae9a38f2d29aa52c3cf491f6c5f5d5781b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---47500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---47500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..882c9fc074dbee0f4829a772f4673c706de9c3ae --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---47500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176b2437ef54b24f66c88e8cd767e0ee4c7770f402288d1297fc2676de9f62e9 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---48000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---48000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6bbc46a42fa65470c984eb0528ec490ef0927270 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---48000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b714de54fec2d795d087badbf0ed15f640a0e29c2aa8f06eb6bccac7da0497c4 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---50000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e369b92f01191274375dc8b385ea7f057f113309 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b09e9a2d247b7c1954983af797a223abee11e471fbe177ec71f6e476484ff93 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---51320-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---51320-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27d66bfe5e1d1364c3f1d57ab1538ea10cc68795 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---51320-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa4c1bc733d00ac37648841842715718c472dc5957eaa194cfd7dbd291067be +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---53625-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---53625-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0750475028380e02f02481213f251931894f3ed3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---53625-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea2029d3163169c640adee613ff0ec63a03820a734790cdc8e22ece1d429a76 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---53800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ecb487b6d4b13308a629df4e819cda0b49755846 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f4a5f3de8ab49b1e106bab440044fddf5a1a76e5b09b9b39ddf49908153fd1 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---55000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---55000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a3ac3dbba073366cce6cd4d0589835b1651cc322 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---55000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c53a1994f88e4434220cc5c0040528c1824c2f9f47bbc5a17f4d31cc00aa1673 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---57500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bda65ed73552e5a016510c9c8bf660c3dec90705 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eee57ce30751ce99d2ac89d741e6e35d65e934c4c91c6136c518514a44193f5 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7c09b414e8ddf1bd47ebb4c4573bc2e970d79bd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0293c21ce451937a5d0d86f273485a41de95a97654c3d31d922173664db9c2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58270-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58270-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be685e412dbac53b00e1596662ae1ebeeb17362d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58270-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c4c467239bf2b19e54c852e008fa6fe416507c74911a1414fce286bce48ebc7 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58591-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..51fd1b6712f6babdd5365f88c31dcde709b2660b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---58591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473acf53678a223a668453e5fccbb5bf6bc7a73d105e24138411b10598b87280 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---59000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---59000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a66a2d7b1fefdc8731410c4ace6d9b5f0b7c441 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---59000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:228d0f9c45d376dc2b474e36d092952d867bddaf9c07836b241a02b126f88f5a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aabb33d9e04d70282a8effdd0b08b5643c154534 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ca4ec4792dd4f806595c3bffe6df85e438e5345ea64479010eecf9ec2c2842 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60070-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5132144c009181e16483d03ce74da6d6b890b554 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71cdeadcc6107ef42f3eac0808ca8629df1845b6550f5c76780fb6848e178d10 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60071-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60071-in.json new file mode 100644 index 0000000000000000000000000000000000000000..30b3c965cdbc671d261e378afb36b7db873bec4f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---60071-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c543d374b150a76fa53aa47b2b3d933006232005a6e591e7b49ab7c23fce1824 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---66000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---66000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d64501b64925f3b38e04b53f5741950827bfcc0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---66000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bf21caf467fe7a03c2283b1b78f1c6e9e8c713b64f579368e380b1ba774a013 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---74380-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---74380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af2899dab8fd0b8a5df7df232ccec1b0c6ae53c6 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---74380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72238c3f421146e486492b5bf2013cf12209d6ac5f1c9eff8309558b2f0a01a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bc5e0c8bb95756ea9df4a86652b2aae345f72c06 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afbd292b35b3d90a6b6a2b913b732eb417d33348b06b88ed610dacbc36c212fd +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75120-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f8ff3f4df6ae6df93c19b2b6c1655abda0a4d87 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04613e7002e5d88d6fe1a4e286e38b32ce7f93b43c1de3755a3fcc16dc2467d4 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a21c63b83d9cb4722fb0234f3493f1a15e41de8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1f4e4b5ed916c69cd2659c9701f55648bb783e64e910f140a87d0fcd24e20fd +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---77500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---77500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52ff659d2fcda6add1c510baf41174474900476b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---77500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27aa41a3e6e7f5799d871b8a8d69fa55d73e77ce14266b676eac54f08cd3ab6e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---84900-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---84900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cde83bd468286805fe0a197c74652cfbb0c2cb3c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---84900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baaebabb0e651f5c218dacf8c9191d95dbc521a74355b7daec3e31265c78876e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---91250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---91250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86af93d53a3d21869142903987896c97e4d9578c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---91250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547bb87f9120d1c8a143cc863f00aef7365269d690d4ea6e2f5946c65adebd1a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---92500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---92500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fbae26bb0d840d33009439d2f3d224a3d4511f05 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00000---92500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d314b2108f8c4fcd8c241f3748b1f9faf0d4b897064399879f99ae62c332e2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00930---21520-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00930---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..629a1c50f9d025df26a20b122023535c2eb13527 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-00930---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bbb9d1ed5f6346de788110108aaeb6677c10b8843c05e00394a86b44ad901de +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01000---14010-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01000---14010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..772f4d389d6a731636e13baf77aef3d359128569 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01000---14010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fdd3f8b4e1c7097a7ac45bba7eb3a4e4e5d2c0a138e452fb9b05b8518d5588 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01250---09260-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01250---09260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2c9dfeb7eefaafc8b14d07bdc50ad29a3699b2aa --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01250---09260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67767037d353ffc4b399d1e70976912d26d8599a702df192a53c33382b68e9df +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01250---21520-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01250---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db8c05b0b17a36a60db9d35af097b813fe3527e7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01250---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acd5f5364f3222017e46c06b1713098cceff82973a1b45a7e7425b457a7c698f +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01850---11400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01850---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2217a023f61f4758286d78cf6aed56a12b50c8f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01850---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5555748c14ae258c15aa379d411410547c35c08a3e6529532607291d0177cb +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01850---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01850---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f7a310b93ccc295de6bd6c812e4f23e328d68ee --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-01850---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e3a0b68d18221e8135cdd4b9f4c0c0883ea9eccf496c696c73693cce307e68 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---25650-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---25650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20ae277b193bba4b340646bd56014cce2e378991 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---25650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac00ca264e4f2387a90def5c5e7b9247833e612302c01febb4d19d5580a7e6c7 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6dc2933b4bdac8d720867cf4bfacfb5f26a32fac --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a52ae6d4562094af69fcfedfd565b860c7ff491754af272ac6bb107b96740d23 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..defd4ac099f7ababa39f51399faa310232ecb572 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f85e9f3c7a4c9b93be48cb51bbdadbd75183d717a604d28fbbcd607b2c7d5f9 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---38960-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bc6c5b63d91c2ca162a01c1ebd223f5e3344d487 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-02500---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fda14a49ab9d4f28c7c236df3208b500c592dbd6f80d8f5f28496afb9a341b8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03500---15449-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03500---15449-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82ea7cf0a864a4e158cb76d520adb8ffb9ed34a9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03500---15449-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ddd31f547c88e76f3adc42cbb117a2eb53cdfc79620660e4c2d2f6a622c9119 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03500---15450-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03500---15450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab4b8f4e5f82782d7ac78fee7df35e7d481e0518 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03500---15450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75bfe7b4b8e55e19bd81e59b05792991118c3a531faf5388c655927043ff651e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03750---05150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03750---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..757079e0e7c11e64df0d1b668dbdb2f4e1ea1bc7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-03750---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0738fa721d1df88394db718d63948a974d4e95087741adfe5b47358e71a18cb8 +size 501 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-04921---05180-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-04921---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bd5559e2fa85ad50b61ee6dbe5a2fe454a857f1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-04921---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ece8e2919fc8385c86d53e4d41fc8f3cfb26f9ac2fe43143e54bb20449ce4a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-05000---58590-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-05000---58590-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c9c69648786f4173f21ccee16cb6a71d65d93e0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-05000---58590-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7104a95028082d50e71023ecd387a51b414d2da8c47063a9c084625510b7ad +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-05000---75100-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-05000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e1f013734c8bcb052449627779bfeb7cd355650 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-05000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3a5d0dabe7fa003de57481b7ae1914a41263e249c69cdb81acb794acbc292de +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-06120---12830-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-06120---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..84d18478149705f75fa04ef7a04a216f1c81d4de --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-06120---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0abbbea0f20f27f86a7dfdceb744166d25576ed9d33d0c3fcadd4fbe8f2cb809 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-06530---09030-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-06530---09030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be7c58385321d5d9308aa154c8c2555bf4583bcb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-06530---09030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48608ae05619fd8b5f3658c0e3f7bd08bad5412effd461832b80a70e234ef2f8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---09500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af5c5e6e4ef4559e3546d1c3021b069cf6b72388 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526727d32403976e589db09703aeec3ac52ad23f710d658c8273059992d65e2b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---10950-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---10950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..049ea4c56b3aac54f9907dd39ad1a964e30ca580 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---10950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3014a3ca39715e9eb5138cb046eebbe1b76404ac646eed836061766c4739ca3b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---12830-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8076052f6848ac3f115cda04bde70fa098e06e60 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925213894a9de989fb92994dee94d42511e700fa2b66cec68046031ebeff24ae +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---15950-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af552a1e7e38132323c85e2e382c794fe5f574d3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a8842f520d4786850071965ff9ab235018f83c456ad7ddaebbf71a5f7d68f6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---16000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ecf781b402e41284917fdacf8e91f7ac5e8ab221 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07360---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7db2d1a478ef6fb789f72baba4ec9b60e5f5b431cbe5f09d069729263a16b8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07600---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07600---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e968c738cb10ee753332b829f8ddfe2c233127e3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-07600---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3a2606bbad1a022818cd1ef2937d13c1d7e704de0c5ad8e97402c93e2c26a29 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-08800---11300-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-08800---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a33f56351bc38a8ee1cf21959b060cfac435153c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-08800---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eacdea12c9d5c4f778a1448f4491483c671395d62ebcec21d865048207348d8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09080---11400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09080---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f75dd2252c6469d3d9c57d8143d5f5d545c80db5 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09080---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df808f9f95542e9a1944a0cdaa9353727e4b56f81ccf9680286ea3379a3a03d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09210---13000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09210---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b7b49c28b369c70952ccb616c3736987d4153f6 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09210---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0655f083b9c9135ced207bc8ac2ec93add33620a3b481b962ccec2b3b27f025b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09210---16000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09210---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4155f07adb2364a271d0243d5f7bcf1c7768f76a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09210---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1040168623f52b64111c28d7702bc119755dedd390d130c3f20f07bf9081904 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09449---21800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09449---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9e2fd0ea228b94bb15fc500a3104613d0fefd25 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09449---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7edfdf17d40565f7bf28534ed7b2bd819bf2eaa941b6b40980537ffd4832116 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09450---12500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09450---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26f19d9d2d33d1f27b28f84ffa308887d029f0cd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09450---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91165c746d224c4e6e39b1bb46f14fb318fed4fdae9216cb9e148c1f1865f865 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09551---15902-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09551---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94c88369e45ee042cc18a3984b696879168c9f37 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09551---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:438080e83384351d2448f376f33d813ea2622db2688c7f764c78cf2fe65e38c3 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---09500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8a0be3fdaf88588fc4aa857cc62e0ca12de3ec39 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cbd80671a575d0cd12dee8265bb68e4cc434d44bda105700597dbc45129e114 +size 470 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---12830-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59fbe1fc9a597f3a4ce32cb48b95e57d87fe9657 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5113b25ab455d79b6179f5ac3095b878e24285eaeb895443d96b5c2476fc752d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---15950-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f4b9d530fe8dd330be348eb0ee08114e3a3af37f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e0dfea97fb5674b17da8c0eab4feaa60a2b22e9f309bad043f7c59d4d8dc62 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---21750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb7d0f701e0f9a5d7e1fc18600a8c91c54524aaf --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ddfa9cc9a438291f043f8176e7b5774b47a18ae4ede01c190fa9ff3465a276 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---21800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..22c6b27bb4c9397d8317770905c9c5ce835b8d94 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad24ed81f2d3ab2994e9885ccf3b604c905d5e50bc7aef00b75a0f782e4a2b7b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---22278-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---22278-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c99baa1e0c444760ff89a62d1ed8ef0991528249 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---22278-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5debb225af880b5bd00d158543c74106c3454641fd67e2b1e4e0d2c785637f +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---22500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9368c1878e15e536f2bfd56e8c6834255c6491ce --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e175b33c321f37b91f8353776d50ad9bae10bccd8c2c64d20a9dc366eb138b85 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---24724-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---24724-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b52bfed402172f6a5b6f01b0970ad2a27e2af397 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---24724-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0a35d965372ba1df8d8119d1f0b16630a22991afe538bf200c369e09f27ee20 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cdf491e722022af80a72a0b27242705ab2917b72 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95621e250cce1d89fbfa2d841aa5822bf7fb8a2caeb44fcf1b34d06400209e5e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25550-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7604ca82b322ed86e554899f788ed92f4567b387 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8abc88956b0ed2a761249650050af9e8136711086f43d5fb0a5314f5d068ac +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d1fd0b1be6b0b3e1764e3bb409b5ee41c2df9da --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ec64df1bceb66a0ff3cf0907c865af49c859b13fb58ebe25f094b43ba26838 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---38960-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0fd4a2ac695ed309442f9a7a9d748cf703f08361 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09760---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084277e8dba4548876bd3bbe56e108b63c45552eb6acc145b9c5c7b21ca4a31d +size 462 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09800---15200-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09800---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb867a3102d8715c4524ed726722ad3d1a7574a5 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09800---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a5a44dc4709b6b2d3ec1ef87130ae5c179b77b9754cda3ca6f64c8ea34bffd +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09900---39980-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09900---39980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de1d194297c0615d1b2e058c90bb34f212890234 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-09900---39980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:966fe642823d3e01cd7f20c6e094dc076e1612a4eabe7743682d9e4cbede25cc +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---11400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f4752ee4471799ad81fdfb4acdc75f50296098c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d83dee2f1a038dac57c81bba14fefcdd44ecd865b8aa29118af7efa44dd7a8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---20000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a27482e2380251f92709118f0f4ce8658c48796f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e103a0b5be44b45dcfa5f41be9c6465d2196b22e51a21cbb6004d5c359b545f +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---21400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a76e216f4bea0144614e504de873813fecdd025 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ecdadd4f398365be58b1955904d390360d37876f1cc8d56dc69b470f96efcd9 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---21700-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab23a95ba1c35830e4172173e10a622c1ec3291e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4640fb795b7654ec6d85284a8a5044b4c06d5d0a7f242c6438465e0254576ffa +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---24500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---24500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..798fa04223f381d48498f60a816f894c01e0a424 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---24500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd6b2aa35263285e6144d3450bcb9e8b8996be288198c6eff918e7611f7dfa6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2e61810394c19309f4852b2ee8cdd69a7ca31fe --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae533246c92b623e2d5c9585addd118eb5406a70c6ccb279180c35c6232d1f43 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25550-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e889740b126a6f3ef11367b71dd9e386f714a2ea --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6f16604f904a260784378888d9221d13ef58d24e5220448953aed33d9c6da3 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25600-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..470ad7bf5b91a84d53c0df609341930c1309e7ec --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90b3473040abf2fc9f87c09d13ca5c5d3b38611ee70c21ea644e7aeaef54da7 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..577ebe18a7436683a2aa4436fbb5570b88f20e92 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882996aa10671339534684de40bccbf0906a4842a862bf3dbe6467699287726e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8560aa848791f36bde3479c3001027da9769fec1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c3ecc05ac1ff0cbf4a75ff24548e2c2ba6ea901f70dfbb2c74eec0883f2cb0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---39400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---39400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f96d37937959c3a18e2482e6fb5af2df567b7da1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---39400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8959d91dcaebe45fe52eb1c4ef2030a2bbe9fdbee3fab9282cea703d89320fa +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---39860-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---39860-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bc5365c5a92201b7ee1c48d8a750fe5da9c17a72 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---39860-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bba40ccc42beecd234cf3e492be9b0f114221db789728f0e8895941e377d67db +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---75150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..19f91e2b6451a417995744950ba1661226269ae4 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac68ab95f1f9d7da1b08b1a370547713a70923a1a2c2fafb0b7ebbe0fa01b31 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10791---25740-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10791---25740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..495f835ab150898f9e41fc78709243bf3081d7bf --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10791---25740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8758e239844dcbeb00106a8f9cad16be2fa13a8f9278c5f82b64a1e72dac6ee2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10800---11450-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10800---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5dd630775c1ec8853d9f2142d54fa0ab678507f8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-10800---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8cef4f66f2f112c448f01e21b4a95d1a082eb1863d3e0b04bcfb48418d42ca +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11350---15200-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11350---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce268bf69e0ecd27a093f8adc2d58bf45eda3dc8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11350---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309a737dc102fa9ea7ca20a26c4b5a49952cc9e33a4d9c26f7ccb62fbe6d5a88 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11760---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6dda8100ad0359af7b183873b9ba825dfbbde6ca --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81fddd3f9b9b225fac3336ccb5ef60720000d561574dd5b185ea5533ea2b728 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11850---15950-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11850---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c351e72c93e542b0c2eddd7c9751a0710cefcd34 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-11850---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cd55bd0c28d65a7b975e2484a2ac2d6e210d09170c22f7c25893f2ead31180b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6df6938b4c182f65d813353681213ba7ff0ac9bd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18275d8017fede40bbb885a5381176179823e85930c83677cd5c94c3904ba98b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---26500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---26500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e197dc8a2984d96660de0028c981a66d3aff6694 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---26500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a3abcaedabdc19b9b0b189b74d17360479135f88214dd18aa1bf5658e6ce34 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e5297a4ab56741a1691da09619f4c3adbd21ad7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52ed6e0953419564daba7e81aac6e99dc6fe4b1b2d45f94314640de46f64e8e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-120000---151000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-120000---151000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd7cbef2fd4f51c236801679d298cfae19fb39d8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-120000---151000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b8ad0a85fdd25a25dbee57442e700acf58945ce7b77562105e0f21c5564242 +size 475 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12020---15050-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12020---15050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20a5a9c87ffca5c71cabd29d0556effb5b51fcf3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12020---15050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2932e0666d04d70402cd7309f62fb3c531d4819ebb4e4895ce681d1bf2b02721 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12020---30020-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12020---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db6dfb8cfda45223afcc89155f7a22dd1bb22d80 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12020---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d09228cb195b2994ce519ee5a5dae52a5c590e01fa8eccaf5994d7f096c89d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---12830-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e893909146078d5e9ad7ff33f6fb54d17a243252 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7fcae2051345f3006f61b5626b923878c783759eee4b350df69ecad96aba89b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---15250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c5191754121c4febaa6f0531ae2fa7b10d67313 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de04a940e1dddd717f5c8ee5e9d4e53794e21540699c033647dbe6a8058f205 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---15950-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..72383c2acfcb0604bf21afde678833623cba5cbb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24de6138b291dc3d40f461cd91d66586663fcb1588e8febfed3e54cb63771114 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---17500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7cb7a39fec87918cb52e538cdf358253b70bb4ce --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ce45a27d4ff9e4aff1226e758396f009f09e5d669527a7c1affcbd0d71eea2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---18000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89bee2acefd32bde23196c01bd06b66729c40d8c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe42e11e71ef03c8daaaae7a360a4b29659060ba12e2433d18480a8b6f9a603b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be03b86e7f62d6d5cf7706efa64bf1004735acc7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c09eff668668846dfa9a86c2061c2bf33e90d95bd64061204e7d6f40caad7e5a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21520-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c9819e7ce7a1ab593af471b503fa9d096606abd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f860bebc5aa7f73df1ebef2daf579c46b5208c96625155002486897867ace5e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21700-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2dd5848eac49856280ba8fc22874c2cee05171f0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a4d24114e4b73c1b81eb31ab58db714beb4b52f4b097aa33f5e3a024b964db4 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21710-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21710-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6eda3204f884c9f935e81901e07102719341e4a3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21710-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c807d4b42cd64abf07f8107478d84162e26a29fbecd9755f894890613e5a813f +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21738-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21738-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67fc8155746bb4bee53c27926eb0df116ad8e158 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---21738-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55b03211052a396d2c9a71bb10b2d142c74475244d7de239b878fd95ad2fa4e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---24000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---24000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4da5fce3f51b7f04f226c1a1d667e324af251d27 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---24000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3283c7a8fd15571b11f5f3af62e64cd42421cd4d449a3d9b1db7f7a8c4d9ea +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---24600-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---24600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ebdc8cee44d7bbe25661ba749e9987d6bfb8b84 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---24600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca386d1577454f3e3a25ec76eb5948d945b89a042db19b59a55c183a0e553592 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e5d04b9ce7ad249fe713b55bc3ac5591475f6019 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b11e04a0ff29593e95b64e98988c56ccb60d8b09784c594933b347fd23829e0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25550-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac924f16c2d6f9cbd34bb3967dd6268e6b1ace13 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bee13f8b06e738db28657c5458d22227cd8be8ee112bb812a75eae3e4f19738 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25580-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..813918d16293a54262c25f2bbcabfa231fdf11b7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7df0be14894729418e69f40224912c417808e305dc45f36ba3d8a5a335d8fb7 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25600-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8dd7f19c72b2014a92ef71b2e32e2309771004f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010e30ee462db250f673f8bc306aa9f722bbafd8c4a015bd10ec133242287222 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bcee5cb3305db48d4a8c94aefe5fd62d6eef1319 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a194960190fe8f00e6f355288aadb4bd59ff0961de9a1f691e910fbe0f6da2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07e99790cb6f5db0bb0d3537b695859a7d95943f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:babf8d9c4021dbe329e0921891f7dc4fb14f1f28c946a80d1de3546077900bae +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---29570-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---29570-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aadc07e6bd111091a600648ddeac68c3427a33ef --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---29570-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3768c7d1e682fa3c56a693a858613e0d085337a756cc3042653d6f09231e8e41 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41384da18e15543cae2dffd52c2a1d945ece032d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa495aa086faf266517aae70d3f9dcd29a1433de6d7e19282c8baf902dc851e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---30020-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1692fb264026c42fb41216d17ce39bee98a38ae3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4954d94776afe36aa282efbc0b3145647c6737eeb3625b1f035b4fb75684696c +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---38960-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd9fe5161e347f0e32b7db15e69a1798eb269993 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ce3aeb72a267bf6ad829b1616101a852100c52c9f7b892375a2eeb25fa0198 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36351f6dbe33844a674ca6321a636bf40a21e70d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973718a7ef1cf08bf26233c6ac377bcb14897561bf023b5a15f49979fde2e151 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---49990-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---49990-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f78d551beef60796cd4963aac92d56353824a7ea --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---49990-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266e70013bd02684a5f20373b9c4cd90af9054942345d2a8d4e094c76010df4b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---50000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..821b340272bd464876d681d524b271e15c44dcda --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea442bfbc2001116b81f393fca14363f36ff9aed32f916b3481d6d33e608123 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---60000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd677bc62f226844f34cdb6c7223d124d3a6cc68 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12100---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d593bb847d40596069947979850a4443033bb20e6a4f73835e2e43486acfe330 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12150---21750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12150---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e741f6570df965d0c0c59740b66087af0521d389 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12150---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4c0f53fec46b1b5249eaf64597c94b93be5e3bca0cdf95c382dac83ec25640 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12150---25580-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12150---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7300b1d3e61c4a814f018111210703ab1a896374 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12150---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:462f9a7a8a77965c21b386a70951a8b320352c1035def4908fa5310eae972429 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12165---21800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12165---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d6762435fb7d7c6daa696d210f780275ab1e92c9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12165---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62cb47a1383809d73cb06013c82af96ad10c2a276d0c8b9eefbb46e4edbf2afe +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12200---22500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12200---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd309492f8edcf767e10c1522feda90f625af8a1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12200---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e585e3d07f0932d6da3fd6bc1379ccb5c1ce5a23371c363d38cf82a442fa97f +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12500---25600-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12500---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bad4f9e794c365047a6ce9027e2fd87fc2c68cc7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12500---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c3a5e06e4c41b2499c975c23e77a6b8aa37179790332385bb8edf2e7a52c47 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12598---25591-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12598---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f65e1e1786698cfa620432e8ebdfa85af509a25 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12598---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6efa636896d1598ff12e1ec3d7d9beaea7ceb9ca99fa75acb358f046592ff31 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---15250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8040f24f692d948e62ae7fdadd9f322d119c657d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8419181b6c05ec46bc1d841873190ca78d8788f00b9f8b4ac5719e16ae0d161 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---17500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1503a4a9d9a0114ae52e4a9598d2721f2c5008cf --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca9c0e649685f9c1841569565445d6806281ded4b8cf518717ee8a1f1d4fbc2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---18800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---18800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b3d65538e88cee237e1c7d6f960572a99501ec7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---18800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f0cd59076c43519ccaa2b22b3a8161ac2905984d886b9711822f18beeedd622 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---21400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca0cf4c5f77f36de75f2345c2b8cbf879d6edc06 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8b89808dbbe09370b2e6e4a0a1c4b6cc73db72942da630f7f1564bf98a9a8d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---21520-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ab9e033751ab6dd3acfd2ba1e67af586393e0b7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9cc2fb7784aff2457f5f296d9f88fe9955cd2ca43856637a416741e2c1abb63 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---22760-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---22760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79ce9c2c92be9dccb92294d733d2425edc07690a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---22760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2667ffede3ad2aeb02dc4b668219f6e340ee606853838c6728b7ee4a11efaaa8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---25600-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0fe49d478541720a644d6b3b46e5cbb7b045d52a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95cdf35c6eff047aa95c7a783ac71e092dd4cfd7aebc154a1c4e964dfcb8a935 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..97b6939d17d3f7c0752f2ecd91ed2dd016eff14e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f0261a05a12beb276abed5eef7762cb4150b04d6aa7c56111013a48098b462 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d52506b9aa3ef08528faf000468aef9353354fba --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406ba603730175f91312269883289e6077035ff9536f0647567ed9c809e50b3a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---30020-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a31e2e7685975f84c9aaf9693a1c9e7a126c02eb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c0697ef95be8a4099c22c26ccbd613c231c3b6a6427ae0312f8086d3ae335ba +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---38960-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..14adad355201a2db07d79e1b0899cb16f413165a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1615b7a8fe364998e4d9b741972e70be4786e4b5ed5dfacaee0d8d5e5a8b4fa +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---47500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---47500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad7c644cf367475ed4403c0b7863f9831cddd7f2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12690---47500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0467d8454ddeb08d6c1472a4453fad8998f4d970c91d2ba71ff4421e99c0191 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---15200-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dca502af96fa523580ddc042259b6e2cc80f07f6 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afda5cdb95b86d90a09329a6d95ef017311738fa8488b20651e593b7e6cae963 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---17500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77cd0f41bd66aec3440e906cb0abb57c351b41d1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2da916f2144cec46d0029775c8b6344d924c5578726db35675a877c3faf83fa1 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---21540-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---21540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6437a393bd47e69d83d02f8842c25205e2e6ef24 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-12700---21540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b49707431aaaa003d42433b7ccc11f0997a935544617432aba5e129c830a5b25 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-13400---17500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-13400---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a87510f6b67cf3e3030c20b8c95b336897994113 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-13400---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d471c7f431a2c890e89ec0de3c052eb6a0c7512c83c5b48f29bd5423471440 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-13800---17500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-13800---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9df4d08884e2f1862661c2327a4c6f427c5b44ad --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-13800---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc3834ea22bf30836fc05136a268bd1b83e8af631661defdf7488d34e39d48cf +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---21402-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---21402-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c6af42722cb41e58c2a74920d28edced6d3fa73 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---21402-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f061c2d8d412d726d125697794148c7d4e5df381a1cf25d22bcf300f53b8493d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---35000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e953a89bee770daced24f12b277e53d18a1e6b7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ef5b40d101561377bfbb95852120c5944c253164bd371910d6a995d1e84c29 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---40000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8744151d08fc0b6543c3265cef443442db7f659d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b769fc1ae3b334a094e52a52159d40cd6149313356ba36323d26cdfceb26ec +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---50000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e96dd3d92c82ab11aea9b5934f43a334f4897b2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-14961---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9148c458ccb618683be29904cf43d39e3b3e0bbad72b3b0697bd09fe49db672a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---25000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9732d6065ffe5593328da37fd5805569232abc9c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a86b71cc51db73ecefe9607f36c95584159abf310c3af2dce73df83f1496349b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---25600-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08442a406a37062341b550c78ace8174ef58a210 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de1215b5bb53d3c16e88221a8831b8fd54b85e86a5dd565765047982ee4e89d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca46f71af092e142001a15c8c321ce20e79a54ad --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72696b7e57c612e2cde4640429cd0b9e7dbe98d155b3889e14ac7e8857c17417 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15450---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15450---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f1d037969e9921527faf5a763d1819fa47104a9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15450---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:010e90d91ea139107b03042e8a07bf83a9a02c1990fde3482dc4c733f677accd +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15500---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95d6d4d40bf9d405518731b34f59fbeeaf60a34a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b2dd9cf142d42db29366119fe966984ce2ddee49087fc25ba75c6ca8d35487 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15748---22000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15748---22000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..219ea3cd2060655b2ee59fdd8f909dc542d5e33b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15748---22000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d272389e4bcbc3b4b4761d74cd732d749c821cae050758c72851298dc21e6445 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15748---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15748---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ecb190eb1fcba3fae4dd5982414234a1fab60b6 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15748---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b137eb606bcc970e54b52e6968436ffe99e64aa92b062c25460cf7d69142efc4 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15820---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15820---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33af806832bfd702d3e479f83ecce35289cfd6ad --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-15820---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca3151939fcc0e2fffdcba042cddc4f1d36b9a9d17c374861f3aa48284d33ed +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---11450-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0c76fc0cadc827a7330a40d10897ccf121588e7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955e604a8202cd32f70265a2ca09887ef0d1df4f29389df60ba2d8e43ab6e518 +size 470 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---21400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56095aac26630c6961503878d5090a8d19007f6c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a1977baef3bc50f984b366b95baf5e970160782a6fa28a6b8af156a74927f57 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---29000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1bea8ea524898112c8fd21f880720605bede8a72 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed01c67cef2f2ae634859e566cd02258c63be50b5911e8c5d953089d7c8559c +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16200---30120-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16200---30120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f4ac03a7c119f2f5dcec547ea4e4fb12c016074 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16200---30120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c26b188275e16099724cc418d7a571742348d657772d8444c9042dfb7dccb3a8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16250---21250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16250---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd65f9de449dc085120e8f1be809ddd2e5053484 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16250---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91357581550d7b6f7d19563a7e7119b7bee0da7704f9b3c1fb96589a4f9fab89 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16250---38700-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16250---38700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9cc4d0a57e62bb01b166cbebcbf13df7ee36fed1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16250---38700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f01c59a5bb4c9c713e2389ff3c9b35d8777d2e6b8caa84e253c66bb049924956 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---21400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7609fdc24a6ddf180684bb81ff4b9f3adba8012a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a204b470c7b7cd8d2b2a2f33846789856725108794de798da63e9ecf3bb5e4b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---22184-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---22184-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a5c3c2875974928e70a0c51aeb8baa24c8a1048 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---22184-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412bfc9e4379f1bbc3d7c687aba471ec587df909b99ff72853c983b82d0ee701 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---23663-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---23663-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bfe9cb392a955ba42801fab3741241742a93e9d3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---23663-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b5f4a92611a4fe87ad2787b174aece5a267cafe5a74753a6af3c76078cfcef +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---24750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---24750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79f1059e14ad298ded861a2f83efcd9768a4f0c3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---24750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b882a032b1fb7881524448e4c7d2a75a45d901959c4aeb6fa6d43d83d06d21fb +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---25550-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a802a4d69af7e0abdcde1491a6aae58c255de9ea --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de55c58ed3c32239e9fa64f982d7fa6a0937ac857f9a919f7f8a7b8e39824e7b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---25600-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..288fa7d0990e1ce39215e23fb83464bda793364b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a5c901be32c909fa3ef6496b852104cb8df8acd933e4392e030190de9c0d50 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---29300-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..078e095d5aa7cfbdfb88736a60f67933710e35c9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff0f7824f4a78f205e4adcbcef455c6845bf4d7a7b89026f1a603cca7ce9733c +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a7842435f418894b8cfa0800baa8a4adca89def6 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb7921c810d17f283a2cf41c0a87bab94625e103f87adf959b8d4c6a6a56644 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---30020-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6cf2f583aa11cf1644cd3438783a19b8067bebe9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef77d5de9bba41a9e68e33c485d06a8f4a28d019a1057166994bdcc63d415bc +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---37500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..643a2259650816b073b1c60addae6d0c26ae7572 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6aa4bd0572295f8e1b3326737f4679e3e311a259606942c0fbf182db116071 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dc5a75d9faaffba25e69a73d587d9111da9bb3e1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b855d99340c56a742d3b3302f42e1d6355e696287bd21e2b3be16395e2d42eb +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---39400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---39400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bbd6bd2f410a45394c392d8881b2b7cc3c653a6a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---39400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c054afab6087339cc236238a9c2d0e73b72d3a5ef3f8239c97a1015161ebf4 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---40000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b443ad481d4ff26bb68b3d0c87ed527b6476aeaf --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0349dfd2acbec0fef303f57794ad20705e1d06c6a2901c9d061e01ed6e0908a6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---53800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f1b94f4521ef145be2f1fb109beb1af6356d3caf --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e785f1340124ad60eb96f24f1376a4b96308d1faf68d1a9d6b56dfa88415bf08 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---55000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---55000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0324cc695149f4b3c1d8288a3851bfc669fcae65 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---55000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b00a33b80c4803e02b2298bfce88376980a3b8c2019e6d61e9a4a62d427a41 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---75150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..700f8bbd2fa51929e79c775537f60385678d4329 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16350---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229f08c8b650cceedd7ec2defe76a091fb0d382a6d67127a33c34b2610ec012f +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16370---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16370---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ac65e0e421f0ac7ac3f70b2668f40721b79cd65 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16370---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a8517ce405652b9b41a47ce874f9c8859d3ca0a3462321ebcbd8bbe1350b44 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---22500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2fff80ecd2b6ac9c32eefb57fb0dabba3ea7810 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a29191d7567f6eef422fb6ac3ed6d0c8451cb9fc978c0862192bea19a46c26d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---24000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---24000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d556ce7ac0be013fd422912e80efb2afb09bfbc4 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---24000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f46258dad38c300f492233a20b4a447a8f09f67c4a2d164d5e21f2e255a1976a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---39400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---39400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e274ed8092aabd07ae8b7dc73814dd743c09581c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16400---39400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab41b61779036f2e7e3fe92e7380c7a93b79aef6cf0ef7451409ad950f840f3b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16450---21520-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16450---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50488df281ab1a88c5162aa07b7099648c5aaeb7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16450---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e52797a8dd950b7e5071d3a3f3c9af008bf8efc23c66f708edbc3b612401e8b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---21400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9f94a78ab861add97f48e32c8f3f90045044db97 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a64c61e074aeff9d3798d9a8975e0040fac040871b21bce0f838862b8c3277 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---21520-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef216653e2c0a3772562c646ff15b786ce551cbd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f877e6287b2264a24a21451ce60d974c362f45e4ce2569b35d27dca1942802 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---23750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---23750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c56541e4bc14255ca6516353b5a3aa87284c24d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---23750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:465062fd87e8b018e50a85bb93d7b0fb46ef2e4fd7bd0e2f8d8e1bd4388a0715 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d405a2bedb87319b5bba89cbddca167c7916c8f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958190ee9659a1eaf308ec9e4e2a299255173dacba87790b0dea80e8c7833799 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---26249-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---26249-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe82aa2725adeacfe37510f602e60a6794d95a2c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---26249-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47b34464d46db8a1f76a2fe622321c6ad36c61ba92e3e9dfb24224952d6ddda +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6b3e5ec3fa27e8f29eceeb121d21cd01430af81 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456ead5e579178e5a60c343eba992793d0f1d4f79872d078aa7632ec086138ca +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---30020-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85fb0d1369fbc5dfa4908fb1d7326cfd04eb1a6c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b188d372e2458518da05404433719987c2b1ec69f36e7ba60847dabc385b439 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---38750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e2ba51ba27d40c8b3085b539cfd32c3d81eb4b8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3838955a2414d8a4749576cfe229c7e1b795e2e214fbf493d6d0646d2e7e4e11 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bade5761d5d6b5e09ba35e93a36e2ce930ec2ac --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:071284fb6c042921042ad83c5e181a7f6b65e429d13f1fc7767a9aa39aa53fa1 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---55000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---55000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a12316e68e4d245b607e724a0315f2dbe08d624b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16490---55000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c110f5c6e748ee5a748a101fda3ef672eadc18548e8d420c40be5805d01ad3 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---24500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---24500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2aba6ad456518e5856e400e84f57df910fab10b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---24500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7047fbdaa0f3e8c9493ad8210e488866be3431e70fc6b1de411ff64b17bef9c6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---35390-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---35390-in.json new file mode 100644 index 0000000000000000000000000000000000000000..621ed3adb80d24cf2efa0e4dc3837971ebdfe0f2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---35390-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90143730752bca22322d7a7db41eaf88cde2b0b12fa800a53780f3cf5467884 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---38850-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---38850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa21278d35962137dd3edaf579f1d6ac7f6a7b70 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16500---38850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fdd46535a50cdb9840f08f1d072a0569da681b71a0d7d2b5e282b6b7bad04bd +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16800---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16800---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9322a216f8724b94fc6b91ba8aae84e3b9d27f12 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16800---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddec7db8462287930bb4eebf69c7230fb47a1506229f7566875a09d79e72e582 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16800---38960-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16800---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7001f8eed50fdc7ac047fd1f094e0ff1202633ad --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-16800---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3884106033e3ac454223c0cdf1a8c14c462e657561c85595ef2c3c3c1a535d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-17000---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-17000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65bc44ad5e050586230973dbb3fa121449882efd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-17000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8d6c9fb6e21afb7c18b65b5e28c023d56f797e6882210c9f02d7556c43eb44 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-17500---25550-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-17500---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..69fa88608a73d2ad1483e745c2d421fcdc85f92b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-17500---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5918c0f85649cec3d3600ce9721e34a62e6c6cb964ffa6782a05a79d27771be0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21000---100155-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21000---100155-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d70d4536717ef8ff5b4898a888f212f120629f86 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21000---100155-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8842c5a22afcf775612f718e89e34de0196341c38c8e3800fa1c26618a6632f9 +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21000---99760-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21000---99760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9a8869787e32436eca3399ff5095bd83feadb99 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21000---99760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb1339c3e12f2c33f34106242509613c6b5fc95fbf26a58e13b88c036f65e49 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21250---33750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21250---33750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9fd90d3ceeed93effcb7a60bee0affd1f146febf --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21250---33750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc7fc65e63cb6df8bda4984edcd4d3d2f9a5d06b8a55488eaab127dea754171e +size 511 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21260---81250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21260---81250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8e7b504d73c170cce982f5da1ff9bd2806a9f31 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21260---81250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553480bcd0c970222560e7c2ee7025b795d3ebb7773d15ecbc20216414733fc0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---35000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85f0c06b9a390d233453b1f9662d754355b04255 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74101eff419c2793630a7936951862c88e1e90823c73f167204c356f75b78a60 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ec5b4de96f318ab85115e33eea88d45be6462ec --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef1e9edbb472105e0fe921780f03d0d2fafbd5522a001066dfd49d5e40a6989 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---74000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---74000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01b558151211ede22d7b2392d240b2a2b7e184a9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21400---74000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45d2ef42377be33ca0e276fa7717b353944f64f476a0f77c72814ad805971fce +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21540---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21540---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0641f77b758254d1f5e75c50a2b0f6cd1f4be7e7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21540---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41fe2b0ad621b84c6db73e7617dbedf27f9e72542522cd653ddbc595454116c8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe3ba2dfe6eaf2523c23232e4c6b1b70ddb3a8a2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3fe6761708443386f488a6e2bea14ca638d8373bcca4b0fa10c43b5db1ab3b7 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---37500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9ee4a34eb2417e696dd633f53ee3480e0eb2c1c8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3773e5afa0638d30b7ece3fa29e35e393706e36e8c0b33000b0c3160ed20b757 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..109d9cc0074a5bd1b5c7efea9ba4daaabedd7d16 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317cd2f6a215bea620b907857755019a35c1b51c65652b81075ef32d23cd0eed +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---53800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79ce7f3ccd0b0666c52c080dc9a33c36de2bcd90 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58199920707ee904984ea55b36e5f6fa87842948b55274193d46eb0f53de6898 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---74000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---74000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d10915d729da2807caa6b68c7eb3edfaa43de772 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---74000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a9a606f4d4e09681e28b2375782900ac0c2b532d3b80c50dbda544b39c91824 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---75150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80cfc16cc97cf193e30fb5f0b3bcb48cca96be64 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-21600---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4732fd9fa827ae283af188ac2073f271179079f8ef1d97a1623d30c77988c329 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22160---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22160---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b9ad509271abfdd4cff0e3c59d7d352c4ec011a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22160---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a1ed0d4a1e9c8060bb607e5c46c472f95753c5bd022c1fa78d919d3ab4f479 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22270---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22270---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6d18223074d8ea21f48df591dde219e89bcf61c7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22270---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af94770f63b3a970893f322a2f2b4ba6bf17f7aa8ed228a3547823158c2a09c1 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---26000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ece841535e6772199effe2ea4f796f6f2d3900f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:772ccc6e4998bc33b44d0f597a58acfb58b66794e2048336e65f291a106f6cbf +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc81d0f77018d52b84b86aeea6ad04b87373849f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d1294d38f976aeb8b84493ffeaf224a3221b8adac0a0656dd7e7164be63566 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---38960-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40a0b99adc023a086e1dd28385a83deb1bd2c07f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83556b872e4a687ca4fb0260b0ff5d46859fad1f0d9b4af72569bd129cb15499 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---39860-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---39860-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f75dc8e9df50e5e6f4f161c63dd878227fc47392 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22500---39860-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52bca08caa766dc2ecfa4f83287e932aa06e1de7b84ac381ef2f5ce5bdb76894 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22600---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f6f929822eb9fdda426aa0cc44b3d12e2cfd59f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88c621637bb87687465e4c9844c6b5ac0c73bfd881da6ceb76c9437c4fd5c2f +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22700---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22700---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fead1bebcaea887c0a438a9948f3567692354128 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22700---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b26d972d3c7577901e5bda25303f1a66bbcce8b78b2e2c7989bcb339136a897 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b209503df619b8f18e787e1ef8c1dbf86b60a573 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c804ebba8cf01eeb8752502449f7be1b8d4a839f7f1bf5ad0dc88b8a9b549b8e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---43537-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---43537-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b8082c6e6cecdfd86abd94ae4cce16a9e863962 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---43537-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75fef083475166fc2655f42b41d5072b2d05a8093614c568d165ebe23dbe7472 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---54000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---54000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e72674d747ab3559dc2f189b3e7fbc30a6a9eeeb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---54000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80201552e6ff64a0fe9b3fbe735c62860b592a36c1a453b832ca0d6e27cd37b0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---57796-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---57796-in.json new file mode 100644 index 0000000000000000000000000000000000000000..32cda05883548c8a25a392f044cb39484a5dc715 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---57796-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed16d342c864b176b0827142ce59af3481726d5d81613a5c436af0147a2dc58 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---60070-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03f5b1406ca36a095bc413d0054ea275537fd9d4 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600c304fade1e9f057f9483389c000348d97f2deaf3b12d8a9c6a7bc9b31e009 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---69000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---69000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dee590ab82972cc1363efc78a9e91593722f1331 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---69000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:932b26d8a5ff50abcf097261fa86d62dd4cee0113222f2f064952f22582c2675 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---75120-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb6d6fd8767989d4ea0379a104c6a8f013ad7941 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22760---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f17c23672be87654d1d3451b0be4a0b66b56213cd635717eace359f11d867339 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22770---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22770---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37bebdf904b57bf8246ca1a315cebcc56f47d843 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-22770---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc35b6a14460eecca9e074c3c715eab2b10b9d8327bfa5f3c08ec0b2424ecde +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-23130---53750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-23130---53750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..718137be6cf2d502fdfdf4c383bece0e32af6d7f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-23130---53750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59874843a8d67f19784fcceffcd182b5f398859ec12a5f29ddb16956e87aace0 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-24600---29750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-24600---29750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67bff9883bb3ffc284c12902472aa1624bc581d7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-24600---29750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be7ca043366dfe0145c0198fa61e2b9e72cfeb8e3f3e538fba58cf21903ae41e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25000---31000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25000---31000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76faf5a5fac018e6ee5491bf2beef2c74c303e07 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25000---31000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a3498a662e938e92e795f65ecfff61c74e271a4ea24fc39e73991338a40c359 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25600---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25600---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f44d04fbab6880add4530c9219f38774fb163ed --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25600---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f69c215ed9fa600a176f43ba5160fab062bdfbef107ef17b44d01581d5b543 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25600---30020-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25600---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f79a0a6e3d93e373c587e950e7ec4cd13ed6ab0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-25600---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d35ddb7892cad9a4824a0c8c09fda8fde80d3aff9d12a05fafbb2ef7c008f924 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-26840---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-26840---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6dd5eb263c3f78260d6bfc94dccbad78120c5fd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-26840---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb899d6b898292da21b1e34cf41d7402f86fa869aa61f8f14bfe25d8e88d150 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-26840---54000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-26840---54000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6223d21064fa57b01f8c191063003d81b80a83b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-26840---54000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee7de59cd299f3d5bf877994630cda4483bad2f3e4952db1f5af3e73fdc17f1 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-27000---38960-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-27000---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..179bb9c3c5f4d26356708436911e2bf0fa3b8ed9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-27000---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99c018a51463157f2d336fc4514329a14adb9398ef08cae46306f2a54a1bfa2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-27000---60000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-27000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d2b943c10a71c0b2925d1897b2d67b8ab195e20 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-27000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d52a7bedbc7aa82662b2c1b3b5c359e984f0a56d1f7d54e079aa4a858acf9329 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-28000---60070-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-28000---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e5c89d9c56f983e8f1a994307d2e9ab040154fe9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-28000---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e4bb42071b12425ffcc442b2e20ad7a338f1828d66cc5466766c35af91175b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-30700---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-30700---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..031b596f2b5e2507aa27d2029e30ea474b9b8527 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-30700---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c58e6180d30a8c4f5606e62a9858334c4c7113160279089ee06f24054295e97 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8b0d2e68fd39bbae723068388da7144b3eaee5e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d831763c5ce3e6bac72d8a2e59279dcd6e1de0a3af7dda6ee4cbfd56fad4e19d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---53800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0e870eb792433c774fcb2c63426740734e522a87 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a832b1f4a877d99a6b2c2334951a47ba9961eaaa5b29202b7fc4e05f40a681a8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---54000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---54000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1cd99a67e66366a4bc48ef50d30d709205833943 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---54000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4979cfbad5fcc81dfeb99a4770af2f84999ff9f6c37a65d693309afd6d1c481 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---67500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---67500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2306fc80541348b28997775186a9779ad3f3ddab --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31000---67500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a134ef252c71c1a7a8dbdf5b8a6fed7bfc816d175027da4f32df1cea10de3ea2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31102---52900-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31102---52900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5321308d22a54104208c14c55bbda340982e5507 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31102---52900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf77ac770ae2d4e73b2c3765a92bf51d114a2c64c539c970d47035571f8c9d6b +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31102---63200-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31102---63200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4f967cd870925a5d461889cf6135cc623446588 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31102---63200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb8a6ca37823a1a076f8074d929cc52340e7c5d9568bc06b5c7ce4f6cd20e251 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0d44aea050593165f7716604b5339c57dd51beb5 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6aa972a39a034a7f90a6dac700de47dfc98fe9de7de5426b5b760f0b14d0c78 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---47000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---47000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a5d176d415eb76597e5263cb272edbe54a096771 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---47000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a68a2bc9b0d02763c678f81867892834fdba5883d30532c77f7cb1510e2a46d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---60070-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1510eb974a1490871ef56d0bb686a143ad38b1a9 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31260---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da44f7d2a223af3743a981795ca300920065ab7aeebe6516db62ff23f4ff8525 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31300---86250-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31300---86250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0df182588f1aea235a479d1c5af3622c0baa0d6e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31300---86250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f082954ce1de7560cfc49fc34fddeb49b90c85201b91a5b3c88a98e780f3af27 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31496---39567-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31496---39567-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2e40277af84f35d521576ab6b2cd8ff917134cb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31496---39567-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38891469b1b87f63671a87a8f076442d3c05585270675786e6f79acddacb266d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31600---60000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31600---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fbf78030fa03b865da43ac5fc7f982bbe821dc9e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-31600---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:224a658c8d09a0e0e8aed7250784b2128878d913ee35abbae969405cc76ed21c +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-32500---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-32500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..827aaad273ea7c68be993fb2c5649c8469c76653 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-32500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae5113ed94a6780dca51462f10079d7f19b25aef8dedcc361f29a9859b12830 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-32500---84900-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-32500---84900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e3292eb7d1400375a11acfc0593d073af4aa53fc --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-32500---84900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599b6f26216edf288be5638f036f82066bcd6ca65a1bd855e9152f7296f16104 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-35000---37760-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-35000---37760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6936bc6aa03869e0edf2a921c0a7ff97dff3021 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-35000---37760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2d588f0a81f7a8e3ee2492916c2d8c5a74d14b5084b2bb4d6c835a7a03cde5 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-36450---76740-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-36450---76740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8115f18bc8c3d9038bbaf1f0fe65777d0e35ce1b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-36450---76740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbfefd3562187c698975c209cf9c74fb92aa6434591f78d4ed7db99e12779b8a +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-38000---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-38000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0203cd60cc928e327a5d3f98937c41a3a272f48f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-38000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfdc1f4b5f48fb194d7b69d7dd1239b7dfbcf5ec8817110bebdca0faf6200063 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-38976---75100-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-38976---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a7c9792429d19addf895d18b5760b199df358898 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-38976---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:867e343e8a718f44c2efcab4d80f3819d117f6ad4edd243ef35187fd6f0061e8 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---100000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---100000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48e4efd2ea1f958b57ded277ab443776c73b84eb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---100000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3545b8123a246da12ec5592a3c83e3d68893d8f115fdf3573c254983e136812e +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---136000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---136000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ec297124b90bf617cfb920eb41ae6036b12a2ef --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---136000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f091adb2349104e89736fe3ea99a5526948d3c07efbdc7d52208055cba1b9cd +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---150000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---150000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f610cd105bbfe27e1001f58194c23e5a48495d7c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---150000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b3d9dd289338b7f5321127360e109ece7dfa706644795e6ec0131b1cf7e9b9 +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---47500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---47500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e9114a934b4c0c2419d37bef3e1ecda9d36bd816 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---47500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20e190fec148d0c994257ef82a73991da4533f8b7cb7e01e247229a81b6ccd9 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---87000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---87000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..87b468b8512e6c9b2d95bb6c9dc84633c4d57929 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39000---87000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4e017dbccb150d3f08fef7a8e6fe4eef3ac8d1180f62494684055bdcaf634d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39828---75120-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39828---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5cf69e71d05ff801bf818d9a5d60b7caf4032574 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39828---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e245abe1f3c4fa1487bcbc6d4833f3b417837d1555cb4428c3cc7be3ada9bcbb +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39960---60000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39960---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65fea1e6a01d1591cf0e360e97585306b1e2d918 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-39960---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86e3ea4b56a4caa89d251019356acee9ed1a07b9880078defc664453e73d930 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---43653-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---43653-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4cf6f3d41bf266f5279c0c4c9e468f7516f31b23 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---43653-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d33999841bd7e3fb9c3d7920b250a06c2e8c44313dee76d9bce6e6a159ad200 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---48750-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---48750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40a0d02898fe8e0db738f329d47669d91c247675 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---48750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0821862eccf5e4edbbdc7cd5a8ed5bf228330029446628d6ad5c4c964e12aa3 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---53800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..43b447e1d2efb975ca0ded374b25307095206d1f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20370c71feed671f08cf2a2cc9823781d152de11f4d5a79aba3676024eea8df1 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---75150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb05d1c5a6aa6e47d54f4a0100a556b013561d45 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90c9ecbfa9c1a5da50c50c1ec8e3efba6529c054dab5ea0f0538e038c338775e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---78000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---78000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..99acbb6a8027e46edbb5cf7726b4c991d77e9972 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---78000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee240cb6a6a9cee5b41718ed62b08344b46540a904ff5e0eda364f2d08d73fe9 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---92500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---92500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d4de03f886d33d026de756a4e11912ab3f7d647 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---92500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309628ccd753b3ac4b5357bf3ee0815fed75a10a8a8d15379cfb35992dfe38d2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---95000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---95000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ed2780fbcb8e5ed65831f108dfeee4f1cc0fbb3 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40000---95000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ceaa850a17d5519cadb3dd75cfb5809c8a2fb16976c28e6650ef6908e0a64ff +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40160---57500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40160---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..097d8db3d03216a6be4e13e0bf505094118a13c7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40160---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812fee51eac2e851018ce7e8ef2af8c1ab4f0cc82bdaf95278f73539e0672fb7 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40200---114400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40200---114400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8aa225387dfcb0877e55970b101e14873779f4c4 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40200---114400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a25c797eabc486c333491a884c9ee30f03f86eb132e330f2459d4a35d8ae37da +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---114100-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e5f32dab0d2bafd2b54d2e938c73042a694fc69e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2746e681fd4823c55e55e5b7adfc4419c865990291d0f7ca4c6e2ea010c8594e +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---114400-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---114400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6dd4fca2ba431f28783a5109714fa3f873bfeac7 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---114400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255ee27e0427e485389507f453b8222c9963aead5a59c4cebf245031abf99eff +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---125000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---125000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fec781736fff2cc7cddba4d2edcd83c67667264a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---125000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca33c492dd6c7da43e686117d8862e28bde2abb3ceb05931455a8bb7af97ad12 +size 523 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---45979-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---45979-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8a9850325e49602b648542370c84ee907c1bb24c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---45979-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2abb3d24de6bd1f1b3744b72ab1485c219bcc16db48e7b372e826a3ce210e6 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---53467-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---53467-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03bec5708f759f70cb965806102eff44f1dd384c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---53467-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c223c26caadc8d35c3dd5ac0a4351e5f4b633f2aab75e2edbeb9ab870df94610 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---60070-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42580bad81a8f64997041b98e9b5b19b523f3992 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b77e8576fd01480fc2e6f5725c9c63f7f3a0e5834fe05f63eb1d706e5cd508ed +size 514 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---70000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---70000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2fbb12f960dace1281a711ee4df383aeaa130a7b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---70000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238ac6a93beed743533782e1e32ed68e09b77accf25996b4929968076ee010b3 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---72500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---72500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..30078871f24cf7c3235aade1d29df439bd01c9e0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---72500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb5854ddbc203d03f46730d19484d9ea8f3ea251dfd8550f4644dd6ec8e2303 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---75120-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53731e4c20cbee56ffb3c280ff9247abefc4e2ae --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40240---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8af828c7d03ac7e37260028f26e9587abf80d058c183c4a6bcdfa54e645765c +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40350---112100-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40350---112100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1eb21b30032cb54440112a5835dd3ca82a5746a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40350---112100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb8cd4a50d80e455d81a5cdb7f430486f4431dc36e0c90da56dd0a4216484f18 +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40500---53800-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40500---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d9322267c7f88c919a28ea881dbf5c151cf0fd6 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-40500---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f9d5fcc28058a2ad5c74cfca39374324e466fa29fcef623b1088dfd9649c4aa +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-41000---100000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-41000---100000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..352e87983c2eb033bc992b61464dfc3b11c6c18f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-41000---100000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1326a9419534076041d2e816bdf2bf18a18d082138457dc9fa1d8d756b162fb +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-41250---77500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-41250---77500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0673a7c27884e5f4041093342e00fb5f90989b58 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-41250---77500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176d750cf6f05ccc85b7cd27dae61bf89a2168f19f1917e414668d569f6c8692 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-42000---75150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-42000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f51d22ba806b91eda711e775e4ca291389a10784 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-42000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9713de966882ea2f07210605d3c45721390b304bef5e20ab5354e9e3bf950f84 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-55400---74910-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-55400---74910-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41eba9bd8feeca6e172cb0aef65a089a1a47905b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-55400---74910-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98762dd80d17697b53b4c5b814f8768f2f531b34369367e7b30a468e6fabbb6e +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-55400---75120-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-55400---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff90774a344c28778daeb1cc344a6ddc8c927f66 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-55400---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707b1518b1d983e7473d50b5207d5d218a9845b5897f3fce1a84d3f946923aec +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-60071---75122-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-60071---75122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da3a3bf1476ab6fe14518d511d9041bf74dc346d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-60071---75122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216dff5542abf57e0088930c8b4a5c4c66f3b9e7b503a812a849552a476d11f3 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61000---197500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61000---197500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c44f34688670e35dba3b9162c97e0f73ccf1aac --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61000---197500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd7d61ea5ddcc96c9dffbfc27a83659fa84d062ec619568f6c7cfdfbd98c293 +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61250---197500-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61250---197500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7abc13b4c5ac8f8381c83f97fd3698f352b840d0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61250---197500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d6cd4491979c7d8b30740dbdac970cbfd2a315c9c11ab676bbf12bd1bb2230 +size 473 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61551---75122-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61551---75122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cf5e3f1cd4f50e1d8907f07feec747c19068d3a0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-61551---75122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81796252b88b00958eff6b61fefcd4c8421bad89b2ce956110717c910007f18d +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-63500---151000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-63500---151000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55d77a4bcb5abe9b105242c797bb826a56e5ed22 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-63500---151000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26dba94048d38c13d5dfbbfd2d12982aeb23b23fa300ccb2af65b740ab5a1e6a +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-67500---84900-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-67500---84900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa71fed6eff2e4458b736e1eb45422d4e62314f2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-67500---84900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e15845748048a66b6a2d4030f7b5e8b7542fbc12b3f0c456dcaddb749f4e47 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-68000---75150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-68000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d25267bf707aeaf3af69743a4abfff712a240139 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-68000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:787670e5905d724a3df105b35dbc56082b1b24d4884ee06f2b07faba75f5ffe2 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-71200---75150-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-71200---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6462c05cb826e2a7d15125a782b4bfc5b9da3bd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-71200---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b77c6edde457158991ce7ee1677e450ed3cff64fb4f5d3b1782830376e87f317 +size 469 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-75120---125000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-75120---125000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4afc1456c89f3a691b21c565655f4928d5089e4b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-75120---125000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18c699e891b0ff3145e8cb0a7df2ee8fb06cebea0eff02e046ca62b344642f0 +size 523 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-75120---128000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-75120---128000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f8bb94d7b25bd6f3d8ab976340187cfb55abfd8 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-75120---128000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca86d345c84431226cfa84cd04c4a4e4c9b62741715824bb344bcbb83449ea2 +size 518 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-76720---125000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-76720---125000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7200fdf79b679fe0a8a37591df8e8a646830e29 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-76720---125000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35be8db988dbb29301dbc17368a6ef552b4d220408ee5bfa1a8b841bf10f2dd9 +size 518 diff --git a/source/parts/detail/c/custom-aircraft-plywood-birch-ring-80000---118000-in.json b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-80000---118000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2d5bfcc7b4b36f6ab81af4ec61f7a3dde9c078e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-birch-ring-80000---118000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1accb4f1e801368f7415288d87a821d3dd3a42f989f861903e8b18af1d96521 +size 472 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---100000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---100000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..558fed680ced6d48a1d67568a11b56ec281a806b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---100000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:858f44636e6c8a46949254d2858c018b6fe4c07d9b08e42174b011a31ba7cbf9 +size 467 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---11450-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..344901b2eb9ca583e8fc5df6b987eb6438d20608 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6445d6fa91afe9e1a2f46a1277fda44ec3c94a20b436e09ec8d8c195f0684a4d +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---15950-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bacf020064d7e82ce49c4976fa61a3a65e4c47b0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3adf3ad40c42dbc3a59e388b76ea09ad847ac66cf46cfdf9f35ce78977e2af37 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---18110-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---18110-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0945f61817d31f6b4c5c3572d329d4dbd35ca061 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---18110-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204952040c04dee90d0ee47a6fc366220ab90bf8cf855ea6e992db1921a54811 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---20700-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---20700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a5e9fa5be8bf57cdfd2029fa05a7c6abb5a5a8f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---20700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74968f7d44c2eb84099d34b30ea646e26991ec1ea0a7be09e13378634c0e41c +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---21800-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b7738bf9dc8997caa376877de3643eadc3baaed --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55d2abd93fd620671694af18726239071efe31478365ab26d5d445a3fb3d24e9 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---25000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80e110573f754e025a824588ff65402733271176 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a778e0e907db5f3ca2a1fa9282ceba378b5f8d7fd311259697042d0b3864770 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---25600-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..675a485aeb7586dafa80f7e6230f88109cd26fbe --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9d5504e76fe0fca75e6b3ffabc154b271897921485e36b10db50aa8333cc56 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2cf384440e237b6a744bf5ba8039d42219f35f8e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e384515aef7df26b942beb308a796d90660d85b281d27fdfc2cac9fb323a4f9 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---36250-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---36250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d0e93789a8230c9495bee297f3fa37f8bf6a3d2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---36250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac016e6b3314a7902298d9f802db913fae0c5424492909a8c6cc8b7aca42e371 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---37331-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---37331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b48333c8b045a948ab6efe4efcc99c9d4a4d9ca0 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---37331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120d4d10a428085ed2dbf9b131b3544588faf373977ea2e048273b0ec7411a84 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5fc8ee59ff3b28eecafb5465e185d7ef4e250e16 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb713f8258792b7d28190fc3ef6ea2a61e8f8c4109c5fb0942fe172cf942cf3 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---39169-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---39169-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75aef1bf6e7aafe581e1f9d82b50db9996fe5e6d --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---39169-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f0949b0d4fea9e9730fff157c06ca4cb0abfa2e45300b13e6c20e36d9ea4e2d +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---53800-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..57738ac76ec452a9802169539b00f8eee7fda7eb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e14dcaa76be2d5ea885f9abaa4601796c0b67e69a89282a267f05b5b0e821c +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---75100-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be6cd8afc94202abebd46b07f1dabe6158381564 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09cf1cc60976f0d231a20b7d7f2e3b6e593053be37ae88e6da2cc0395d409b3f +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---77000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---77000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..171d72271fc216bc4a929690c397f9a992a6d542 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---77000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882e841079df7f967b933281cc6eefae15ab91dfa2c4af29f6740fa3d5d856d1 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---97500-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---97500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e234736c23e0e1baeea5ad770fbd389e6f49c6fb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-00000---97500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f66d22b151d3801dc83ea9f79e5a52f4bb3c1a3a32e8e8ebdd08d033815bd0 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-05906---20079-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-05906---20079-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5acd3acf89f1080e6db7b21c5f86d720a7d9c488 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-05906---20079-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a57288f9f907a749b7b152b0e14fcd5c9d5b6d0441481e54e29ffc062be64e +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-08600---22550-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-08600---22550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..30bec1ca90d33d4b7b5ce622e874215fd2ba552a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-08600---22550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4aefddccf635f3d61c10d8f759361af7d38fcb08c1e59184297ea2a9351918 +size 468 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09760---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9ffd20a5b3e9b6bfafdf3c94b15613aa3eae9251 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a359902426ff7d073b11154193040f8df14571cb9043232e3494afd8b73ea2c0 +size 497 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09760---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09760---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c18af15264c8ba2f72aa9398e88fc609cdce1bcb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09760---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7f3067055953871fd2a3b456e5750de35f8f3eee5925ce8bf4b5676f40efb32 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09900---37331-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09900---37331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ba7d4c118381c72b84ac3fc318be4caf9f4d1cb --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-09900---37331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c076619f52c386e006bdb4e5c707f4a7780c8e677c5c23bd869efc1aec16f2c7 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10000---21700-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10000---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd288f5e5284e086ad6b1a2721156d6e0f0ab91f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10000---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f0c3dd52a1b7bca3a16faabd93deab68b7c2a0b8f2bc2e83addda7f038eeb2 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10235---21658-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10235---21658-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f7c5ed3cf3abe6db044269e3f2935fd42540abe --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10235---21658-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94efc793e779cbf460af1944593930589d8f629c966745e4968dbf7db0e89dbc +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10237---21658-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10237---21658-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86ff70e1b5413425da970ebf93fc72bc60acb68f --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-10237---21658-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40ab37e48f0c1c033fbe5ecf555b82cb5ed88f33beb7977a2f3aec6dae05df2 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11400---21700-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11400---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8be44a68c7a7b0b851a1a285ffb27ce7f47fcd9e --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11400---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b6a8b01bf3cf0689e10651be78f74f2ac00a6e70c4943e423fdfec3fd0a0ff +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11460---28500-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11460---28500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ba8aa913441948001bd74b6f42a719fa1d28726 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11460---28500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3575594bd935aa1440a677b0a5bfbfc63c423c46034717a4af971635d33378 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11460---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11460---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..822815ecb5577904aaac64e04852e9c4d99939da --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11460---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fcda28cc3cdce7eefc1e0c5256ab129e33e8964b945f0f917e1a9e262dd29d +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11500---22550-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11500---22550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62f8066504be9b05aa70d5d46f0385462991fdb2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-11500---22550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50467e17ee8e4fec04d99931a764de7a05bce65db10102148a1d74bed138091b +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12000---22550-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12000---22550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e32ec11d6658905f37288adf6b32c190d1bea727 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12000---22550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65689918fcc3f361e4688e3d1e7e10f5ab5880222632c8e0dea44a09f5a9224e +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12000---38750-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12000---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b942aedc45d987ae08fae2fa26c6ad718ff4c805 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12000---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f8e0382b7b104cb152f52f8edcf3ec80925a379b4fd240cdb3f3f31633ad16 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---15250-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..021c784c94923c1059b478858c08caea8c294281 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09eec97bf1ebfbb915d69a72183a91d2c77f4dd11a613b4b2987ad73c19f5b31 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4be0bfc09e8f458ad1a11b2e43330dc33a80db77 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336b294f48072f91ad7549854a84a4b97d631902b1dfbd9a8d615442606f4901 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---37331-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---37331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0bfea6701e9308f59a7313bbb55223931a80ad1b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12100---37331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d1985fcb46292f93cef7bc269faba5789af01d8bcc8efc875163f9faa8fe06e +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12193---37331-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12193---37331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3738f1faff1c8ee7252fa61fc0adba7a2366d502 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12193---37331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef0ba005e5039b27b3182879829d3c286989115048e7dee1abd59451b872ae9a +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12200---21650-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12200---21650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..555ed5e0f9d31e78ff20d41ea888e7ced38a3ecc --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-12200---21650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51310e58cc6d321e3741394a2652b4c786c84d01fa77e44ecb77d910ee41cd4 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-13750---15250-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-13750---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d362789c624f8f864f359c9953d0ac91f00ca56 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-13750---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18029be9751c6ce25578b50549b5b5075bdb868a3d40d3d93523d4dd8ec09545 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16350---21520-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16350---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7bbc9f08bc8416b56f9df72e3a0e54073af2ebc4 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16350---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35bc32996900c2ef58ca577185241a541d93ddedbb292efa67e720ac66101eed +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16350---30000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16350---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e89c5f596f23d982fb2dab21b344ae5f1773f0a --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16350---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e723f1a99046d73de0031d538274247c9a54d85d796e0fd7166f8e66d7c410 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16488---30118-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16488---30118-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af437b9f9bb8d0533a63eca0fe695c0699aa689c --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-16488---30118-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e336e1b6dc9b5d71fe90555584a0073aaebbc4cc78753a0fbaa3f435b667348 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-20000---37331-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-20000---37331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..25859e3ced299e45544e3ef037381eb0a1ffaba1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-20000---37331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e5cf57f3c8408e0fcb668191344c8189ba8eede57d0176470a9793c303e21c +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-22500---39000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-22500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1aba6165d9e9d75847b102d3a907f2d467893ba --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-22500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0491671cd376b92414366d94991e16f5063349fb4b6f0c8e152a9b46dbf012f3 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-22760---25880-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-22760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a7b58c99f9144ce5ac9acd332ee45b0569163a1 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-22760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ead041515994b84374e6b9eca7f625b98c81fbd99db7618df82453f9b1d9f15 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-30000---73200-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-30000---73200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90d46c1e6235dee3e73158a30867582559ebd9f2 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-30000---73200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1d35460eff9e21e7ee67040ecd1f1cde27de86cc1f7cf62eadaa7397374a2b +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-30650---73200-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-30650---73200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4515639fe540d0fc049c4a6c5f6f8992444ea8bc --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-30650---73200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78345e5ada1887eb3f8b54a8a441bceb1c28377498f9dd9339380af6f589173 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31200---98800-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31200---98800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..507ff66d5d961d4cea8577587aea3ce1d33afb51 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31200---98800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b4c9065c31825a807391905aa89786812b9cacc818b8a39d307208c5f05343 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31496---39567-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31496---39567-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1756f0da707d49db98e8a83c90a632117240353 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31496---39567-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b81ef05c01ce5a658e47e0afc7cc70958c984e49fcbac648208df2e67d36cc8 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31496---57087-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31496---57087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..953e8c1e1bd1c665b4fbf355ba065b0fae68739b --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-31496---57087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5fcced55fe6fc2d89e7c958be064c079011f4af38611b35e8dd60306b1489e +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-55000---98000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-55000---98000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..801cd08f0839403dea6d4e18774bcdb9efe9d3fd --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-55000---98000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c45d7e4a9475986dcc5f68526e97b04255b9ad320e0f9e00b9b228b7218cac48 +size 463 diff --git a/source/parts/detail/c/custom-aircraft-plywood-loc-ring-97500---100000-in.json b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-97500---100000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c42d7c735feb9f556f17234034060d64e3633596 --- /dev/null +++ b/source/parts/detail/c/custom-aircraft-plywood-loc-ring-97500---100000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7fd6d5033fe937d55f558e376371b74f60e6a3fbfb6ffb33804769239c9876 +size 466 diff --git a/source/parts/detail/c/custom-all-thread-all-thread.json b/source/parts/detail/c/custom-all-thread-all-thread.json new file mode 100644 index 0000000000000000000000000000000000000000..10f71e4529761e842d60267b732d8f1b1475e4ea --- /dev/null +++ b/source/parts/detail/c/custom-all-thread-all-thread.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44dafde21f5ba82b941915f36e4d7f2c8868a7c302070bfb6fc97f9725f2dd26 +size 381 diff --git a/source/parts/detail/c/custom-aluminum-7075-ring-09170---10625-in.json b/source/parts/detail/c/custom-aluminum-7075-ring-09170---10625-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3de1ca9703084f4acc3da6305e2523d8f8a9a3c7 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-7075-ring-09170---10625-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7223126bc8375d7ec9d7013d414f5815cd1baa34c2d33449a3d146c2dbab10b +size 440 diff --git a/source/parts/detail/c/custom-aluminum-7075-ring-41000---80050-in.json b/source/parts/detail/c/custom-aluminum-7075-ring-41000---80050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..baed0a4f0ba5deb130a8e8d1f2f9a8c5d26e8a09 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-7075-ring-41000---80050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:073b5ea7637ccfbfa5912809051c7d6517b9bd44e06c251a8f82730bb0221f79 +size 440 diff --git a/source/parts/detail/c/custom-aluminum-al-ring-00000---21400-in.json b/source/parts/detail/c/custom-aluminum-al-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a3c60da193376ed8e3d0bdc10aa2e264c6e1e26 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-al-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed9297beee1504eb2ed9b85170f4a205146322099f07c4ec5119d8065540ced +size 436 diff --git a/source/parts/detail/c/custom-aluminum-al-ring-00000---30200-in.json b/source/parts/detail/c/custom-aluminum-al-ring-00000---30200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..877fa77faa420cfa759a4cbf5c37122f8bef9067 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-al-ring-00000---30200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7a76e8a3611a92388d07e5a73f90b67c562879b2fcee471f866c09813b346a2 +size 436 diff --git a/source/parts/detail/c/custom-aluminum-al-ring-00000---40000-in.json b/source/parts/detail/c/custom-aluminum-al-ring-00000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..324d01cebc29ee1609b2f6acf4bcae593a3e37a1 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-al-ring-00000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16d8019df50e51b0cf792e9e05cec135eb626cbc8891742e802031b722edcaf5 +size 436 diff --git a/source/parts/detail/c/custom-aluminum-al-ring-11350---15200-in.json b/source/parts/detail/c/custom-aluminum-al-ring-11350---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4a8cf806166e26eb2eafabb31ac9d5c04ae7b66 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-al-ring-11350---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d809f1e85c748552091a4aee4081873564d088e1fc58464fb53ba2871e278ae +size 436 diff --git a/source/parts/detail/c/custom-aluminum-al-ring-15902---21148-in.json b/source/parts/detail/c/custom-aluminum-al-ring-15902---21148-in.json new file mode 100644 index 0000000000000000000000000000000000000000..945736d4414feffb7159f00ca8e6ab6994ae4421 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-al-ring-15902---21148-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:decc1b5fa12bddc074670629813972bd9ed4878d99ce254bdd98e7b6447ccd49 +size 436 diff --git a/source/parts/detail/c/custom-aluminum-al-ring-21390---21400-in.json b/source/parts/detail/c/custom-aluminum-al-ring-21390---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f9a472ae38ca7c22fc81ad0cdebda6ec37d75e6 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-al-ring-21390---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f59732dc84562a45b18b419fcc38aaa4aac25678142243f5d3ea8640d8a135d +size 436 diff --git a/source/parts/detail/c/custom-aluminum-ring-00000---39000-in.json b/source/parts/detail/c/custom-aluminum-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76ed4f12888360435f960892bed9ce70765786e9 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bbd2c431c114270e8e011cd8355802fa4b37e059e366ad3fca0d7e706212f99 +size 425 diff --git a/source/parts/detail/c/custom-aluminum-ring-40200---60000-in.json b/source/parts/detail/c/custom-aluminum-ring-40200---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..236254cdf67cff10668fd601c2e60285e899db83 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-ring-40200---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630a33ece584d45a0b0d7552b9d243331861034c5d28a49cefeba4e0c95d5c28 +size 425 diff --git a/source/parts/detail/c/custom-aluminum-ring-40200---61795-in.json b/source/parts/detail/c/custom-aluminum-ring-40200---61795-in.json new file mode 100644 index 0000000000000000000000000000000000000000..12d96ff7b778743cb37380de2c9178f55a55ffc3 --- /dev/null +++ b/source/parts/detail/c/custom-aluminum-ring-40200---61795-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f881d9f49b90494d7c06432cc6168c5fc2fbc94395fa6455e613049777c7897 +size 425 diff --git a/source/parts/detail/c/custom-ash-ring-00000---09500-in.json b/source/parts/detail/c/custom-ash-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..25124d99cca9e8b39777c9a4a0e6ff0b1c9b1b49 --- /dev/null +++ b/source/parts/detail/c/custom-ash-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1be223736acd2fbed123384f421f02613b3431aed57cd006c2f41d16ff536ca +size 410 diff --git a/source/parts/detail/c/custom-balsa-ply-ring-11760---20000-in.json b/source/parts/detail/c/custom-balsa-ply-ring-11760---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dcc73d44c2a7f779f18e64d8671002176999a731 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ply-ring-11760---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6337e8498c2c628e928807ab44c8c6ce760638789d91736ae7eebd1cd52ee9 +size 428 diff --git a/source/parts/detail/c/custom-balsa-ply-ring-28000---46150-in.json b/source/parts/detail/c/custom-balsa-ply-ring-28000---46150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..114f0414ae8ccabbc2c144b0a63dc382845cddd8 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ply-ring-28000---46150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6e591df98c6cf4f73de21ea461c5e6dcfc2eba5ca917529d04b6bfdd6c180f +size 428 diff --git a/source/parts/detail/c/custom-balsa-ply-ring-28000---60560-in.json b/source/parts/detail/c/custom-balsa-ply-ring-28000---60560-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c3603c8e840d49f8dd63fbe956093000ff46ea4 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ply-ring-28000---60560-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d4331d66fbe65bf0bab07489b0f694625024cfef1dcde5f52e2352caf37df9 +size 428 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---01250-in.json b/source/parts/detail/c/custom-balsa-ring-00000---01250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c5492146b8b9f22769b902c3c59a16b87630adcb --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---01250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f9377a9c6f76ea5086fe4d3207612d5ad843ac675ca15cc01b6b61927b14c24 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---02100-in.json b/source/parts/detail/c/custom-balsa-ring-00000---02100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c5458b983fc83aba5c612c59392db512a42d8770 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---02100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049d59dcdbadf9c816e09df08dbd9e0d3f1f6503e473ff4f0aa7e3cd297ff79e +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---05000-in.json b/source/parts/detail/c/custom-balsa-ring-00000---05000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f3db2816fd7fa7c2d38744b653f3445b45b7552 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---05000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10bcd8ffc93eb5410597592e72ef223c3fbe22349557b53607f02784e746e990 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---05150-in.json b/source/parts/detail/c/custom-balsa-ring-00000---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6743d8c993bd1414ffaed77e090ec820a9671af --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275dabb2d7333c03978e53ade762edd2d9760b5b8a4f2d78793958e794c6c72f +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---05180-in.json b/source/parts/detail/c/custom-balsa-ring-00000---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de74de1aa7dc472cf638fe0f44131bad8585aeb4 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67de7721d0d49f838fab81c32f081dbef91cd94713a11b7febcf9d042019bae +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---07100-in.json b/source/parts/detail/c/custom-balsa-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27fa886f2d902aa6b7c1e6215d75d8aae089660c --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3e5c9c151952469a42ff8df13b1e469ace6d16d56afcf0603e274826660e2b +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---09375-in.json b/source/parts/detail/c/custom-balsa-ring-00000---09375-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62f3d9fe96580a497bb36b4f3821f8bc55d756b1 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---09375-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3b5abfb54c4f96aa1de6620c09267ec5d131449de770d3ceec2e5c2d7fb2ef9 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---09500-in.json b/source/parts/detail/c/custom-balsa-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c15e90d391687d3e3169957ba6e450175c664af8 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec3efc2140d8e93954ab8c6a8e2134bb6d3cbb4c87a1c7bf90c9d88b21ce90e +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---10000-in.json b/source/parts/detail/c/custom-balsa-ring-00000---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db04551177ca4e16ec90e4413cc5c8fcef3bf810 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849f1eb4a2be5dd930df3283eee53860db1e88fc8e5ad7fdaf5172148405d830 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---11800-in.json b/source/parts/detail/c/custom-balsa-ring-00000---11800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..adf688d65c0521b5f16db9d964bfc75d6a9752a5 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---11800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c6b8520cede0b1f43ee3b9679424c09a3e309f764b165bc14d7bfd3f25c2e78 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---12800-in.json b/source/parts/detail/c/custom-balsa-ring-00000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e0a3b4aa9e034d994754bd00f0c380e4e092cfb --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2106ba63ac1269377c2aab9aa761e17bcfd75d6ed1453f34ffd95115bee310ed +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---12830-in.json b/source/parts/detail/c/custom-balsa-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..17af4dacedf2a32f9510c5d2016bb7366a7bedbd --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66850a75c6748c9171093b6752ce60a022ba91b03fcc737877065ff033515ed8 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---13000-in.json b/source/parts/detail/c/custom-balsa-ring-00000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..feebf89fdb4792766d8ef6bb673226b0b001c5fb --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18582d796fd80822441cc14864ccdd986e391a8bfb0acf8b07d0e785ec3fe7d1 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---13040-in.json b/source/parts/detail/c/custom-balsa-ring-00000---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..633b6a93799db81d372223cdd122b2e60dc0b57e --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce87bf0f36cb7a60ca1313087a62ee73664548489e45270280f135c36c5330e6 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---13320-in.json b/source/parts/detail/c/custom-balsa-ring-00000---13320-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dcc2e4e82d8cdb29fdd2eeadd950c1c422810d94 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---13320-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267e8918c4be724b16cbef0b675b7a442e11368dc0629c219d15013ce567c9ba +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---15900-in.json b/source/parts/detail/c/custom-balsa-ring-00000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c3f972db36642a3b6752ffff9eb7145eb73bbffa --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67645d42b9062bfa7755189210f1b79502281fe9f029a8ad792d318caea6f749 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---15950-in.json b/source/parts/detail/c/custom-balsa-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f19fc34ae33744cdd279f2dc0d1feca7efa8e70e --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8dbd37bdb92b24ba15304dad2e42dabcd8a11b5bdfd4c62804a166306fa0d60 +size 454 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---16000-in.json b/source/parts/detail/c/custom-balsa-ring-00000---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a006c610d5cb40c19c1773291bd625a2df90a3e --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9cfe5de037d182ae223f440e50ddb0b0da3d6f5e9cb7ac8e68683df0e56f84 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---17500-in.json b/source/parts/detail/c/custom-balsa-ring-00000---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7e7859c16a7516fec8582f10befa1e29136d2843 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f370b55d64aebdf31495e1ed414aeaad32d003cfca36d956c6e57eb54f89db64 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---20000-in.json b/source/parts/detail/c/custom-balsa-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6d8094d26595db2a327ea02d959c57426a17b914 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76b06664e74708531008356d337633e1f818513ef7f787dbbca7eb54f8954a5a +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---20276-in.json b/source/parts/detail/c/custom-balsa-ring-00000---20276-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb97c2d5bf7ba562863d6cfd7a5639ea01bd7918 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---20276-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8eb3412ce8c72f33e710d9293f6d75d559c78666cd6e7b43e35a984f1157823 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---21300-in.json b/source/parts/detail/c/custom-balsa-ring-00000---21300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c7d0b12aebd753c840a5bf77b51f90dffbb5b38 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---21300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c132968fccc11684532e1fd8ce0f2098b9a7410e34d40a567e2ae143c6393a +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---21750-in.json b/source/parts/detail/c/custom-balsa-ring-00000---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15635bdfee54343a2b47b5c1bcdaf587b32c580c --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44f10f79c54967f4aa22ae0c16a2efa73f439cf3cdba755c2f30fd9c46eab0a +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---21800-in.json b/source/parts/detail/c/custom-balsa-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77c186105e3dcb58f886cd48a2340f5d69e2f991 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb1a33aede954df5fd1183cb6880dd141ec06eebdc614e1bfc6bc3c58233ec93 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---22200-in.json b/source/parts/detail/c/custom-balsa-ring-00000---22200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48aca201e02e55b6704a1ce9bc219b5c95720e90 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---22200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4b63a972839c1f01416c5babdf0443705df5ab4e749bbfffb181ce762edae5 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---22550-in.json b/source/parts/detail/c/custom-balsa-ring-00000---22550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f746a07966ed923ba35060ecac27e63e4d0ec82 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---22550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8b9f248f28b35b45fd9b8733ff1acf8c75966ade8dc704605e55a1d95dd912 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---25500-in.json b/source/parts/detail/c/custom-balsa-ring-00000---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3808037658d0deed9b1a3e7fe5bec942d9bd07c9 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c3eb0e13e2ccc57f0eeced8fd5ef49354e0fe7702c7111242dd69343e492f0 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---25880-in.json b/source/parts/detail/c/custom-balsa-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e37bc419e8cd0b03c59905f04957fb1fde7e7383 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31d31a6cfc3b9e72b65944739a59333b5d3bb4fe30f5332d6263090ab35068ba +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---25900-in.json b/source/parts/detail/c/custom-balsa-ring-00000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb0c7dbdbed46880daeb51810d8b0ec27c3ded91 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03b5a62c5044ecf5f9c089b190e7e6cffa59e61d249eb33583b6799809e91dd8 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---33940-in.json b/source/parts/detail/c/custom-balsa-ring-00000---33940-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c1a1c855f6c63d9dad8c2a27d20aafb61289117 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---33940-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:276352cbcb6b1529be317df3c2eb0b403f6febdc48c77b3f8c446365e61facfa +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-00000---39000-in.json b/source/parts/detail/c/custom-balsa-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..808417684aa3c9055d09efb30223bd1e0cb51a0e --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a38e5155a9c631f1834b65bd2887cd3461380102194b8d9bcc0f5cfab62a57 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-01875---00010-in.json b/source/parts/detail/c/custom-balsa-ring-01875---00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15fa85ece0bfe3faa48791c53f12659cf3503e61 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-01875---00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:690add90418868d74c458d36e6db9bc4dc4befd6a623d4dd60843f50986e35ec +size 417 diff --git a/source/parts/detail/c/custom-balsa-ring-05440---09500-in.json b/source/parts/detail/c/custom-balsa-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5de754d4f9bd519cfb15660204ed6290925886a2 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688c3ea6ba013e17b37bf87e3c66b30eb78dacb588c2b353c87a418eca84c705 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-05500---07100-in.json b/source/parts/detail/c/custom-balsa-ring-05500---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e12e206457a85f754556da19f22e888919fd2c8 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-05500---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fe5f7d1dfcf574044c742fb70cc69f0ab5239ca8d552aaf42c763e46f20b2d +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-05500---09500-in.json b/source/parts/detail/c/custom-balsa-ring-05500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c251ea6360a994dc85c89f420ec55f7ce8609ec1 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-05500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689b0c2b00a32e9d4d963adf30cb090cc871866895faf338b872450e9d7850d8 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-07360---15950-in.json b/source/parts/detail/c/custom-balsa-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa1b1471c21dad3764b893f674f9458fe8d4cfe9 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d983295242a0bfacfaadccbd9767af880062c18595a82c138053ec4c5983e8e8 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-07360---17200-in.json b/source/parts/detail/c/custom-balsa-ring-07360---17200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1be28258fbc1fc8d1c051f9be0aa76c154fc4da8 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-07360---17200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfca44fbe9d64d72157daba6d5dd8217ae552b6e7ed6b0f2b47e964fe9aa972d +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-07360---21800-in.json b/source/parts/detail/c/custom-balsa-ring-07360---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59acd8d56b4e4c3525e82ef15fd2b4e6c01c8091 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-07360---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ed326179cf1e2c6c42b5cd812b153d404b3b5a05b8dbb750b660aace37cb733 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-07360---25880-in.json b/source/parts/detail/c/custom-balsa-ring-07360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d260056567ce1ba465faaeb2583ccd471e53a1b --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-07360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe35c9126e4e814a6550926db910a0a16b006e1fef8d56f474ff0b6f31486fd2 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-07360---27127-in.json b/source/parts/detail/c/custom-balsa-ring-07360---27127-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67438c60ab8aca8372d5deedfc9ae551b0a2f6fd --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-07360---27127-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14281544ac88009dc906a9b3dbe38410918e353f5707d2b7461291a99920277 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-07360---38377-in.json b/source/parts/detail/c/custom-balsa-ring-07360---38377-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a535adcc426f06fc66115f38f7adebba83122bcf --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-07360---38377-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad465108e61df22db0bb2da708695f0abb7315620987119b4e85035028bc3162 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-07360---38383-in.json b/source/parts/detail/c/custom-balsa-ring-07360---38383-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe601905250dce7ef0d887e71d33dcd921b386ae --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-07360---38383-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ebb32e7056be37d605aa80dc0fc61337f25ccc7c5ac70932c4b0f8300152feb +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-07400---12992-in.json b/source/parts/detail/c/custom-balsa-ring-07400---12992-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b55ae6af3d9abcd3422d743215395957f81ed01 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-07400---12992-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a68b420ef113dade8a792a38332d632717cd59dcf8234e58bbe34300583cb43 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09410---09500-in.json b/source/parts/detail/c/custom-balsa-ring-09410---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db32faff3f0c6ff498b22cdd5419facb7f3dc543 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09410---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd340302bb12889964fdc6511ab27fa3cade68a5a61cf61128f4d298d2cd381 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09449---12500-in.json b/source/parts/detail/c/custom-balsa-ring-09449---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..043278cabdb0496afee271bafb1e9a299504ca3a --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09449---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51bc8468ee859a67b85bf40df6c3139440fc05d80905385744e7e3047e5059f0 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09449---17500-in.json b/source/parts/detail/c/custom-balsa-ring-09449---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d88e230d765a54300b08e084de43e2c4c5be8e3d --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09449---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4c42f754ba87785d7696c3b0d40fd1b36532f065bef51678959640475280c4 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09500---25900-in.json b/source/parts/detail/c/custom-balsa-ring-09500---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53b7c17f5301bea9518088586b4e5fd1d91ae356 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09500---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ed3f173f97c20b4d85c8b6ee71a0274dcfd9386840bcfacaaabe04767d7ef3 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---15950-in.json b/source/parts/detail/c/custom-balsa-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddea063d653697f3618726de4f9d08633331cdc7 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211f4c8717333f7e6c3adeaa1baf6e446e83b44a67c720b660622af0e10ad15d +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---16000-in.json b/source/parts/detail/c/custom-balsa-ring-09760---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f952301078e262c5907b7490cee109cebe61bc7d --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77b480d58cc4f80b8f995b9d697b7a1955aade1ca6a970102fb666b9e9c5320 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---16500-in.json b/source/parts/detail/c/custom-balsa-ring-09760---16500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..381e730cddc1c17abcaac60f57681b51f7b78792 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---16500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:567828361bd763a84b6f2666bd9d715e0b05180891855ee7ad912b52d6b0974f +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---17971-in.json b/source/parts/detail/c/custom-balsa-ring-09760---17971-in.json new file mode 100644 index 0000000000000000000000000000000000000000..465f03de632588a80210ac4ea8659f2a0c1875ea --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---17971-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1547d960f563ed3299ac5345b80927eb0f14707558d1670f050ba0927bdeaec +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---25880-in.json b/source/parts/detail/c/custom-balsa-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c88340b948d1807dfe44aebfab3522319e43d373 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662eb672ba4532b669669ba26212e96b922645b52030a531dccce603ecc66f88 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---25900-in.json b/source/parts/detail/c/custom-balsa-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d7ca1464cfe096dbcda4fa571c3a19de63153ae --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d574c7e31dd907ec9050d4f976dca7656635497c6c0c77735f9b6ff706e260 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---28700-in.json b/source/parts/detail/c/custom-balsa-ring-09760---28700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7a42efe18c76f0d5162449d2d47f8f63702a56e --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---28700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8c6a41997ba6d672ced034981eb8ddb9fc847c862584041df01ed6a422a920 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---30020-in.json b/source/parts/detail/c/custom-balsa-ring-09760---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a281b453b8749a1873abcb086e2d2f7254139c9c --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c5e2229bc1df99f725a1d5a89c18498b7cc0dac89a7d1c904a056b4b34efb8 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---39000-in.json b/source/parts/detail/c/custom-balsa-ring-09760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2ffd7632139c2a803f9c5e1e27b405baaaeed17 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:680b4a38939aa6ef5663dd459485cd7875609fa4c709ec42a9b92805a3b699ce +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09760---60070-in.json b/source/parts/detail/c/custom-balsa-ring-09760---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b995e0065c352e9157ed784c6bb0b359736f6df --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09760---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b46f895977d29e58cda03bc8e53c983c26afac866539d63e19090b29f7a61b4 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-09920---25640-in.json b/source/parts/detail/c/custom-balsa-ring-09920---25640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e48c47e5c34dcf5dea74c9e81e210f88e9bd20e2 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-09920---25640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba1303bd183b063620b0c364cc948ee9ab93d99992e21a7aa235519813059ff +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-10000---15950-in.json b/source/parts/detail/c/custom-balsa-ring-10000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d217ff33dedb83c8fb14b7a0802b53cf35a353a7 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-10000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10d30406676d7c3f3d6808aeae24bcb94dfe052f30b35ee45d828744fcef8b63 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-10000---25600-in.json b/source/parts/detail/c/custom-balsa-ring-10000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1dfbf7e1fbd47bfa024788edf58b590e636dac2d --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-10000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e6f67c3bb7dd248fbe95fe3f04a5c57f26f54e69746c48b04164f98ef5d3891 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-10000---30000-in.json b/source/parts/detail/c/custom-balsa-ring-10000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d63d95b9a5a3657a67976655be1c16873c128d4 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-10000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59fcbc11ee51a9aa041d62d5b68348fdf291c6b5876c0026c526e6fb63e4fe72 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-10400---15950-in.json b/source/parts/detail/c/custom-balsa-ring-10400---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b19ec9e82bfd3ce7fda3bec61dd76d18d5225522 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-10400---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13048780ccc91d448c8b0135152f73f956e2467aa0be97bf75d7c4c050b644ed +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-11417---15950-in.json b/source/parts/detail/c/custom-balsa-ring-11417---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f5ad6beb9dab0f58efcbf4959182b3195817c83 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-11417---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da95e5d6638646a9f64745f58a110f62a719719f69fe8f7a9cb42e8fb071f5c +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-11700---29000-in.json b/source/parts/detail/c/custom-balsa-ring-11700---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d086a86b42f8b6efa132c24b30e3d8477211fa59 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-11700---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c8ffb5270c346d2cdda50fc6e78c434f4c9e6b5d3e7ddcd0b38a8133176485 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-11811---15950-in.json b/source/parts/detail/c/custom-balsa-ring-11811---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2781f849b45568b28a3af783b3768a1de65c373e --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-11811---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab1b930286d39f9898ebd726db406d06334c33942b01ba6beed39c05c2407eef +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-12100---20276-in.json b/source/parts/detail/c/custom-balsa-ring-12100---20276-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afdf276f65c8dcd9d878527e4fb9f00fbe4336bd --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-12100---20276-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45a8698380a7d950f2a6e5eead8d7bac6732d7f155daddc3e5d4bd75bcc6c4e5 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-12100---24360-in.json b/source/parts/detail/c/custom-balsa-ring-12100---24360-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee1ff7aa8153c0ef699139575b05d5e756f633b5 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-12100---24360-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:136804bf9ebb107e7c719a85b2a56c7f40116d0e7041c12228275fd002623f9f +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-12100---70850-in.json b/source/parts/detail/c/custom-balsa-ring-12100---70850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8514c12c87bd092c96a3c4dce309c99eae44e8c --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-12100---70850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa7095002e8efdb58e9759434062a7dfc164bbf73d71d7ebbb70f6d9d06f391b +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-12100---79600-in.json b/source/parts/detail/c/custom-balsa-ring-12100---79600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e860a5c899fa3299689d5ff62d543885483b1b --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-12100---79600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a00927779492b8f4a6564e97300aeacf9b1ce186f5dfc87dd9ff7d29540200 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-12100---79800-in.json b/source/parts/detail/c/custom-balsa-ring-12100---79800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1615d964b571fd1192993fc444c3d71f4db2aa08 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-12100---79800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2a0015367f4efacf3e02a734ff8c6a95a0ab6170e278858e41c6968003ec14 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-12160---12830-in.json b/source/parts/detail/c/custom-balsa-ring-12160---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9013c417067c9b17ae61de2b3696cdb156f7e225 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-12160---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6346cdaa28f123438acd8083070346094a3682da587314bf253d7c4e04b1b6c8 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-12200---25900-in.json b/source/parts/detail/c/custom-balsa-ring-12200---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a93d1a4184b8f9110c60dfd0a2f99abd1dfff75e --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-12200---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62816bc2e6ceaa4f2bdeab07d3c268d322a103a8e16785900c4e7da48ff790e7 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-12689---15748-in.json b/source/parts/detail/c/custom-balsa-ring-12689---15748-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c784c53d51e0a5a138f191a24532702b40e6cca --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-12689---15748-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:784fa2cd12f38d1e226431d3b3f8d48ebbfc0962539a8d30d13bc53ba22c0fee +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-15000---15950-in.json b/source/parts/detail/c/custom-balsa-ring-15000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd589567e99cf65fe5be59bb7c559ba3f796a188 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-15000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65fe6ae8cbb4397ee81852f12082b2062d91ae5eb050acc99636f93d8c45465d +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-16370---25880-in.json b/source/parts/detail/c/custom-balsa-ring-16370---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d89d7d74c0e88c62e821314d60369e5a2a5dcf7 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-16370---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7fa6a2bf839a2c10f33f99fffed2bdb1ce3bb42ed0dd016b1c9954200538a2 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-16370---36700-in.json b/source/parts/detail/c/custom-balsa-ring-16370---36700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9df15e48474f01e4cac5d1c885883906d30f5df7 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-16370---36700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f19c25b0b97e90154a7feb60e06f2779743b56f291b59ec8825c514cccc0b1fc +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-16400---18161-in.json b/source/parts/detail/c/custom-balsa-ring-16400---18161-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c98c3414fdcb10aaf97f8fbaff54591c6bb890af --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-16400---18161-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50fd8d1a43fbafa32ed3866964da48028194a34392ca4753f4fd21b0eac36cc +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-16535---18110-in.json b/source/parts/detail/c/custom-balsa-ring-16535---18110-in.json new file mode 100644 index 0000000000000000000000000000000000000000..373a96d99f74268c0c23fca90f8ed671b177f82c --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-16535---18110-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb9a03c0c39c2dac228e0bd4b2d412fd9212eec3bc3d046e2a1c41619f6a189 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-19300---21800-in.json b/source/parts/detail/c/custom-balsa-ring-19300---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e555bcc9f52c79bee19d136bc9d0dd0279925a91 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-19300---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0251a3ec7ee41b04ac8320c2c70b8da5c6cf84eb153f69aaae328ed4c78bf88a +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-21000---25340-in.json b/source/parts/detail/c/custom-balsa-ring-21000---25340-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c233a2933743b1b147d6f9b354767b11732d2a4 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-21000---25340-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3921271a99abf90d6063269530f6e3b863ce619ad42212ff73b2415e4b317b9 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-21000---25600-in.json b/source/parts/detail/c/custom-balsa-ring-21000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c6ae08b7c3429722d2cc6c331f514730b6b1f860 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-21000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af2618774cef40e3e75bfc7b8c7b4e6bb180f8d3fc0520d1b96ed2b69cac1437 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-26000---37500-in.json b/source/parts/detail/c/custom-balsa-ring-26000---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f275187089046007c48ee2961a9654536bf6c67f --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-26000---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b66218f07b80381c01cd5a693a57fd26b695a9bcb7537394f0d5962cf6ba939 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-26000---38000-in.json b/source/parts/detail/c/custom-balsa-ring-26000---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7fece555ae1977e1b0932065e79eec95c5de765 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-26000---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d8c7e1d0499c1b8315bdb3550eb2ee856fd4861e0b706a95c9af4d69fab8660 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-29000---30000-in.json b/source/parts/detail/c/custom-balsa-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed8a8664e426d788463f2d3a830c1cfc43d057b2 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914f490c953af478d261f8a950fb0e24cba1121c80b33511793269b403e36867 +size 416 diff --git a/source/parts/detail/c/custom-balsa-ring-40000---114100-in.json b/source/parts/detail/c/custom-balsa-ring-40000---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6a29bc62ba267a8d74421ace3fdbde7af2d0e61 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-40000---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ad0c74d5e49281ce3314cbb11ba16958b282ffba8447af7a19379da3f635402 +size 419 diff --git a/source/parts/detail/c/custom-balsa-ring-40000---79800-in.json b/source/parts/detail/c/custom-balsa-ring-40000---79800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ef61393565bf563274eb6544d98053767f2cdd3 --- /dev/null +++ b/source/parts/detail/c/custom-balsa-ring-40000---79800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee24b0ab895e0ba58b2eac94dab52d71261567eb506280243797ce81e9d390f9 +size 416 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---00000-in.json b/source/parts/detail/c/custom-basswood-ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86c93e71ea244081b97a9ba22c5d6b622ad5ead2 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f56d63cff0893ce46ae065fa3cb5ba0143acf48def049fef69f79b225c3d805 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---09500-in.json b/source/parts/detail/c/custom-basswood-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7bc7e2b1f6c505023d83e28b8cbc3429c0dedc3c --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1d6080c62fcb941e99cedcbd52b5ee1e72fb8c16b04be63363df64fbf332ce +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---11400-in.json b/source/parts/detail/c/custom-basswood-ring-00000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bac21c46763375a7dc320f8a6f28779dd1a10769 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766cd7412cd08a07550037b148d066bb1fdfd08c150adcd83f7297f26469b1b5 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---12800-in.json b/source/parts/detail/c/custom-basswood-ring-00000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..850db4505b915e7f034b37d2898f7c062e392638 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973fbaf3396129b609e045a17ce1c8efcf252e73ab5d74291cde40377b450f3e +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---12830-in.json b/source/parts/detail/c/custom-basswood-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b6f8036338f865d55c46ee63b70ee910e55c0de --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee4215742a79db3497de290eb262a193215eb2ef48b141a702201ab4fa7fe2a4 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---15900-in.json b/source/parts/detail/c/custom-basswood-ring-00000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..597f19677fba670f52bdb9629aea121850c085eb --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:852ed01f1a2bf5f019e9963b383d0e7e47fbee3781a65479962a3104ccb2a40d +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---20000-in.json b/source/parts/detail/c/custom-basswood-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c64a5ca12600e80298af3a1fdabee11b93b576b --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc644afb015acf257fa0ebce8a9af8c2bf6e5e5783a9084502f2d9d00c71f76 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---20380-in.json b/source/parts/detail/c/custom-basswood-ring-00000---20380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd50cb0164501f8e4a63320c67466d2de9848dab --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---20380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3801837b0595f714afd842f507878f18ab10f65a8a325a333f04b5736c0f90ed +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---21800-in.json b/source/parts/detail/c/custom-basswood-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb3f650b4fe09e32de577d268f3bbcecbee8b0f4 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1efd2481fc47db4c27692acc91697c2ca6070ee29a5bc06d6ef6885b388d363a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---25880-in.json b/source/parts/detail/c/custom-basswood-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03f3a264411c1e919337881d039f4684c11a805b --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29e918d33fc6282db9fe5cabfc62471fc3f32cd8217898f187dbf5d89210682 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---25900-in.json b/source/parts/detail/c/custom-basswood-ring-00000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cd4089752b43ae39ce7a4c069429a97a129bed4b --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae955e98115fd304e3c6709b3b5b4f12d638ec2826486dfab138423cc6c71b1 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---35776-in.json b/source/parts/detail/c/custom-basswood-ring-00000---35776-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e0c43bfdda0b9925b4294ccedcb973dfac867ba --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---35776-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8bf5fbbf0b2bd8be88cf0a2591a78cfd6a64050abe4c0ecc6b6ec5d9ed663d7 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---38750-in.json b/source/parts/detail/c/custom-basswood-ring-00000---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4240328e34c726f0491d2586dd76d0c6036eb1b --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a59d338f86d8857e5c5d10224bb82e878783f6b9004db93dbe7c072bdba7dd1 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---39000-in.json b/source/parts/detail/c/custom-basswood-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..681ca8fcb0804d299e90d576ef9a639a4a4dfec1 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c5fc1ba0bfcac9f288ecd31bc8bbb9b9d3997e1c55eed6bd76a3fd8000cb9c9 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-00000---53800-in.json b/source/parts/detail/c/custom-basswood-ring-00000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c97b0f9594ab304cec767d44f600e9bc38168272 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-00000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48db6f8f3c9662970f68960ef40101d5ce772aded512c69d3868673cf181feff +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-01250---09500-in.json b/source/parts/detail/c/custom-basswood-ring-01250---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60d98ca941e1774bb8cedb00b08519b53d70319c --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-01250---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b021a6dc424b14921bb930c5cd2ca885c87f7295942c60eae8402f0dbe220f +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-02810---03490-in.json b/source/parts/detail/c/custom-basswood-ring-02810---03490-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e3d2741b87ae7132c193cf14229c0f2251e58cbd --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-02810---03490-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d11d9dc28228d576a038ac81ea52448d67629b21eb1ee40e01cbe3a0ca1156b +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-04593---16149-in.json b/source/parts/detail/c/custom-basswood-ring-04593---16149-in.json new file mode 100644 index 0000000000000000000000000000000000000000..adbfe3c36fc5f9590a1bc80f6235c1a9f56a790d --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-04593---16149-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d7fbd0c34b55d0bfac5613324c5be118c2d2bf7c89605470e302857bc72795c +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-05440---09500-in.json b/source/parts/detail/c/custom-basswood-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0971acd8f18b2ec1ada8690872ed546929687466 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c8e190db17781085f4e3ab195c703d30a5b0ae9a96a631967cb627a793f503 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-05440---12830-in.json b/source/parts/detail/c/custom-basswood-ring-05440---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..791115afb0b2ae71f5ed1872c0b0fa5f7b1f3492 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-05440---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78ca19c227ee9f95db814abdc8b185ef0d846d504d344c1b59476a41a302c642 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-07360---12830-in.json b/source/parts/detail/c/custom-basswood-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37d1eaf59ac4ec6ca18c6a54e2474fc009c81fcb --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09a54d5dbed062e7c496d338ea543eb8cdd0e96b6efe359758593673d35662c2 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-07360---15900-in.json b/source/parts/detail/c/custom-basswood-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e93c1a5f73f0a39d24c49dcafd0e02e5c1f18c3d --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd5a45cbf2ae6c26403a561f9a23a899546f99584262625918c613ec29326af7 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-07360---15950-in.json b/source/parts/detail/c/custom-basswood-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b25937d51246c2c6ad4353d24659b3ff5afbc118 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c7efadffdb7200cdf203a9c5d360160f4ba527a31397c2dbb14b91c75be021 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-07360---25400-in.json b/source/parts/detail/c/custom-basswood-ring-07360---25400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9fd2b695688258514e68fd155e76d502226b853c --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-07360---25400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01bab5b7713d1c593617f8536ca68d04dd29941b4e0d87e61b236f9dddcf10d4 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-07360---25880-in.json b/source/parts/detail/c/custom-basswood-ring-07360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d198b2f56934872e0ea566bd6c8248470f9f06f --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-07360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86cba07caa94c8aa9f829b01f6f289c139d8333c0b6ba142dc25478bfd43a237 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-07500---15950-in.json b/source/parts/detail/c/custom-basswood-ring-07500---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..edd51fd0e22a92078134db6cff3d9387ab9d7be3 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-07500---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e59831a8c7456b46931ca8dce7013771ca68b21965950d23e3074f9d7152974 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-07600---16000-in.json b/source/parts/detail/c/custom-basswood-ring-07600---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f88d93c21fcf7f77ef886f7a536ba6171ae1e5a --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-07600---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0279e689366703e71b8ac0523ca2e4cf16cab45727beff1faf2ff429e2d22044 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-08250---09500-in.json b/source/parts/detail/c/custom-basswood-ring-08250---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35b115c7605553fb330a0b200f12335b1cbc6751 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-08250---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:268bc794f2d98cfa73d22b4484d76624bbce773187375a03fd4ec8fca6d41962 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-08661---09500-in.json b/source/parts/detail/c/custom-basswood-ring-08661---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9328f58d051d60c89f32d457b0c123f963ff6eeb --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-08661---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9b29be6561813e1283fa601bceee24bb5251f910e42476e652b1dacda39d20 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09300---25880-in.json b/source/parts/detail/c/custom-basswood-ring-09300---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..717207a248977dd90ca03239678efc64c9a36082 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09300---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d46858e64b16802266f520fbe83613868325d33b1c1d769957a04e1303ca7ab5 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09400---09500-in.json b/source/parts/detail/c/custom-basswood-ring-09400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d34bf2252149d079f6b026a0c50eb07f214128c --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cadad6ef805f5bdcf4804d481353d2684626e2858a46b74572693e7e8a777086 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09750---36900-in.json b/source/parts/detail/c/custom-basswood-ring-09750---36900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..935252d874aeb762037359c22bb257d99203ba3d --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09750---36900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4fcc2cac379bceeb2f80ee0d9d15b888f2d71ce7fccb10480414972c5fb919a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---12830-in.json b/source/parts/detail/c/custom-basswood-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cae2d33254ca838a77aab6f2e0e293e42545b7fd --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35c2093447c72f6bcba548ed9cc12e30d8feb37199aa352027455e8d7d557961 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---15950-in.json b/source/parts/detail/c/custom-basswood-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2e1a6f74ff8af34eccc5f1344b6906ba1da26499 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82d1246e39cac2cc2b4000c45d76f3de338ae8c4a60b0cb2654c98edde9a9b9d +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---21800-in.json b/source/parts/detail/c/custom-basswood-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5279765f240d2269dbd4e2ef3f22d3292c5a0d47 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1866999e2fca92a646f94d910b6602a31950aba1ecae00f5c6b7d662454d338d +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---25300-in.json b/source/parts/detail/c/custom-basswood-ring-09760---25300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6426027d3e1a01ce7a59948b6b86ca7aa2b7dd4d --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---25300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb4574a4d3c168277e368afa4af9bfbd8eaa8c3754db7a75c88e2bc7450f05a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---25580-in.json b/source/parts/detail/c/custom-basswood-ring-09760---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..821b52d255cf54412d9043683d5071b158cba19b --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95e0fe2928611295db8e245384decea23ec7c02bbb3707f3e0aa8a24df2dfec +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---25600-in.json b/source/parts/detail/c/custom-basswood-ring-09760---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3636cb7adeee79713baae6a9da30a84290f61c7 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4a41901be2605710b3146d1396108a5a2451b4869b7a0a286a98b3fb3eb75b7 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---25880-in.json b/source/parts/detail/c/custom-basswood-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2cbbd375d1e4be405b156538eed2fc5f3d416cb4 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b864ef9f14de8fb51eae4cccc2e43079892224af968f323ff199d74db638405a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---29600-in.json b/source/parts/detail/c/custom-basswood-ring-09760---29600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afedb3390d0463ff6f9bc322cabfb1ca6cab565e --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---29600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb50dbb6525e87ff9f9728a020b524b3d6590a2f0ec016e035421dd7af06360a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---30000-in.json b/source/parts/detail/c/custom-basswood-ring-09760---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85515c103fbf08905c196ac8f33d4029d6d41a5d --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccef8616e6f414d6d5089cc74282a001bb32591326157f001dce450fbb299f47 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---30020-in.json b/source/parts/detail/c/custom-basswood-ring-09760---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a3a7c4394fb2ceeadee8013a3d99ce6c557f9b5 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db61c4ab3ef322abbc76f1dfa23ed41a44f1a49a8157b62c250a4b52a00eee8d +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---30300-in.json b/source/parts/detail/c/custom-basswood-ring-09760---30300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35f75df4c7f8f240de5581b99775a7b6b8e48fd4 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---30300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0daefc58f7a3d4bc6b2cb888c06287cb5964f9a81b13c2d2d2741fb30b0ba0e +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09760---30857-in.json b/source/parts/detail/c/custom-basswood-ring-09760---30857-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a26397cbdc95d23c9cfd579633467f0f8c36edc --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09760---30857-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af98e991cbea9e09b39e3f60d3e382b4f12aa00a99b38b91f975cbe6d1b3d0a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09800---12800-in.json b/source/parts/detail/c/custom-basswood-ring-09800---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5dccd9e4ec9353843f5ae2d247a715763d06433 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09800---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb10e9edb675d501c36860394767729da1a10180b10524cd9b5b9edaa75a952 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-09843---25880-in.json b/source/parts/detail/c/custom-basswood-ring-09843---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..738013e5bb712127f83a8ffc7f8bbd3d3329b767 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-09843---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbcc6932bdc70eda342f7643327f3869a9bfbedd240c3761f4168c37d9abf5cd +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-10000---15250-in.json b/source/parts/detail/c/custom-basswood-ring-10000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa2426f12d1751540bfb1abd8c1491d546f4b4c9 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-10000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9ad9dd21abcd3dba2d9168362f7a5e458f79593e39218d6b841a1da8c6b1412 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-10000---15950-in.json b/source/parts/detail/c/custom-basswood-ring-10000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dcfeb0c9a25e4f22a75e3b0439ac53ac2afc0d6f --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-10000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c726f22b5e6401537ecf632a9eba0dc91ddad658ed3d1c3cc5f122a3c3e291c7 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-10000---25400-in.json b/source/parts/detail/c/custom-basswood-ring-10000---25400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86d1dbd2cbc6d654c472344511b2857a5e18f669 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-10000---25400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26e4d7a036740b8403fa271f8c6474b9c53bb7e11bb091583063a311b5f2ad4a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-10000---39000-in.json b/source/parts/detail/c/custom-basswood-ring-10000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b6aa4cc75a8366108232c3715c64f6508e2b3be --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-10000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97a498e68661a203424dd633d8fe560ab05c7407a79e1a02eb549783f241c26 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-11760---29000-in.json b/source/parts/detail/c/custom-basswood-ring-11760---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7055e553392aa33bf1f3a28d5af0e042dc20dd09 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-11760---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b1501375b7eec9489f3d390cd160885f319a9d5e5012e3cda428fab3c7ceae +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-11760---29921-in.json b/source/parts/detail/c/custom-basswood-ring-11760---29921-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b07a267061a66c0317f02aaff0a7569376411d9 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-11760---29921-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb38051e36446ff1269aeb362d8d4bd1661427e2e14f0763718b21d49724ef83 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-12000---25880-in.json b/source/parts/detail/c/custom-basswood-ring-12000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a20a9bba4e459fd855d982d4041a8de6293842cf --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-12000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bada0fdfdeebf560d91b69329d4dd9c298e42dadc7c6f995c0634b5d7818312f +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-12031---35776-in.json b/source/parts/detail/c/custom-basswood-ring-12031---35776-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41035f2d5497702fe6442c587226692d3da2f262 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-12031---35776-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cce9aa5ef133ec77acbfac315818c6c1e91f033c545b558c680c4e2068e782bc +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-12100---21400-in.json b/source/parts/detail/c/custom-basswood-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e26bbbf243023bf4a37de3bc6ac0362d389802f --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b65b136caee90ba39dd91d182a9def160f3af4507a20377ee7912ac5ca8b732f +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-12100---25880-in.json b/source/parts/detail/c/custom-basswood-ring-12100---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..130b67c1b56451a831e86f11b2ff3df1c2bfb6b8 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-12100---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340b1f44ff0ab394b47aa8edb674517045de808577303819de503c1808c2c13f +size 458 diff --git a/source/parts/detail/c/custom-basswood-ring-12100---28800-in.json b/source/parts/detail/c/custom-basswood-ring-12100---28800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5657404fb2d7b82c6b398b8048cea4e8f2433754 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-12100---28800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bb11225668d445e1ec725724b43275726f6d0d9fd13200290c999a3efb58cf8 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-12100---53800-in.json b/source/parts/detail/c/custom-basswood-ring-12100---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f765b32da423d4bb1692ecb13795e9d5b881f3fc --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-12100---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a4370015a606bd66423ec54e0f8ed0043fbd21f94bee10dfcdde4de48f137e1 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-12500---28800-in.json b/source/parts/detail/c/custom-basswood-ring-12500---28800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bd512b94195500e9d6c80a002638b3a1a2b719d --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-12500---28800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da8a786a55108f515f80fde369bc3a4098b570706a56ccba698070d2ec79c23 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-15000---15200-in.json b/source/parts/detail/c/custom-basswood-ring-15000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2855c5f87ff1dca66a0de39fc4210a3e432c904b --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-15000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e2a8584d8b354c6d6ff1c8fff03fa2c11f78661bf3b6fd233ea386bc42fc65 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-15000---28800-in.json b/source/parts/detail/c/custom-basswood-ring-15000---28800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..635875c54bb692807dfdb4d916238cf6b2653ae2 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-15000---28800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df90865a2c6118c1d451ea35571acc9be8409df7e644b52127f2018d0561212 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-16000---21000-in.json b/source/parts/detail/c/custom-basswood-ring-16000---21000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6b330abe5a05307622a6353fb7659c380352231 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-16000---21000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afcc613a77c98b831a5909cee4b660c59aabf78d2d8dca17e84d8721ae3f776 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-16350---75150-in.json b/source/parts/detail/c/custom-basswood-ring-16350---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..99782ae82b083691a8ecf8b3c604e3233847327d --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-16350---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c73782b7003a016e197158cabcc80840dee2f3b831a58c4bf623c8405b7e1970 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-16402---39000-in.json b/source/parts/detail/c/custom-basswood-ring-16402---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8340e0bd2f884c5c3f16e711be2138dfa4f6dcd7 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-16402---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4efda6fb9a8c841e57434c1e0ab9054c40755b468a17712c4cb187036d352447 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-17500---21800-in.json b/source/parts/detail/c/custom-basswood-ring-17500---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..491c41f070818fcf9a7266ca6ae248b2de26cf52 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-17500---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c798ffcd6f5af4d4ffe54d185ec1f8395b9b1b73d0a67b4d0fedccb95084320a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-17700---27700-in.json b/source/parts/detail/c/custom-basswood-ring-17700---27700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89f9e2b3b548906c42841ec91bc3794f592867d6 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-17700---27700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1ac18d915f5c69171117ad765aac9544663f3bfb5e7355528390e22dca78e3 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-18800---25800-in.json b/source/parts/detail/c/custom-basswood-ring-18800---25800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af4d784f46178e5a3dbec0b1441bd6e06c89ecbe --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-18800---25800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f597927cd3765618bc3854754d01119ff794c4990c87553cc8b46837dbeba07 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-18800---29500-in.json b/source/parts/detail/c/custom-basswood-ring-18800---29500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..552c438ccfc0b2d8f63a67479e758eed074f9dd3 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-18800---29500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104d7dd30221549cb85aea79c7be512858b9f07ae8dd55d1231082338fe76942 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-21600---39000-in.json b/source/parts/detail/c/custom-basswood-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59f962a03484152dd633136362c7ae2c965398fe --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fef577e44437507c0d6171dc6ffe7c2831c8d6248916ed9e1c7c886e593b18e +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-21630---39380-in.json b/source/parts/detail/c/custom-basswood-ring-21630---39380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7eaf088171567f6e1fc59a073d82d663d8973006 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-21630---39380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0a0d8f0423e5ab30b78512c622de43862580f961e0d302bebc3e6bc837668ee +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-22100---39000-in.json b/source/parts/detail/c/custom-basswood-ring-22100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1fc93be02f0e7deadbab2c4d5995d394ba8f39b6 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-22100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde9eff19bc1b3f08fd8542ae7b020a4eead602450960a4e8a0b6739b02e0b6b +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-22580---38750-in.json b/source/parts/detail/c/custom-basswood-ring-22580---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf3cf92794a2ac55b6f8fdb084ebd41b48d4512a --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-22580---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5e3bd46570bdd71e806c6fedf16b8ca0e8282b7a5ce059ca8c2122177b2f6b +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-22760---39000-in.json b/source/parts/detail/c/custom-basswood-ring-22760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef6e5788dedb2382610186e484e9d1ffcdd356b1 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-22760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd10147909f9f2e83cca4e4ab13b4368c3c979a0138f9847af39bc3fbcb10c41 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-26000---39000-in.json b/source/parts/detail/c/custom-basswood-ring-26000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..38fec1a34c3bddca5c52b050ac5c489efd959f9f --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-26000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7100f05cbcc332bb60777cd782d5933cf570631f56588843ae9dd51d5773ff3d +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-30020---39000-in.json b/source/parts/detail/c/custom-basswood-ring-30020---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b757b2a0d5a352f3342c6d9692087029a37d5b1 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-30020---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c297ed4486e646aaaf5f7179febf43bea3490497bfd1d17cc04254f181d83a +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-40000---75150-in.json b/source/parts/detail/c/custom-basswood-ring-40000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0df1413815b70d6b0864368432ddaa2c31ed10f9 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-40000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a643da469775a3a074228876f24a623d2a31ae891a1f4e26b99dcfe95fa12a48 +size 425 diff --git a/source/parts/detail/c/custom-basswood-ring-73000---75150-in.json b/source/parts/detail/c/custom-basswood-ring-73000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb8ef11e41f198805422a7f6a98b1706c4f84de5 --- /dev/null +++ b/source/parts/detail/c/custom-basswood-ring-73000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09b97cbed8d347a78ac80a18899caa13d49ead28cf187708310dc03e0d5b725 +size 425 diff --git a/source/parts/detail/c/custom-birch-plywood-revell-ring-12100---30000-in.json b/source/parts/detail/c/custom-birch-plywood-revell-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b45965b3e380ac39ae40fddb0aaad10ec5fdf8c --- /dev/null +++ b/source/parts/detail/c/custom-birch-plywood-revell-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf0c977d666a9abe088b25ab03b5b56f54f1ae9f0d7221f356914388250890d5 +size 463 diff --git a/source/parts/detail/c/custom-birch-plywood-revell-ring-16440---39000-in.json b/source/parts/detail/c/custom-birch-plywood-revell-ring-16440---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..962473db27d68d6402d3855efea8a8a61e202244 --- /dev/null +++ b/source/parts/detail/c/custom-birch-plywood-revell-ring-16440---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2bde543af148f6f5009efccee53374eef7e7d842d54ffce4944c1a093ac3549 +size 463 diff --git a/source/parts/detail/c/custom-birch-ring-00000---00000-in.json b/source/parts/detail/c/custom-birch-ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a4f794eec23459457a636ef9727187257edce13 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1588ce8acb293e5ffe638972a4e41dc168bd0deff882593dfb3cc3a5dce3b9f6 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---15250-in.json b/source/parts/detail/c/custom-birch-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c8c7142599da01f40644bd1e6e0a845cb925697 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b923602f8c8b3b21c99133604f2d91bbdb796db3351a5e5802cb2fd5e8b22a69 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---15950-in.json b/source/parts/detail/c/custom-birch-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83723bb036463fd3a07c9d22a73a876b5d85fc6c --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeeb5d27e6967c17f87d47c3e41c64cbe514c7ffbf2b44cf1ac97665d2b29d2b +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---25600-in.json b/source/parts/detail/c/custom-birch-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc944b303aea3fda6d6e00339ba6ada2e039f522 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2544ef4a73d4cda7e3ba0072b6febdf651606d5eab9b321ab351fa4205f71d05 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---29000-in.json b/source/parts/detail/c/custom-birch-ring-00000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c63557d5e2464a239c1e67adae6c0054bfa39f93 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a31bae9dc476785655842d1dbd5ee67c345f5370331b040f72e305ac8748701 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---29500-in.json b/source/parts/detail/c/custom-birch-ring-00000---29500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1171f1755f075ab5463dc793bb7fd5c79050283a --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---29500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:036fedc23f2864fc14e4c0d8b487a9498f4690b2486d5acbb5d2e87be806e355 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---30000-in.json b/source/parts/detail/c/custom-birch-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f08ae6f075f4bb776d76e310485598b10ca913fc --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88e21ade2217048cf2e1564f281f273884cb2d2a4c0ab989885805a9a111cdd +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---37400-in.json b/source/parts/detail/c/custom-birch-ring-00000---37400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb7f302d30ea6e879f0d11a1c8a0a5bc0aceec78 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---37400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4a8adddea4f8fc98028e5d81f7d038cddcb967ae3d466c7cd368a7a1553bb6 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---39000-in.json b/source/parts/detail/c/custom-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d900bfc5d220cec7fd3f5d95c81fea7a377c7a90 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b64a87d57fe5011e2af3f52e45bd1ef10ba2e12c315a01d5584b2f984168048 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---39100-in.json b/source/parts/detail/c/custom-birch-ring-00000---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37e7d5cdb50e019c209ef7ccc2f92b7d9b6c29e6 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f01b4278a9007cb3bcd02dae1e7d263e8ba209f436cde7667f129378413e30d +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---58000-in.json b/source/parts/detail/c/custom-birch-ring-00000---58000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b77914c79092eea79a9b109698563e84437863b5 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---58000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:038adc133bdbded65338388e520c32a7d8ce7685bc224718f87dfe3b521cf023 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---59728-in.json b/source/parts/detail/c/custom-birch-ring-00000---59728-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2061f7b905176f6933b8f59b0cdb2e0ceac1e00f --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---59728-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f76bb9a8f33abbae96bb41b74a9b5692265e8adba2b1d150c3985be8e162ef +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---59730-in.json b/source/parts/detail/c/custom-birch-ring-00000---59730-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d9f35698238481c8a68b9aef243bbad3af3121a --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---59730-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c50743cf9809af90e38e17fbbfbd6ed0172b479b46f2cee570bfd77f848566 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---60000-in.json b/source/parts/detail/c/custom-birch-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d8e8c323b1f17e497b84b8f2305944964928809 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510fc1d08af66be4e451b52568ad1cd4a672b03a231aac6677d2a59de8604992 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-00000---64500-in.json b/source/parts/detail/c/custom-birch-ring-00000---64500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a8a2817b093cd598dff4aff7f51fb422cd6c938 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-00000---64500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09e932937ffea20317fbd1460dbecb2a3886673b22813321fafbc77d36056c8 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-03772---05180-in.json b/source/parts/detail/c/custom-birch-ring-03772---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c2900c4d7d2a538948b4eb3704d4446105a21b1 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-03772---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32d6289debd27eaa3c4a1594a11676b8480fef26977a72a0479bf399240b287 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-07360---21800-in.json b/source/parts/detail/c/custom-birch-ring-07360---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c3e0349b0cc10cc5bd7a53762c13a586ad43b18 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-07360---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1f91f0e50af667d78c1621ddabf245f18f52cada8b336a9f2d614a3678dd8c +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-09843---22500-in.json b/source/parts/detail/c/custom-birch-ring-09843---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79f3f0104e1549516518eec99debecdfcf1421f5 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-09843---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c95f8233459afdf96e7992292738cc7812b71ea1ca9c22a05fdc7568552cce8f +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-09843---30000-in.json b/source/parts/detail/c/custom-birch-ring-09843---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e971996e1af56734acb5fc5cd296c14ce43c498 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-09843---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34688d4c5cf5982561a80187acc7b2938691fffe94a9ebc165437dc50fbe1fb3 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-11400---28780-in.json b/source/parts/detail/c/custom-birch-ring-11400---28780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..72680dd567248c4ff77c59e55da018c0def5c5d7 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-11400---28780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3406c76029a4ee04f9603d9c1680885b9b96349edb5afa5de89574e0557d670a +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-11728---29000-in.json b/source/parts/detail/c/custom-birch-ring-11728---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed341f6333cae2d063a908319d60aa823338b881 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-11728---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d7ae1f5f1d006841a67f36312848367652c3897c7e80bc862a6f5b80ca5066 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-12100---21700-in.json b/source/parts/detail/c/custom-birch-ring-12100---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afcb224df8462afd45f391545e2957c40f53bfcb --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-12100---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76083cd576d6b9173bb57b4d9ff99d3bd7bd708a8ef20649bb73c279611daf38 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-12100---23003-in.json b/source/parts/detail/c/custom-birch-ring-12100---23003-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efb9ef9871bbfe9c3aa88c024afa1f04227705a1 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-12100---23003-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327d89dfd2868deba31ac562baea7514b4aa51331f53466c605f2bffc4011e63 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-12205---30000-in.json b/source/parts/detail/c/custom-birch-ring-12205---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7709356d87df453784d145d3f1894eab8b535bc0 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-12205---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61d57fe5c928f0764ee65d427cfe3526e3b56265908bce88265bc4f8f6ab277 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-12500---30020-in.json b/source/parts/detail/c/custom-birch-ring-12500---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6771772a5a3792e858c7ebb9efe6b3c51e77d396 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-12500---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f9428056f362c1a55585e1419b68f9695f9cb5cdfc63eac47e387e8c99d4bc3 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-12690---30020-in.json b/source/parts/detail/c/custom-birch-ring-12690---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1df7d35d0dc268937a1b9980ad75592c42a16849 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-12690---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa4d5b17c555838bb35ea9f55b98a6044967a506d5d65f05ab18b259e920079 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-12740---21750-in.json b/source/parts/detail/c/custom-birch-ring-12740---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26799c6928a972979c443eea7d69347c79dc5a3c --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-12740---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed27953c6213d6e182f5b3b7a3a883c17ecfbe6c9dcaf72fa07c73f3b74c9550 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-15748---30000-in.json b/source/parts/detail/c/custom-birch-ring-15748---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a0744e12b2ba9b51401a4d7096e7b685f118c959 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-15748---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90d009e90d0b0c26f9ddf2e2c37e3dadce5f1209efd0a4095bb9bc438c387d63 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-16300---37331-in.json b/source/parts/detail/c/custom-birch-ring-16300---37331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67670a1fe8ee1dec7503ef6bae5e1649014cec3e --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-16300---37331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b141afc3c243886e202655bca75989899907b76050919191ff6e7f7628f382 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-16350---20280-in.json b/source/parts/detail/c/custom-birch-ring-16350---20280-in.json new file mode 100644 index 0000000000000000000000000000000000000000..25540d4b7da48ee1ffa4cc0289297be9040b18a9 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-16350---20280-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8686feb0545027e067abf4314bad7b6a13a170a77d45b2a2ebec2aa41a96dec +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-16350---75150-in.json b/source/parts/detail/c/custom-birch-ring-16350---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..978cb54dbbd11330f301f9cfcc8b1c7cf237f77c --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-16350---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261ac5280342b02e3b3370c683f1a9630013382937fbb33aded0bb86a36cd123 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-16400---30000-in.json b/source/parts/detail/c/custom-birch-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4964255a5ed90528f578df67e9e81a49d71d1e99 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11c3479781d3aa8a32439ab2236d0b0182bdef457c5053e3cdc093bc129728eb +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-16420---26000-in.json b/source/parts/detail/c/custom-birch-ring-16420---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11d1131f320e533464de3b47ff72c4a6c33b98cc --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-16420---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b8426e3aa317d7f972a5445553350a81b6ca2cc33bf44bc7175ce0c9612626a +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-16420---30000-in.json b/source/parts/detail/c/custom-birch-ring-16420---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..02abdbb56e61e0c043ad1edd9e874063012bd0f0 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-16420---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d70d75eab2612e638729588a4c03b6bc51be55cff9d34193040f96ee3add70c +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-21400---39000-in.json b/source/parts/detail/c/custom-birch-ring-21400---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..04350e0f836a5f960f0cb8b38d676fd1115309b5 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-21400---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c104f4643b66399dbc494fa7bfdb39a1b9b7777e277d373463cfa7cb4b9d3c26 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-21600---55600-in.json b/source/parts/detail/c/custom-birch-ring-21600---55600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0118526be807e6c70751a1f5a3f7adb5e1ef1878 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-21600---55600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd447fcb79ad00f51d8c4207d1811866dbffb2cd73d3342c0dd082b8b38df20 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-22600---29000-in.json b/source/parts/detail/c/custom-birch-ring-22600---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eff76226957ba1a3db1ef8b36ce1f39301c6f374 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-22600---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126308a4022fa07a1d479f671284417046be04742b849d8502575f0480809d5d +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-23780---28780-in.json b/source/parts/detail/c/custom-birch-ring-23780---28780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6cd82da46dac2e5efbb001a5a22178215586cb61 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-23780---28780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d593473e512bc89d8bbde3c46f9d67c208ef7e240cec0a9688d8f70eca731aa +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-25000---26000-in.json b/source/parts/detail/c/custom-birch-ring-25000---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e95223ed57d0af9c000afffd50b66829bc9866fa --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-25000---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b9605a77a16d9b95fce0c6840276b7496389418c951e80242b536ee76f00590 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-30600---39000-in.json b/source/parts/detail/c/custom-birch-ring-30600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06af1c11a3fe844695dd6cc464cb22bb321d06f9 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-30600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84304059f2d9efea3d089c90e219ae0d89ad65d52dfa0d8be96b27502c9e17cb +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-30710---60000-in.json b/source/parts/detail/c/custom-birch-ring-30710---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d962f3df84c5bb370231d1e8cdce837ca1f238c9 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-30710---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:635df312781dbcd10e08102a01a3e5be6dc9006bce7745533153b7e46a14e2a9 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-31000---80000-in.json b/source/parts/detail/c/custom-birch-ring-31000---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5c099d1745616cb24d54857f66d4f27c6ae775f --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-31000---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f77256243d997380c40d215c6911291e0f2a66b9aa3b2b9b754cfb808a662d +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-31240---37640-in.json b/source/parts/detail/c/custom-birch-ring-31240---37640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..24170bfb733008b320871fec1483d4ab8c006271 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-31240---37640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8298896c67ddfea96c46f66cf23013ba644e535226a9c01b0836c01d5071f20 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-31260---39000-in.json b/source/parts/detail/c/custom-birch-ring-31260---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55745e02c660cf1de13654e38f7d3c4e781da83a --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-31260---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f01c2faa64dd2d4bcffdafe00180a0da87d32ec509bcb970845aa1530802f4 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-31260---75122-in.json b/source/parts/detail/c/custom-birch-ring-31260---75122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28fc50b682c664c9e3ed1b35745a12cd19e70584 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-31260---75122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2733caff7016c2ec963dafe432fd15438f1163f828384c9f4132b4b21dc0c6a6 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-40000---58000-in.json b/source/parts/detail/c/custom-birch-ring-40000---58000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60089f42d1f3765fb4219ae61648715ba1e33908 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-40000---58000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6e5bf4375d3d10946698fe112c02859a7c858055f84a0b14d85ce879d8a296b +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-40000---60070-in.json b/source/parts/detail/c/custom-birch-ring-40000---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eee5799b3a43f1f7a67b5e3818865c8f1d0d013d --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-40000---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a853a073c2c1db2c08bc3748190d026c18f4ad30b897526797b8c6870d4fda98 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-40000---76250-in.json b/source/parts/detail/c/custom-birch-ring-40000---76250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a4b3370516bde367854345559eff416efe5c1526 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-40000---76250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e516539a394d89ca9f4fc69b19bcfae042360369c97bb8d7ff913af56c7250e8 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-40240---64500-in.json b/source/parts/detail/c/custom-birch-ring-40240---64500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6256aeb2964d144b3bc8c27ab2f2e1867952a40c --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-40240---64500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dff2c3b7b20c93e6367559cb24320cc19327c1a1f15d57c2d030ff6b35c7b90 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-42500---53800-in.json b/source/parts/detail/c/custom-birch-ring-42500---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e844ac149c33f55724d79805d95f0fda933667b --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-42500---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713c75d23fea1095d4d9b34e8ec3a0ec9dcb7b98efc0548ae36ced053214e3de +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-50000---58000-in.json b/source/parts/detail/c/custom-birch-ring-50000---58000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4468cd2cc49f61f9249d575d9f8176afb24cb58b --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-50000---58000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd27c32b619663391dea4eba22de7bcdb2eaf0d7f551cdf35e931cc29517a564 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-60000---74380-in.json b/source/parts/detail/c/custom-birch-ring-60000---74380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a5ec0655edfed63403befa589d44c3d1362c815 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-60000---74380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841dd77ee0a1147c5c7b565d23fd572b84ff86c6409242d50ef9e9207478d500 +size 416 diff --git a/source/parts/detail/c/custom-birch-ring-61550---178000-in.json b/source/parts/detail/c/custom-birch-ring-61550---178000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c57374aa9cb7a27bb90867a2d4b2d850286cd298 --- /dev/null +++ b/source/parts/detail/c/custom-birch-ring-61550---178000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c50a13a88bee19b51b7bec10ec80687d7d0652484483956d002ce48bf945ba +size 420 diff --git a/source/parts/detail/c/custom-birch-streamer-00140-in.json b/source/parts/detail/c/custom-birch-streamer-00140-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2a7f2790f5707a894f7937242c0d827ceee8e00 --- /dev/null +++ b/source/parts/detail/c/custom-birch-streamer-00140-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3fdb01617b26adc5635570e75dea74b984522cd571d6c8b35a28a4997b2724 +size 370 diff --git a/source/parts/detail/c/custom-blue-tube-ring-29000---30000-in.json b/source/parts/detail/c/custom-blue-tube-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..161ce7e70aecc34a16f5110d238b48ecc8e09de0 --- /dev/null +++ b/source/parts/detail/c/custom-blue-tube-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a1b73e753152d83773b5254e7542ecf07ec37f78195fbf5ceac1f9b54222d2 +size 428 diff --git a/source/parts/detail/c/custom-body-tube-conical-transition.json b/source/parts/detail/c/custom-body-tube-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..26842bef737be04b4b094edf38c6e981b6dd313f --- /dev/null +++ b/source/parts/detail/c/custom-body-tube-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:089941b7223ce088e466ce4d0bfc93ba1931c22c07941b310a9020fcf1b24f65 +size 614 diff --git a/source/parts/detail/c/custom-brass-ring-07360---09500-in.json b/source/parts/detail/c/custom-brass-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74718ace47746aac35b4c7d0b2292375355ad670 --- /dev/null +++ b/source/parts/detail/c/custom-brass-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4818dd8717e54b6bd99022a4675445d0f4dcaf6d29722b96dadf50f1efc57ce3 +size 416 diff --git a/source/parts/detail/c/custom-carbon-fiber-ring-07480---12210-in.json b/source/parts/detail/c/custom-carbon-fiber-ring-07480---12210-in.json new file mode 100644 index 0000000000000000000000000000000000000000..91107379b0e1567d520f2a14baf5b05f887acafa --- /dev/null +++ b/source/parts/detail/c/custom-carbon-fiber-ring-07480---12210-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367f3258cf563adec51afa0f87ebcd9f7cec9b51684ea2576d454ea5b421d6d6 +size 437 diff --git a/source/parts/detail/c/custom-carbon-fiber-ring-09961---11417-in.json b/source/parts/detail/c/custom-carbon-fiber-ring-09961---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4045ed766715a96afde65147fa46a236cdd9b87 --- /dev/null +++ b/source/parts/detail/c/custom-carbon-fiber-ring-09961---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71c9ba365f00f2f00f0312c14adbe73dd2f7561195354654578470303f404b2 +size 437 diff --git a/source/parts/detail/c/custom-carbon-fiber-ring-20200---21500-in.json b/source/parts/detail/c/custom-carbon-fiber-ring-20200---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..846da4896e3085f29761ed665b76fb6c13570038 --- /dev/null +++ b/source/parts/detail/c/custom-carbon-fiber-ring-20200---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406374492a9c4faf40b75e9644df59532d778c61b503c4672f4ab3014f6f23dc +size 437 diff --git a/source/parts/detail/c/custom-carbon-fiber-ring-37530---38800-in.json b/source/parts/detail/c/custom-carbon-fiber-ring-37530---38800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8845a91e58756491eea628ffcb81b48d3357e687 --- /dev/null +++ b/source/parts/detail/c/custom-carbon-fiber-ring-37530---38800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349ad9a68955648cbc2d9e3f1433ccc853c8a1a985be6a89c2ed2ee5e216d0d8 +size 437 diff --git a/source/parts/detail/c/custom-carbon-fiber-ring-38000---39000-in.json b/source/parts/detail/c/custom-carbon-fiber-ring-38000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7451099add7484336ffa0004addad65064f12f76 --- /dev/null +++ b/source/parts/detail/c/custom-carbon-fiber-ring-38000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b75a5b7ef9553e8bf0fc56fcb119571599b27f88e2871376af384e8e5c8a77e +size 437 diff --git a/source/parts/detail/c/custom-carbon-fiber-ring-38300---39000-in.json b/source/parts/detail/c/custom-carbon-fiber-ring-38300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b9d7d6c4e9c981ae5dda44d6590b23886691325 --- /dev/null +++ b/source/parts/detail/c/custom-carbon-fiber-ring-38300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72de342c80c9166e4c1405902101db0b4853d7fa1814fbf5da105f4a8299302a +size 437 diff --git a/source/parts/detail/c/custom-carbon-fiber-ring-40700---48750-in.json b/source/parts/detail/c/custom-carbon-fiber-ring-40700---48750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06334ec9c2dfb0c4235ebc653891c262899243b9 --- /dev/null +++ b/source/parts/detail/c/custom-carbon-fiber-ring-40700---48750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f52817d2b598db5dfd7fdb0944fa24893eab514ae8afd0d8c7cf9260729710cb +size 437 diff --git a/source/parts/detail/c/custom-carbon-fiber-ring-47875---48750-in.json b/source/parts/detail/c/custom-carbon-fiber-ring-47875---48750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0d2b637935f6db7ca5d677081129d0541f3ee4f9 --- /dev/null +++ b/source/parts/detail/c/custom-carbon-fiber-ring-47875---48750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1213fff79313be8dbcf43766a7e64889a42effcf5f4bc6cd21a53b7301ef94d9 +size 437 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---00000-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ce731ad535205ccfa8075395a91fda21861e458 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f68199008f3d109daec6e7a24c3daecde268bfea58e7827ad565db654bf389c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---06875-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---06875-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d67ae69bead8119279154b29bdfd033031bdf930 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---06875-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c3dfe97fa26dbe19009372b550d5ac75f0a9fdd5ba5488da419b5b78ef7d94 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---07060-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---07060-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9dd9fb068223bc82ccc7b51217f6695e2f56888d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---07060-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406115a02f6cb74b6ad49cf06aa2af2d82b51705686eed3d77837b3ede7931f6 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---100000-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---100000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a083a7c21ce72e20731e32894b91d146aab555a6 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---100000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b9e5c89bcbc1ba2f390e56863b322d50afa06dd6c60d86b11c8998db98827a +size 432 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---11600-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---11600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbb86caaf70de2485cd2796663e373f9ce881b65 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---11600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e849f5c95bc3cf451840acf7dcfe310e44590b6d9d25e622015770a7c941c8 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---12830-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..733ab2e146b4f2bb96f47ef86e567c6ca76385f3 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2f7945131ba948e19b90a4bee8cee0f1bc0982945627b74effc9deec5a8651 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---15250-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..099e65000e57122027abac6bec9e55c12da64a4e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f063df08122d054f662abb6d961a90bbc829fc257116a43ccc8a58574751c52 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---15530-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---15530-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2bb087c223c383c8d737049a2bee98bac4fb6caf --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---15530-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521b7ae64f82594a078c5da5b4ff63013d259a36f56827f6603b56e048bec7be +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---15900-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..885538399553425e3a8203c6416350bcf0861872 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e776826078b972a7fd08c2b1057f0eb1839994663531a5f8051f0d5a171d8297 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ede17d6aaad3d8c86c8ca41ac89f8e62232b56e5 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:980552ec7594befc1a033507c091deaf6b3640d2c7b987b9df666f47549aa601 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---17800-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---17800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afda3a3d127e10ad9a20ff0636160ade2da1a943 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---17800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1c65a3b9b349d612450c13b780495754b2d844c8d45d37b18a4471aceb19da +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---21400-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..291e3afb8032f26d45bf41766d2a7f340117ca8a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca39159df9e9532b658f3ddffca7955d6e192256df9907b575b5df378cbf6825 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---21700-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4d95bbaa4f862b5cd993030fb67adc87c4f06b51 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa42db2483d4bd3865dcca893fc6047fec801b63efb4b150a11b7f85a09fd47 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---21800-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e8bc2d01ac3c2376cc306714a9b2d1b66621d85 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afa123ef443602cbd6f5d91ae2a0be8f4786a0ba5876f69364b5f56458ba2f5 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---25000-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9fa4e0b568bdef99efb1b346ea72def93128bf9c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c7581bd9cd6174e354941a6366161416ff59083a29cdc66a4ecd8641cec5e1a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---25880-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..32010e29b24957b7bb3ace3f8663684265b32920 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6aa200a59e9b92003c1905d8376e985107aa726ec4b75cc652d7dbf9212e26 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---29000-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b89b9e9f429a7fa7500823f7e5216d6bbeaa0247 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35cf448d6de1060aacc8ec689b0ae87d763a758b4446db78574aff8e22487a88 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---39000-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e4ffd73db16565a894a833dd9ba844fd410b3c3 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c37df940f36f3b2df875008be256b8c0491cecb44d8462ae367dcffe0e7713c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---39860-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---39860-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9619474c4e22db4fbeca718ffc5230860fc90f56 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---39860-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09f8484d3ba92b962059fa736bc71d826e30b8f7745213aae9b9d2c49eed3e45 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---65000-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---65000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc1c6fed913bdc3fa990aee1c0f213f8bcfd83d6 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---65000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19a2e693ac328a5b04e3ecb4f63b5884e19a396ca4907465bf2a15c6d0e2496a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00000---75150-in.json b/source/parts/detail/c/custom-cardboard-ring-00000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbdad6a7f5df02356dbbfb65e80f3fc5e3a30b7c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c04bc4e1cae01f5434cf2a0a41bd6775a5c153468959b32033e224d4fc771f0 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-00673---05180-in.json b/source/parts/detail/c/custom-cardboard-ring-00673---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f7b0dd6730fd466127c8db56614c794601b0a3b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-00673---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc84ad88221e7b23fc1434cf039edef9f68c2eda1582b289ca3bd507956951d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-01496---02480-in.json b/source/parts/detail/c/custom-cardboard-ring-01496---02480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..047f23ca3d214f623e74ab94cf70bc1fb322c55b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-01496---02480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ff0200217c37ca2e75e7cd11848721700c1d46c60d27193da3800e55b42152 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-01500---02200-in.json b/source/parts/detail/c/custom-cardboard-ring-01500---02200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6037dbe9b53ea609308fb72a128b3c53a254d89d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-01500---02200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c916faf1f77ba2e269beeaa560601ae1f3197a891873fae97c1ce1e3e3c1aa +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-01875---00010-in.json b/source/parts/detail/c/custom-cardboard-ring-01875---00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..579f362e3a13031eb45199dba81b67bb9c358b90 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-01875---00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8d4876f34df7f1c2607d56ba0532b7f5959331acd7085b5652eeb028f23cad4 +size 429 diff --git a/source/parts/detail/c/custom-cardboard-ring-02000---02200-in.json b/source/parts/detail/c/custom-cardboard-ring-02000---02200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..023fe3dd3fc903d2bf8ec909c344195d8e6110f7 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-02000---02200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c9bd441506a2d434d4e387aa47c5b05d68be56f1b7ebbe780fc521ccab92ef +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-02460---07150-in.json b/source/parts/detail/c/custom-cardboard-ring-02460---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..303f179b3337601ecf79a79f7611112e0a376572 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-02460---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5495bf9f5f63e7fe08911def8e1ee41a37a5acdb40da7db9c0a907aaf6996085 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-02480---03622-in.json b/source/parts/detail/c/custom-cardboard-ring-02480---03622-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55c7f9a16f4f8899d10979c8069a8d18621756a7 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-02480---03622-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92067c77f3c6ab415469255a0e56ed8859adbc3f6e7baf2fb24e040c06258403 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-02500---04200-in.json b/source/parts/detail/c/custom-cardboard-ring-02500---04200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..391b4390a877120e52ebeca3593ed6451d0b3207 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-02500---04200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478a9c6c3945971deab1379c1dc6da233493611b1d03588301174de55598a7a3 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-02500---05180-in.json b/source/parts/detail/c/custom-cardboard-ring-02500---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4e179fb9a417a84c0a5eec7e678843063af7e68 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-02500---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8d3c6b445b64067efaf123f8c4c150be7671a94819ad986915a36aea17543d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-02500---07500-in.json b/source/parts/detail/c/custom-cardboard-ring-02500---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..99cc9336c129905606e66bbbda53a532e95449da --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-02500---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41923937ecf5b63f9de2282bb14d4f86d80d33a1c12e34e372363417c5adce2 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-02500---08650-in.json b/source/parts/detail/c/custom-cardboard-ring-02500---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d79daf727843fa9e3715e493d6a0e50f605d1f2 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-02500---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cde9dd78306ed04b5fee8f6e96f7f9c298c9d26e90f89d97e8f4519d0cbcb33f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-02500---09080-in.json b/source/parts/detail/c/custom-cardboard-ring-02500---09080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae43a1906fa4d4fba8af817a51803ba62680d3d2 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-02500---09080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9894b3929a6df780a9ebabb0aaefa08e1d7cf66b8cdc5d418f8282bc44ed9325 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-03000---05000-in.json b/source/parts/detail/c/custom-cardboard-ring-03000---05000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..942aa1e672b75e2bc69743f792d5c8a7e423632a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-03000---05000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcd8c1cf8deb0afa6be3127be813438673c0c98d5a13c64a4d5ec6e1799a766a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-03500---04220-in.json b/source/parts/detail/c/custom-cardboard-ring-03500---04220-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42a9ef8993031bd00cd5d28afb80b6c3b4d74b22 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-03500---04220-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c16ede8860188d39cffb7b841dbdbcd10a7581d260acb9a3e2f645b6ec9025a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-03543---05181-in.json b/source/parts/detail/c/custom-cardboard-ring-03543---05181-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f5c066507534b1335cd446ada11bd7441d1dac33 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-03543---05181-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a840bd5dbe0c7e0a5b9f3b554fd36b0107b6c5cad593f7a16d43461ff80d213 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-03600---05180-in.json b/source/parts/detail/c/custom-cardboard-ring-03600---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cd21b2ed4963e580b646b1a15a4a35caded946ff --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-03600---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ccbd7d3ae5758250eae7222b9e64024b0a3e4c6ed6301527283a2636f986560 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-03750---05180-in.json b/source/parts/detail/c/custom-cardboard-ring-03750---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f9540ec909f957b3e0ca71f87daacec57d36c6e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-03750---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240b374b4694bdba1014b391c7e5a9160ad556a623b5729901885f1945780d97 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-03900---04220-in.json b/source/parts/detail/c/custom-cardboard-ring-03900---04220-in.json new file mode 100644 index 0000000000000000000000000000000000000000..617f12376265f9499fad9825527d776ae2cee0eb --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-03900---04220-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5913123a1133d00e1026257a42b63f4c8df4a4e521c51923a6379534c35dd8b4 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-04000---04220-in.json b/source/parts/detail/c/custom-cardboard-ring-04000---04220-in.json new file mode 100644 index 0000000000000000000000000000000000000000..84a81858547d15b2cd2123bcec208d909541d362 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04000---04220-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c558435c14baa2a8edcfcce93951462ab8e8f203e4968d960285d26714bccc15 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-04000---05150-in.json b/source/parts/detail/c/custom-cardboard-ring-04000---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f1abac7f374baa81117e5ed1124c39c0219a70b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04000---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2607f3742d85c3d529267dd364a8a05a11fb5d39b223c120beb299368b7245cc +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-04000---05180-in.json b/source/parts/detail/c/custom-cardboard-ring-04000---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae8c678a57521d0514d177c1194c29a8fe4f398d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04000---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a1095b2895cd4fef54803363bbd84590a2b7de2df359994f8ddcd449c70be0 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-04460---05593-in.json b/source/parts/detail/c/custom-cardboard-ring-04460---05593-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ce20607d47ee0dfdeb5dbaba2ea74d55fff98ff --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04460---05593-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65c67c632a41c69cd87f82a93df7e1591306251f17cbfb0e1a821f678850d5bd +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-04460---07100-in.json b/source/parts/detail/c/custom-cardboard-ring-04460---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95b8eac7d785cbe8ae8c1f269e6a81f014fa45a8 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04460---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54186c467192f175eaf8f256fc81ba02ddd60749c838ed422b717cfacaf401a6 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-04460---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-04460---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1faac7389d1b0414f9c6c7ce5c688c755436ad05 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04460---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9b9358a6708ff76419276ff8fa8098027b7791cefc54c39ff1653deb618f24 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-04460---11450-in.json b/source/parts/detail/c/custom-cardboard-ring-04460---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29cac3dfe969ec8a412af178eec2b5a65075e1e1 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04460---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:750e544ac1ea52393ea780fe75b0b44cb87a78565d207e1379643ce044f3917d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-04460---16240-in.json b/source/parts/detail/c/custom-cardboard-ring-04460---16240-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0c4910b01aaca93443943704f8891be93189b3f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04460---16240-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b51760d0c9b3ab24c0c65728b2c8384c5e5dd543ea8b275cc973d539d4df215 +size 428 diff --git a/source/parts/detail/custom-cardboard-ring-04510---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-04510---09500-in.json similarity index 100% rename from source/parts/detail/custom-cardboard-ring-04510---09500-in.json rename to source/parts/detail/c/custom-cardboard-ring-04510---09500-in.json diff --git a/source/parts/detail/c/custom-cardboard-ring-04724---05180-in.json b/source/parts/detail/c/custom-cardboard-ring-04724---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ecca5f56698690f83d5290332af81ca49bf7571c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-04724---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a7e3f01919ee506d50a6606a3ba4b0a47e121fb099480a73788e31d82575365 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05000---05200-in.json b/source/parts/detail/c/custom-cardboard-ring-05000---05200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49b0ab4438eed16bdc62bcfa270f4ce46c12217c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05000---05200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5bd42202622a354e743a8c64a4b6b053fc066eec568e87d98fd43d9fa005b1 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05000---07100-in.json b/source/parts/detail/c/custom-cardboard-ring-05000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c10fc51a4c4ac7a275f40b1a1b8c609c2fb5903e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6639ac32536244349dbf31c7687ebcef12325f98a8f03e814921ba892ec00fdb +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05000---13000-in.json b/source/parts/detail/c/custom-cardboard-ring-05000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52a6920900fbc4639da05b458ef11223a52992f4 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a441f0f3a8c569545f259176b3f665c0832236665a8306c491d59819debbac1 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05080---05180-in.json b/source/parts/detail/c/custom-cardboard-ring-05080---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7bb0b866e0b26aaba24ff484ebb2ddbea2dec5e3 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05080---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa29549b93d2b2708e45c20edf4e00b97f38950204d529d21f920af64c343343 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05120---07150-in.json b/source/parts/detail/c/custom-cardboard-ring-05120---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aed3d4391c46a4eeffc5a32941d52d06b9d38140 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05120---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35b094882a45b3da1e1f27bfe222b49c96350d7fcc80abefe921e534181fd14 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05160---07000-in.json b/source/parts/detail/c/custom-cardboard-ring-05160---07000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad2339adc18dbaef2aac029c9836a49da6cf60df --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05160---07000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:346f606bc28d03466d26f5f709d64aad28e07e53f8896dc371d920f7d8388b7f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05400---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-05400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cbf3862e092224e17f080951cb2430c001e87cdc --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82059e84cc134483431084fab4a8653ebae951b05df78a59e0a4eb614a17ba75 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05410---06750-in.json b/source/parts/detail/c/custom-cardboard-ring-05410---06750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e83c8cc4d80609f9ae3207421dc7bc5deb6785d4 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05410---06750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70671f5ef6303327b9a3857e30e1c6e21cde6e1d2ff9b53aaf806480052dd369 +size 476 diff --git a/source/parts/detail/c/custom-cardboard-ring-05430---10000-in.json b/source/parts/detail/c/custom-cardboard-ring-05430---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..422c707f3949039f49ffda5f422d8a5f37f73514 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05430---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca06cb50d444cabab7d0669801565312b40666cd15c761f5b5dc5921d2d47aff +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05440---07100-in.json b/source/parts/detail/c/custom-cardboard-ring-05440---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be7049036d0ef69db19cf8d76d913ad9b97855eb --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05440---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d676e2772a8b7e2f1db5186266f1ab884510ed43f873339c7359a2f93c0550c6 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05440---07150-in.json b/source/parts/detail/c/custom-cardboard-ring-05440---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e4cf30ee37dc59f76fe5d6486479a641e0e52e8 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05440---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe19b8e139dc811ea82de02dda1351e0884bafb854e777558b98588d6d9551ed +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05440---11450-in.json b/source/parts/detail/c/custom-cardboard-ring-05440---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a5c6325c6547d303c31b7e465624ccf9a0f6b5ce --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05440---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:911c955cc7360a495a7d16ff2a7f7b23333d46500d455c2e380d34db6d266652 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05440---15900-in.json b/source/parts/detail/c/custom-cardboard-ring-05440---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6314efaae18c841f1c2b7296486edad8b64dc71e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05440---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec621ed1a4ddfbd9d0aec78ab70c0c6e6993fa249abbd3d1cad1b84f025d7ae +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05440---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-05440---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5dd8decb10aba8f941177642f0b3956df974c03e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05440---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a8a70c016effc83c3dc1e72c4892cb29b3c42f4956dc10d405348cd60d0129d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05512---08339-in.json b/source/parts/detail/c/custom-cardboard-ring-05512---08339-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f9ba387c39ef812e7eebfa07f6f0259973466d9 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05512---08339-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ea9a5435c2f271ad90f99745c6e8cbaad54f0f0132761f1517b734076e5513 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05750---07150-in.json b/source/parts/detail/c/custom-cardboard-ring-05750---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7e5560cebb9242db1439d567f7ee1891411a6e7a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05750---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afcfad104b75d28bf795f87b6b5f672efb276fa4b849b3cd8274c604f94aba28 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-05906---07098-in.json b/source/parts/detail/c/custom-cardboard-ring-05906---07098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..17b91e29a2d7cf348d4e2ff7b6115666b7164a8b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-05906---07098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f190b50a84a5d39ed1b97eba272b04c578cde009fe66bb7bb67d0959584e769 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-06000---07100-in.json b/source/parts/detail/c/custom-cardboard-ring-06000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..954416bd5bc60dd5a80e4acf3c25af9b2b3b82e1 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-06000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f6866769c3b9b3425af240640a1d8378f4b64cee7748f56da217dbc3b1ebbbc +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-06100---07100-in.json b/source/parts/detail/c/custom-cardboard-ring-06100---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9f3293bfdef3ef60e6cb3c8377a1e261c963813 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-06100---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a3a54b981c3febc1b3e372151b88eefd500b2e67c7c431416ff3943562bcd74 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-06400---11400-in.json b/source/parts/detail/c/custom-cardboard-ring-06400---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82c24b9ea82dad134e6ec1ec7d050b67e24c2c96 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-06400---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f90c9efcc061434221c3aa5701f28341e30e19624084ccbd5fa65b96205b82 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-06500---07100-in.json b/source/parts/detail/c/custom-cardboard-ring-06500---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..025c909ff42d1c26f92323c176532e2dfc8a94bb --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-06500---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a45b45f82615ad951daaeb319b4aaf905d4184c84c50ec69331aa48811eb92fa +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-06508---07150-in.json b/source/parts/detail/c/custom-cardboard-ring-06508---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3499aacb3322346c6ca0b082e78ad7c355cbde76 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-06508---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd40992c0383c3e8fefe56d817a5c3ced327351160afc2561277562ef9efa18d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-06750---07020-in.json b/source/parts/detail/c/custom-cardboard-ring-06750---07020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01d44364bc89919289b9b257df71fa97bfdb2011 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-06750---07020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4d12a39d03c88a33330a7a6d1d210dfb380c80a1d63149767da597e9d34efc +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-06988---07087-in.json b/source/parts/detail/c/custom-cardboard-ring-06988---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..88f9c6e9791c39eaac7003f2b96987135476979a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-06988---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd5e2434c1dd9524664b4939aa0dde66379a7f92d7b842ec2139c9db881c133 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07000---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-07000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70387814b81bca92aad4346140223c6673280b8d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bc2d84dc95b91f252b7a9804a60617a209b1dadacc67aeb93aa25fe7523df3e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07047---07087-in.json b/source/parts/detail/c/custom-cardboard-ring-07047---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f66615d687d907d442f28f772afe3f4e699c26d0 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07047---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1380b65e753c22d8b97b126a45fd7a72afe1e423ba0d1de1f959b2f1d469f79 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07087---07087-in.json b/source/parts/detail/c/custom-cardboard-ring-07087---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60b076bffa1742b2db7ec9c54ad916e3e103d3fc --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07087---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11b636c6fd7295185506f45c623d4d613b3dfe968c0b61f0e4f4eee366a4a12 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07087---11417-in.json b/source/parts/detail/c/custom-cardboard-ring-07087---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79bf77b4f5202e6fd841e5a926f0a7ac86ed6cce --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07087---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8f6e4416b44820775c2cab3b94bbc489ad321e39122eac135b6059b629f391 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07087---15902-in.json b/source/parts/detail/c/custom-cardboard-ring-07087---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b67bbf5b8efeb5197d15f4f60e3d2faa2a48522 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07087---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d041df0bd6d84e6d145ae482aa2bde123a78f49b1eb9a1798e48c91f3048606 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07100---19900-in.json b/source/parts/detail/c/custom-cardboard-ring-07100---19900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d7edddd2afd641b6d567b6ce1dbe14b8e1f0ddb --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07100---19900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be3bb5c08abe911ec46e4df75fc008ea2f438f735e683d73c1e9b49fbedfb064 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07134---10000-in.json b/source/parts/detail/c/custom-cardboard-ring-07134---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80972807c0e0eb7a6f6b65955cf26ad40839d6c4 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07134---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9d8960c2b975e9d685fc4884c93c48fffaddb30dbbf197ae78e3be07ff758e1 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07138---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-07138---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60642ce65e099258b964bb8197b3bf922e4975ef --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07138---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:350d42901d11b4fb4209319dc88c1af80b5cc26d04969af396e08ddfee163242 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07358---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-07358---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a08a27b9e6a158dc3aa9643d4abd98319839cd7 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07358---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599281b002567d24f09b12249613a610ef7cf481729c3428c8c069c807edae48 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07358---15949-in.json b/source/parts/detail/c/custom-cardboard-ring-07358---15949-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9cf5d472e561f942eee030965255a82f76211b47 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07358---15949-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69810ed12c9e3869f9fd119d558c4b78a34a3693b2e3fb026460494a39e08dab +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---09380-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---09380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c59b0e834980ffc8ce7106ed8f688a15e5e98d31 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---09380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1be3a98787c20b1fadaf2f834e25777b606126a8946f082cd719cde14b57ca2b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---09440-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..81df4b21b0df8d9d04581a4e23f7198444ccc80d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1337e6e938726e91eb6e2816e78723c1c7a689522184c560f60779abb42d6a90 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---12500-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f005d4b6df0443e16e2e87838a62555af3a6c617 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817ae9d0e4ff91d40c04d59445d9af8fda640a9e27063c2fb1ceab02064818ef +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---12750-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---12750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e7483fddbf67ce1458aaf2cd906d7f7153c2d39e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---12750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9dace03e52a7ffaf19d7d98c78bdfb568a592bef97986f17c08afdbcb08e79 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---12830-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..acfe908b0405aaa592d48ed46ed20d2e76a24648 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb81dcd05d432860467dbcacba0745937f016605d5db120094d25cf7d458f5e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---13040-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2203103361b181e513cdab269834499415bd392e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83edb7a7ba5785ee286e26b5ca1b27a9e87e1bfbc31e3dc063e6eae045a66409 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---13380-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c9dfb62d2d266cd8034dddc4a61712178148b1a6 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0e5280ffa5d35b946cef2c5ab3543da61412eba90395cd4ceaee713c6f9a51 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---15900-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbbf9adc89055228a27337aa1cd342424144f0ad --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c7511b45b3382ace044a2a1a636ab2bde8a824ecdfe92c267d1c97f2cce84b9 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..383f1f5bf3851d786009c7d9b8dc93572018fd8a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf51d269d6731862a13b312d203f204960365c3e314faf6bda70b9b666b3643 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---20000-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..528434572ff2ea58047498d74a48b45a826a3d10 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5c8c676e9e16d5660690414863055f90b390824cad2f4a393b61bf0954d7c3 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---21800-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6fb6a6d67f736830e4db352605fcbbff699488a7 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49634dfa71b9617b4a3de9818da9c6c474684bbaa0fe64d3fc9a052507e92ae4 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07360---25880-in.json b/source/parts/detail/c/custom-cardboard-ring-07360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e59de46d3a2c53c52ac05c64335cf127433166e4 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c4d39b3ac468ab11a32d30ab42ec14fde1c0cc5c60f1b927ee8f62015e338d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07390---09480-in.json b/source/parts/detail/c/custom-cardboard-ring-07390---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f751d761f1c1290f57ce2a60d30a90cad870c7f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07390---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ffcaf001dc5171277825900dbcbbed21017eb1ce5cb5d258297586503b5ce7f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07400---07600-in.json b/source/parts/detail/c/custom-cardboard-ring-07400---07600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e8ecbdf4babd1839123b9f6006540f0216a304a5 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07400---07600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6273234951df46dc695204e82bcea5a9cbbf08f69c168a0bdee74449a4d329c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07400---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-07400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..68c31decc4bac3dd54aeb78e3612237160a36876 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf66ed7a7244ca9c560010463037ca113abafab832978e255f11672639082d6 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07400---13041-in.json b/source/parts/detail/c/custom-cardboard-ring-07400---13041-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9ef99bd629c19648fd6f3d4250602f7974191ae --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07400---13041-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d60e6a5ab5c142149ce85e31a2e14c619ae4c99ffc06e6f37710adcd745d061 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07400---15900-in.json b/source/parts/detail/c/custom-cardboard-ring-07400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..68eb5cb2adb11dbc08c394753ea4d5e190b5701b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3211d27fbf347915dfa79224b32606049afdb3f4ee4f0e6cf4e142f1fc2b9870 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07480---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-07480---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cfed085532855c94e94db4e1e096db4dfe6790c5 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07480---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14229d5fa99fb0c4ca2e3475acc6553cb120e8d28fca0ceda8c3aa96c376c9d7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07500---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-07500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b11d2d49ef27b47eb853c8b29586f1e44a63c01 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71752c610239df66192adb02244caa66f51d3b553c02b70eb09f0887c405145c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07500---15300-in.json b/source/parts/detail/c/custom-cardboard-ring-07500---15300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..137c042170c0d4ed8b64591a5cb6d1204f759099 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07500---15300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f91f13f5c36e271a449301a43fc8c3e31e297831571ec4b9de88d4c054dd70 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07510---13400-in.json b/source/parts/detail/c/custom-cardboard-ring-07510---13400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56ff9c28081f2e439956a509359d040472cd0025 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07510---13400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fda387aa1e2d60d38f031e52d86be6dd3c0fb06fbd5f8f4ebfacf90d4d63d70 +size 467 diff --git a/source/parts/detail/c/custom-cardboard-ring-07590---07990-in.json b/source/parts/detail/c/custom-cardboard-ring-07590---07990-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7fb54e98729265fa3ba9df8986a16914e3267ea6 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07590---07990-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4924723546d71a397f73f653a8aae6cacc806fa4d0b495c028b973df5f417a77 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07590---08650-in.json b/source/parts/detail/c/custom-cardboard-ring-07590---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f126888d726a36c9289050a02db9c3ea6039eb7 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07590---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef74ca8ab01d24cce5c7aef8b7411a5e2e8cd7144f03d5dcccd36d4ac0f607cb +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07590---11300-in.json b/source/parts/detail/c/custom-cardboard-ring-07590---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..71b6e90d0d2cc104da83fadf55c0a1f463efdbaf --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07590---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c3d45cb1f3777417ac2a2044a1d78c758eb9bfbfd01294973de31d2857e4e3d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07590---12500-in.json b/source/parts/detail/c/custom-cardboard-ring-07590---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90b89ad69d8147f74fe132df1c7e1da0e12a2424 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07590---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9792a681126a582a4f1c4c307b91e508b9e1984cb9d63da4fbea9bc88addc937 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07590---13000-in.json b/source/parts/detail/c/custom-cardboard-ring-07590---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09092463cbaef2b5eb64655296040949c17157b3 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07590---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326af80c0993225b8a7b765910a828e480edf3d13b8b170d347a685200f7e965 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07590---16000-in.json b/source/parts/detail/c/custom-cardboard-ring-07590---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..def7b0e0cc3bccf48117744591e771ce5c86b94d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07590---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12656b829ef83b188bf9febd602d4210719f5179c6c90968b97ddabaf01812d8 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07620---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-07620---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94d8da4aa2b7c750a6fcecd8078be8050c59d643 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07620---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eec5cde9ed7b9f059231ba870184f2064bbc4a6a4fb88b4dae4f70d8dec1fde +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07870---08600-in.json b/source/parts/detail/c/custom-cardboard-ring-07870---08600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5cb6a19521f9c2e58e06ad552c54451fa983f638 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07870---08600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b987ff565f5b43c2e105fb591b6cda58c3f8ab17c017cb03175f216b2016fa +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07870---13000-in.json b/source/parts/detail/c/custom-cardboard-ring-07870---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..13145e7c21df731fc6afe8bacf92846d78d47f35 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07870---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f514d0e7eeafbdeab47b4bdf3e049f87aa2a701aba5e259eda17a09a27511ef7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07870---13380-in.json b/source/parts/detail/c/custom-cardboard-ring-07870---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f712f8c62bd259f4634e6576bc774d0d37f919d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07870---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88ef5ab6a26095b5312f3a63452696dc5c7cb871cb5ad7369e521bb74d495b7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07874---11450-in.json b/source/parts/detail/c/custom-cardboard-ring-07874---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca6b1ffeaa72be9abdc21f314c58a078801d5b76 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07874---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7af308a84811461c4b7963f50121de123a2ab02da25e0f35ef212f41f46c26 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-07874---20276-in.json b/source/parts/detail/c/custom-cardboard-ring-07874---20276-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae431de6717c22dcb1695aef7a0db03e037379fe --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-07874---20276-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b0ebc68eba2bd42be7194bdefe127e8997e7c065d7dd5bea64a6b419b9b4301 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-08000---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-08000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6703779e052cefaaef1617dd6331c5f68eac7797 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-08000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7010354d528dee12097d108ebb0ce4c7446282fb4c2ad32bb6e3430394ee9f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-08350---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-08350---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c646e988f20530f240ff1a7e0325ab942f4106d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-08350---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adbf3e6476bd82a9f7228c85cf81c500a797284691e28399f9c31c77da4d84b8 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-08620---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-08620---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da6f46d1e028d8d3f62c81389c12090e15c4404a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-08620---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2ea0a7ea1f73243d347bdcc681724f3eb09b20e01a8c1a76c058e034335bcfc +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-08661---09449-in.json b/source/parts/detail/c/custom-cardboard-ring-08661---09449-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4bc0cabc56bba11bd078d1ab15d63c59b3baf568 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-08661---09449-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fab5e014e493497f1ca7f4a5c29506e9dd8d028c22434a4c297b7714c6063ee +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-08750---09063-in.json b/source/parts/detail/c/custom-cardboard-ring-08750---09063-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75757f0f6a526b3149f4c4c900dd2562c7675966 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-08750---09063-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3179203adc6468296d637b2d9f22228cd7d3b63da75e04f820c47db7adfde6 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-08750---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-08750---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6377c5304f2899c99b4b96d876538c6fa0567bb --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-08750---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df76e36ef097b4a45d9bbf169a91fb24867fb3cf4dd9e64711d8396178332fba +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-08900---11000-in.json b/source/parts/detail/c/custom-cardboard-ring-08900---11000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8822f521f440242a8fb83dcdd579e821575d913 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-08900---11000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ae775093a94e4fe6e77768eff44dc4837b1bc8996e88f64f27192974634f2c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09000---09440-in.json b/source/parts/detail/c/custom-cardboard-ring-09000---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..24ed128f389ceeb66bbcf2e2256854da89877320 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09000---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce8dbb601427561472c53ea37cecb029c5dcc8ecb1ad08e120378b7fc540a3e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09000---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-09000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b0373a50f4bfd2923d58b46df80cbca319235b8c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bd39fd46372f0c666bcd67d8af8d6be655cf5eb87db08b17b0ca8b05342e79e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09000---11370-in.json b/source/parts/detail/c/custom-cardboard-ring-09000---11370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de6701692dbbc26113dbeab0fe7b6583fde88930 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09000---11370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ec8cea242d4687a378d20fa90c1521543978880a68786e7bca32cac17b65af +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09080---16250-in.json b/source/parts/detail/c/custom-cardboard-ring-09080---16250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cde89181968eb332fef0333cf54dda6fac253989 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09080---16250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c395b832271f0c1059e38a5b281634830e5b9ed0062de81040981933f3e3bc2f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09080---21250-in.json b/source/parts/detail/c/custom-cardboard-ring-09080---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9864279d89fb4e60f9bf75a6aba7f61627cfde27 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09080---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ccb3bb70054aba0bd6d85cf02d967ed67ad5e49197fcb417e559992cba2a69 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09080---28750-in.json b/source/parts/detail/c/custom-cardboard-ring-09080---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d4095fc4519931f36f1edd617770844e78160c5 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09080---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:391ddb5ed18b4e896d3a838487443fc08c575a3f9cf2d6f9989a2c06e9c93da4 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09080---37500-in.json b/source/parts/detail/c/custom-cardboard-ring-09080---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..307b269a9ab9ec0195e15c515be7c40ea08899c9 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09080---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7adaac76a9c2e418fe5aefec0e0f8063242645c2bf685edb59f419915199ebc1 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09180---09640-in.json b/source/parts/detail/c/custom-cardboard-ring-09180---09640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f92e6f2e24d098bdad3cddd593b0617f68e0793e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09180---09640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c926f927cbdc29fff304daf01053af4c843a33800f1388dca958b0b87ab98e2 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09449---15960-in.json b/source/parts/detail/c/custom-cardboard-ring-09449---15960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f65d3cc31cbe0fa88e28b587589bd9482e83ecd --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09449---15960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd35838ba378dded806fe41e3df3bf2902bca005481eaabe90e7aa9d849aa341 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09500---09500-in.json b/source/parts/detail/c/custom-cardboard-ring-09500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0aa1165d3e9601b6635c45dfe6ed4117f6b15735 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7940328d77ab5a484ab771587ae7c8fa5e0d7b0eb39d3886c8c7c9c94b962c7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09500---13000-in.json b/source/parts/detail/c/custom-cardboard-ring-09500---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54b61fac4fffeb752a556d483313b7d64c16548d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09500---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17a5d60afe04b6965d09e4d5da589731ea30a0819e47c9d77ef599b64e228a2 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09500---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-09500---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e72a8e963340a9cf7fbd319abf41e92ecfc51ff --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09500---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b94c0df36c07d837d7623d7a68b1fc42fbbf9214a904bc90a1a8cbf47aa971d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09567---11551-in.json b/source/parts/detail/c/custom-cardboard-ring-09567---11551-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9cc7f81ecb2daa32b615c06e5e89bf9fe94a4d75 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09567---11551-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a63569de653a2bd949d428688a788badd5a36b845ac18d3fc2e265731cad8d9 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09700---12500-in.json b/source/parts/detail/c/custom-cardboard-ring-09700---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..592ae12289eb322dd2d5356c352f1bfc004703b3 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09700---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886924263b79ee823b2bdaf6538834070d5217f93ec442661697da6a04f3e054 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---09970-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---09970-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c96f74ed68b5d5e984ce5f2b2d8046729b0c9145 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---09970-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e855c4424725e6169152f1a175a1ea686aec337e7486646004f32049fb21c7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---11024-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---11024-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b84ba4cca2ff3e09f1ae8a6a24aa23a48686d72 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---11024-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a26df055ba2dd1394725c57bb3634083b7a7b27aa6cf50fc04fac0ee437ec18 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---11400-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42117d2a7c2031faaf8c833a779c91ac7a97206d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea70d92f4eaf4cb3d84580be6cb50b42167109f9aaf7911ce1f9fa2b85d1edf +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---11450-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..944eacb3e41eec0be5eb40a1e9410ed1b0b8d33f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e9ec4f4e707c243184a90c11686f70a633b25b776770bd85da5c37cdb3cf484 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---11635-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---11635-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c883c3a2267847b46ceda23e26dbe3d657c0a67 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---11635-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588fe531660fbc1f37bc719165de35b78c534cb6740e1f16bb28db2817cd09c2 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---11760-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---11760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..406f5cdda423e63d53306c43bfb44928b582b94f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---11760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35cbb6e4b80f5fd7712c7072d6bdc774aae574e68dc5b6f5a268c99dcfa5b0ba +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---12500-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cd7b3a7293d5b295ba18e80dff2fd31d48020f4a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f5d325576b03e53cfbfe13fd849302901699b3becabeb9353b2605b7e790af0 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---12800-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52a68f29be9f190c7addaff11bcdb9e66074fb48 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dece757e2e2472df27428b752c7e6e9473234711b888fb1ab48cf161b7959b6 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---12830-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1065e26ea3c209f9405bed4e302ec43896d4a32 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac66439503098a683fc3b86f57a60a8547ca2c596c6f6aed537d91a37e45c58 +size 469 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---13040-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6aecc357fbb5fd13b592d3b54e45bfa77ebd6e89 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2dbe7ab1e1b61fbd58cbd8eeb075463032b59ecdf2a3f81970d54f778892a9b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---14980-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---14980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6ccd1e96ebff76d1fbe8a907d4fab422c6f3c41 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---14980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63421c4212fd849c8e7a4f6642d678df790f93875d1609ca23736077adc09abf +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---15250-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f4085f578ade162db1c96ebe0e7a5ce46fdca113 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c990d9d661563cf2d52a6a21d5298d63596fdd42cc7f1db4652b90d3de184e2a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---15780-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---15780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35922ac90adb9f238f57fed23655b0a5d983d4e9 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---15780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f12f98347f79e71f30bdfa9d660354d9d5a6fdcf6c3fc30979780fdced4934 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---15850-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---15850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1dcbe5f20584e7b776950eafcaa9615828545007 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---15850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969e374e8b8cd3852852d796e4245d43a62f0bfdeafd8a4896b451603386884b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---15900-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10ad0d1843b010ea16b9c9ee6d7294d804a912d0 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58221b3da897325fcb08712355bef480a00079f065879af3ca2623671061abcb +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85b424edec715addffe34e2a2d922ed199f34116 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9e3810119fc8213d44924c2cf34c242c176c94110ecd240c7ea3e94a4f3387 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---16000-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fcced73c29f19257b026b656d4eea2efe68a100c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a8e88d03fe0654b5c919b61ca769d05d710bc3db97d599a9c992fc5401ca58 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---18000-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4328c51c2cdcf134e1ee9b104bb1f133b18b1c20 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3dbe5a141877f7d671a9f24dfc21956e4eaa313481e3fcf6d9fc39be0990e7d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---20000-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6adca520665126bb967ded14d28a329aeab7cd54 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea0b6d08e7ded0433b69dec6c55300a0021e9d0466848b07971ada07958643d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---21250-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39437e8deb03c7c18f526122ec94acbbc979cb4c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3fd2fc978bd3f5066ad7d051a9af6b01ce19ae6ada7fdf3044dcdf9888cbf1 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---21800-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e340bcd480d669c48f743152d8717025027bed2a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c68b650698ecdc36a6d32c4046e1b47c555190653fad91f1422c270d67910905 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---25500-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b7d9b9878c72fc11a4617f4c58aa579b20a8afa0 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b47c441262b4c5840b67049313ab797c35498fdcf10469c96f3955d781367dc3 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---25550-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e76f89aed3fbdc1e16e70e618c915672079104a1 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd18904e7a2baf55285b670e756dc7e3ad6003c0a6129cbae472b23896c50099 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---25580-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..370acffa9d505dec11c52027e30b9760298e79f9 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d2503b147837cda0f02a15087614a275517d7952b98e7887dbdb8bb96e60621 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---25640-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---25640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7034f4eb35f3a494da37a5f0e660d6701f1f8c39 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---25640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d90eb5b85ecf8f2a2a3cb3aadb47efe7f92891575378656f21946262563e1f24 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---25880-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78de7af0c1919798b3203b72ab1ea8c79345faf3 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed82a301692fa6cec0111819d5422e3db4779df85e0190274680bd62c2c7fee +size 469 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---25900-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b92c41d2c70995bf80934192cbe67db9938925b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31b2f23c4b9e5e6e465d4350d0d2e1e5f97f18b490aba98d30f5846b57ebcb54 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09760---29000-in.json b/source/parts/detail/c/custom-cardboard-ring-09760---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b0c838e214dc94db34125eed69dfb592f2e727b1 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09760---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba91deabf8e32162ff36829721a6dca489e5858335016e2d6b13eb7b05ed42b7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09799---15949-in.json b/source/parts/detail/c/custom-cardboard-ring-09799---15949-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77e2d94fccc17fd641d811315424357a0817f47d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09799---15949-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7524ebfbbb6fe54e44054dbb09993790e65409c3eadcd1e014df3f2f65d8e0c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09800---10000-in.json b/source/parts/detail/c/custom-cardboard-ring-09800---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..929dd70b2e99fc88558b14e5ce552df7f26d076e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09800---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cab1a21acd980a78abe45e60902bf30b576b252fa7b0f782782f79398d539854 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09800---10300-in.json b/source/parts/detail/c/custom-cardboard-ring-09800---10300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb0a9848ba70fe7daa9674690edde23118b16452 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09800---10300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c55dd20368a60ae07516ad6ba9d64af0d37d9046c629e0fdd1a35202992b27 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09800---12800-in.json b/source/parts/detail/c/custom-cardboard-ring-09800---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f490f9f4f36de15f38e8132cf561e46d6178eb68 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09800---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9153cd5b9cd9af915fd77873790a5d85d204b37d03468d69cbbdf2c19c43b3ca +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09800---15789-in.json b/source/parts/detail/c/custom-cardboard-ring-09800---15789-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6876fad497644b4715a07da2e60e42fa74368426 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09800---15789-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5b1ef2535c30290506e9e3092b9efd95ba86ee04b4f514d63dbbe3b894f1b8 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09800---15900-in.json b/source/parts/detail/c/custom-cardboard-ring-09800---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..775ad18ac675249d7cb2f27b0ebb93d18319c0b0 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09800---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16601a3eb97203565b7b2f70d6a28cd63fd164d197e3f5b9408d66dde760ae1e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09800---18000-in.json b/source/parts/detail/c/custom-cardboard-ring-09800---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee684c3c4a98ac45c9a354ae2c6e7a81eb62811a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09800---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df282303bb653afd22c9495a64334f057c74c8788cc93587be4ce84e04895bc3 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09820---25220-in.json b/source/parts/detail/c/custom-cardboard-ring-09820---25220-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37b209fdfec05f95930b2c3d479cc9309f7f5f8f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09820---25220-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d17540f229faf9059c5ea9645449c1d77359d4e903a23d731a9052a7001aef4 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09840---09640-in.json b/source/parts/detail/c/custom-cardboard-ring-09840---09640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f90a8808c359382deddde4539c14c73cceca45db --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09840---09640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d7bc614e7969e8fa7755037cc66741cf8c0ae1fff71f5bf968e98936f2e46e +size 429 diff --git a/source/parts/detail/c/custom-cardboard-ring-09843---25900-in.json b/source/parts/detail/c/custom-cardboard-ring-09843---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8008338e5cfd7209052acf60f730431e69b497bf --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09843---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57312f2a2a377e890a74e661134629e13cef20a77caf7d70818c20b7529c8cd0 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09843---31890-in.json b/source/parts/detail/c/custom-cardboard-ring-09843---31890-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cffcd964ae6e7adaf55595279ea3e009662f806d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09843---31890-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8da260661c7f85d99b5d2643bf32b9c9d1befc57d4fb1eb6c5c5cd90eec25eb +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09880---11400-in.json b/source/parts/detail/c/custom-cardboard-ring-09880---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..51afcf4dc052c7c12776f66f6f0f4dc7f1e8f714 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09880---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c757d7df735f8caeaaca1adae4ca5fbdb5ca88ca939da929b15987accf0938c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09900---39000-in.json b/source/parts/detail/c/custom-cardboard-ring-09900---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1aecb6210ac20287e7e49760e32638fa325c30e1 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09900---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2219f87b3cdb4e1b09e5a715f93f65ce8512c092f23da8f233e088943bc14f1 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-09920---25640-in.json b/source/parts/detail/c/custom-cardboard-ring-09920---25640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36add342b4819d97a4878c6cd6e075f3fb084839 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-09920---25640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf25422d865dd78d7f6361c602231cb694378cde909fc0f7f6889a5b6f876dd +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---11000-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---11000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0ba6183d05e2da5c771e99fd99b74827c2b47e2 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---11000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a136eb2599c789e6fb3a207118cbedbe33e8f45156b6bd3d56a927b3a6da65ee +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---12800-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e1b1f400d3834b845fe9bafabd260d5d94f3ed9 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd0a7592708151a979d171b5c7bfab9a2f3da22503ea542260f3902a9764e131 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---13000-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..853b799d1412fbf0e25775670ffd88ec2b438e9c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6a9ae34c928033eaa93da780b21f639c0744e84ad7061dd060806bd35835af +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---13380-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ad9962685f10ada01454b3e4e69d1c0d15cff61 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0343b65d313663edf30d7e3169437c57be919f8883ffc638549a912356c8e39c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00add1be7af7395da9091dfb141acd2ac79825da --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7379b2bbfef209ce93f505255c42b189afa12415dedf4dd67727e351c9905dcb +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---17000-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---17000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ebadd7f119f35b1c2e03962f64885ebbb5e8cb4f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---17000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0f977a6674dabf8b1d6a51f57866d37008dd311cc9d95db77840bb00e23551 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---21800-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66ab73f194445fd406fa524414748c9da32824e9 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50bc684138e8a2945e716f292cb93cb50813c4d4c9dd331dcd844c4a9b6c1fa9 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---25480-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---25480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b0f0d497349386a541134a39d5a4ef4eec31dc4 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---25480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b3bc72906a736ba00feccb9165d02c367eba0a86a47a64f2e6463121e4ce32b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---25880-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9746423b69b6576902f45dece7e3566d938489cc --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:566129e652928582cd2ed6a2536ff50b0ff1e8fefd38b871f9dcdb2b229ae683 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---29000-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..223ae1bf2664a4cf4d155e61680975a4a4ef905e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3565ab40cbc5f3de3dbe3511d45747a96934b20c7f9cd5c4925334f4a657fe +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10000---39860-in.json b/source/parts/detail/c/custom-cardboard-ring-10000---39860-in.json new file mode 100644 index 0000000000000000000000000000000000000000..43b5e8c650dbfdaec89e84c065448459c4d1f70f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10000---39860-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b68812754fbb5c96d3c70e448b918e45900b11ff58b5b334760f268d55d30e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10070---11320-in.json b/source/parts/detail/c/custom-cardboard-ring-10070---11320-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8ea213e314332cd1bafbfb6937aafea7f3d4c02 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10070---11320-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5c6acdd97aa62ab56c7d3db09aa555af2049a53477c44d67e8093146ccc06f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10300---16250-in.json b/source/parts/detail/c/custom-cardboard-ring-10300---16250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37b6772c8911160e1fce019287662e604789b0a5 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10300---16250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae89c22faa0c98091fa0b2e20ec83ccdb4446fadbc8b5e35c3c503d3bf80f4c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10382---15181-in.json b/source/parts/detail/c/custom-cardboard-ring-10382---15181-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d36457f33b99722cfa9dc01979e05aca44e915d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10382---15181-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de6be093975a5bfbe375e28210613dd57108057aeb97d229464cf64cdce59c3 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10400---13400-in.json b/source/parts/detail/c/custom-cardboard-ring-10400---13400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83d6b3e72ccc58d68bbf188d91cfbfa60bbad97a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10400---13400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a611f2743ceb97c0e2601738f8808074d3877a39c3ddf81139437c2c096746f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-10680---11300-in.json b/source/parts/detail/c/custom-cardboard-ring-10680---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e208519cbac8c4d9de12e4f3aad2b231415331f8 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-10680---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6242e5b832e3d8d336fa1c1c783871618b1d4d52dd84b305aebbe74c2cac66 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11000---11200-in.json b/source/parts/detail/c/custom-cardboard-ring-11000---11200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40c78bf4fbd8b3b0bba47079cade2f9b42c38728 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11000---11200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5608350259c622d76f61cd8def910c1ef0f18f1bab8b43797d331acfbd0cdfce +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11000---11400-in.json b/source/parts/detail/c/custom-cardboard-ring-11000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe113a4828cde36e3e5188a0d22838417cbae079 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7722985c0c51dee1287c0d5686e725fcdb8b7760026473407366ae4baeed07ad +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11000---12830-in.json b/source/parts/detail/c/custom-cardboard-ring-11000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b9e7fcc853e06f85ce06eb733d54b864fb9b09a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19c28f699a4efd6c5a70ace70a8ea7f42dad325fa9b8338cc5140bf7335e64c9 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11200---11400-in.json b/source/parts/detail/c/custom-cardboard-ring-11200---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3bb4f88f35909122cb891472dda3b11713be932 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11200---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bf8bbfdaa916030f82d91d4622a59c4cecaf3b6c41a3b7f9bbed8aa0b22f231 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11400---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-11400---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d97ae93ad301a4a7b7598623298290992d3d6e09 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11400---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6d7e667d8450190f360b428ec890ee643230a137f2b3c9594790f2d8f34e0e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11420---25000-in.json b/source/parts/detail/c/custom-cardboard-ring-11420---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..170a9a3803b514564768c3217ec0ccbd8f91e162 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11420---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c02b0a6980e2b528b43c41b19984bc6ce1b679d77709b62f1faaa1868c2e29 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11614---25900-in.json b/source/parts/detail/c/custom-cardboard-ring-11614---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35860dfbe2a42b0d6f1239a9af1ed3fb3998d437 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11614---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:962b995e60b2357b66eee2c1eb49b35e657467c4777f6424aa80dcd4f4ea6062 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11760---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-11760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f1234c7b8ff4192b65aed7b90e0463b15fb5bf5f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b088c4f868412cdf3795237f92d006dfbb66b8b940076d70671277fbb767d63 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11799---29300-in.json b/source/parts/detail/c/custom-cardboard-ring-11799---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95fc73e6f3069e55c20affdc9c65af0e16a94961 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11799---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e66f87bc3a67d96fa3792fc33e4bf496abda791afe42cfaf9fa9a515cc747d8 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11800---25580-in.json b/source/parts/detail/c/custom-cardboard-ring-11800---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b94c87211ffebcdb55db08d7222004c44be2419 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11800---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321a0e5013ca89bfee6b483064d1ffb69dd3f3f7ca9b71443474ae79899a3eed +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11800---26740-in.json b/source/parts/detail/c/custom-cardboard-ring-11800---26740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2709e2efb2d0f94c03ae00e6de769ae39b60b06e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11800---26740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec57787692777bb864beb6df992873fc0a970be2815fa0e69a19105a865342a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-11830---12830-in.json b/source/parts/detail/c/custom-cardboard-ring-11830---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2714a47f388c0a4a82d72aeaf5e9216c72e20b9 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-11830---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7a71c62d63928306af92379337c3017e0723025be010b316a47d061ece4376 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12000---13000-in.json b/source/parts/detail/c/custom-cardboard-ring-12000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..02fa93bec16cc52ac4c1fa5b4ea56435e274ea8a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9bc128303e3269e5b2a5ddab052acc3b291adbc0935e3bbe23e717fc27c6c9a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12100---12830-in.json b/source/parts/detail/c/custom-cardboard-ring-12100---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64e63aaf635d0ecafd657fc789f90b4cbc3a4e1d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12100---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7221f4dd20351cdaeae7bf5721151fcaff08566be74946aeccc2832c1bb6dd5 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12100---15250-in.json b/source/parts/detail/c/custom-cardboard-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..12384a33123be564a7679a587a3e74bc13db5879 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b5f09930293533c881346b566ea8c144484fe060c228f482cdb7298510eeaa +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12100---17100-in.json b/source/parts/detail/c/custom-cardboard-ring-12100---17100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..caf4ec0d9b21af54a8215883b322f2f7d510baed --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12100---17100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77945274a490e2da624f798bdb4d525bfec8c6cadf5ac54a712b21dd1228f73c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12100---17800-in.json b/source/parts/detail/c/custom-cardboard-ring-12100---17800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b00e945b7f7ce39287b3c2944ff27012b243d3b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12100---17800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93a018f920a4601a8d29ee0c74ad617f8e6c928c821b26b0b15af3c69f0debc +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12100---19375-in.json b/source/parts/detail/c/custom-cardboard-ring-12100---19375-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f15ae958c03ee0701c4952b39fb65a9194d33e4b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12100---19375-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c7c7151cffa63e77307285863417c9aecc316ddf982eb8a7b47672c9e92e2e5 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12100---20000-in.json b/source/parts/detail/c/custom-cardboard-ring-12100---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4a4ab77e8dba1113d383686bd7134714bc84638 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12100---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d06bec7e39e80ba223318a432c0c88372063e69434ae5422bddab0a03b601e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12100---21700-in.json b/source/parts/detail/c/custom-cardboard-ring-12100---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eec45e9b7e8d868f986ff75dac36afed5cd7553d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12100---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2728e716d1353243737fe5094c2d824420ef53ec6279fcef5c2e06c86c902ee +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12100---29300-in.json b/source/parts/detail/c/custom-cardboard-ring-12100---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8293ffff0bdd6115a8a2c09b0017035cfa094ee0 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12100---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e285377b2c9d72eb5ee966647d72d096a3e851509c3f62bf5f8f30d53b8de3a6 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12240---12760-in.json b/source/parts/detail/c/custom-cardboard-ring-12240---12760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0e5061ac90197ebc6343fc07f75428f8a02f88eb --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12240---12760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53fd72070e7294e11e223cb80375ff8b8feb342d824308e885893ed9cb9b5983 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12500---24500-in.json b/source/parts/detail/c/custom-cardboard-ring-12500---24500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..446cb4194a9b19fb3922e6f54fccca53ae3f7611 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12500---24500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c31766de00298304177552c1ad87ccf56f0c0495c54af3dc7aca2f7669ef6a7f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12600---13000-in.json b/source/parts/detail/c/custom-cardboard-ring-12600---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8245b89a68845d904c9f62202fbe96682dca52fe --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12600---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2ba0214ff86908fb31730a4f1e823c2034cb65e7a0dc33a8de7debbec4bd12 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-12690---25880-in.json b/source/parts/detail/c/custom-cardboard-ring-12690---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54eabe57569d289c9370b6877832c3f50b27610b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-12690---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22026f420d89ce48825013f222eb56aad3ce9cf024736b723162c03d9ef82051 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-13250---13500-in.json b/source/parts/detail/c/custom-cardboard-ring-13250---13500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3adefd08f019da18d7a20e802201f63ca76d96ad --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-13250---13500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44eb08b71688ddeda096d6d872053cea64f5f843583543a169943bfc35c77b9e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-13250---17500-in.json b/source/parts/detail/c/custom-cardboard-ring-13250---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9adb2ae756661deb43a6cd6169e80e260fc26464 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-13250---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379c6196f1ca4aca6abd28a06d335bfe80b757688126a4a8fbe1585f6a33f7c5 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-14010---15250-in.json b/source/parts/detail/c/custom-cardboard-ring-14010---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..275b60c184a89bb9a241d73abc580b18646b86c0 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-14010---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa1a945a24a27d5b562f1ff47ef3654fce90b3c9e973dfe7827d50a6e239d93e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-14173---15748-in.json b/source/parts/detail/c/custom-cardboard-ring-14173---15748-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3dd7581e318171641d85be43ff0e0f35293daecf --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-14173---15748-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64709abd66434ead8ed400cbb4aa2f0198861e99c7567d74218e6e2e05826df +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-14567---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-14567---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa11848057e0794e6111ccaddcf00474ca409530 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-14567---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d919017a6e0eddffa42e50166af779e70ae8907c54a0924cb15419e052ece9f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-15310---15910-in.json b/source/parts/detail/c/custom-cardboard-ring-15310---15910-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd59ecf8927470b51043413f0bb35588bdaa801d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15310---15910-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20723613d36955da9dee357202c8bffbb71615066c624b2acdae18185983d66b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-15400---25580-in.json b/source/parts/detail/c/custom-cardboard-ring-15400---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..312c5d1079be61327537fcf9d8a2143c47e35197 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15400---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1437ce4ee23ebfff5f574616d09c283f33cb250c057fd554a7d49c70a518a96b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-15500---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-15500---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..453078758607e896958d1d29dba3b273b4654473 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15500---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4bc6e59ca42b15227452199d52cd9ab56171d348ec1b6ec3323b00fa754338f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-15600---16149-in.json b/source/parts/detail/c/custom-cardboard-ring-15600---16149-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42d73bd6c97aba8cb5fc2c1d048ca05013ebfc27 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15600---16149-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f601a16836bb716691da8d7c14463f1c9d2ac2831d7a85575407bfa1cec0c0 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-15625---16250-in.json b/source/parts/detail/c/custom-cardboard-ring-15625---16250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e93d024a11a4b9c4f29b225d7f7d058ea40db20 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15625---16250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd81fed4ff1a01dba089afc983eb9a205ebf10031fc77705123fd01782a0e564 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-15700---07500-in.json b/source/parts/detail/c/custom-cardboard-ring-15700---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..05a732c35ddb5690755bbaa612f3b1524beaf399 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15700---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5892e6ad9c4ad6bae49d34f78a927dcfcd784839db95b5b0519f8311c019783 +size 429 diff --git a/source/parts/detail/c/custom-cardboard-ring-15800---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-15800---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e71c46afb4053ebaa676bfc57219b08f4e3fdd39 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15800---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70829a7ed626a9df9cd688762f28fcfd17d53dad4d6cdfc2d1b73f855f3a63b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-15942---27835-in.json b/source/parts/detail/c/custom-cardboard-ring-15942---27835-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e8440dd97dd678f04d313f195235b48e466d0ee9 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15942---27835-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d0621abbf74e085d6573c64d50ab488cf5a8d73539e6f4d8001934eb835935 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-15950---15950-in.json b/source/parts/detail/c/custom-cardboard-ring-15950---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..12e4c2d4627883c354d0513e172f250dfaa39b48 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-15950---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21fef594b56993036fa11374060597ddf6a904c637c94d615cf20bd57585155d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-16000---17000-in.json b/source/parts/detail/c/custom-cardboard-ring-16000---17000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b03e11aa51b3bd961a9c3080a65fc4663a14a9bf --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-16000---17000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e87c6d0861f1004a3b9442430f40f7b80dfb1e324904edc4b111777802c7720 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-16250---17800-in.json b/source/parts/detail/c/custom-cardboard-ring-16250---17800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e46c18b404c7b35a57d7c51c05d165f37563e17b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-16250---17800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9415c116d14839e38a1521a33be691c120f738f8c095f488e205667975107677 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-16370---25600-in.json b/source/parts/detail/c/custom-cardboard-ring-16370---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7f36664d0e8796e2c930f9b93a0e0014250842b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-16370---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d61a185c9eda863dcdac15d9997afbfde5bd9315e3cba173e883689035f012 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-16400---16800-in.json b/source/parts/detail/c/custom-cardboard-ring-16400---16800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1230f690a7dfe5305c26b29b1122e47a2f08a95f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-16400---16800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4547ae2be8c9d94a996225a1f533b844baa033e365a72b333d0e9d8e46206ae7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-16400---17000-in.json b/source/parts/detail/c/custom-cardboard-ring-16400---17000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3e5992740b788a8c564b37d87f596a2f269773b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-16400---17000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17950abefd17beb698226bf8472153eeed543121a4ea179b8be3aa3a8c55ecb7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-16402---17126-in.json b/source/parts/detail/c/custom-cardboard-ring-16402---17126-in.json new file mode 100644 index 0000000000000000000000000000000000000000..97ca98172ec85cf7f29b30e027484cf3b170d059 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-16402---17126-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf47d2d62792096b26f4b1e5d83213aaaf147821e832bb3ffc254a756edade09 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-16500---21700-in.json b/source/parts/detail/c/custom-cardboard-ring-16500---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1281743fd235598f70cf7b2ec38872d7268b220a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-16500---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d84686e59e1855dc751be9482973bb6c51f5d7793797bd3b5ec44b177214ca +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-18152---23181-in.json b/source/parts/detail/c/custom-cardboard-ring-18152---23181-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd14b58e430fd3f4666d093c78af0d8910ccf08c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-18152---23181-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb2c336f6e4cfdb4cd45b0a6d0221603bc923482a73423e88860a47367d55e58 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-18750---20000-in.json b/source/parts/detail/c/custom-cardboard-ring-18750---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ec459e1bd932a9deff50b2b532b790659c3b47c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-18750---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6784d4f931f346cd129646db1fdf72fd2c5c12349036ce20ca7b3a227791a0 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-19500---21400-in.json b/source/parts/detail/c/custom-cardboard-ring-19500---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e3fe15d450edcb88d87deb88cdcaba883f529aed --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-19500---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197a2331c595f8cbf03418d1e11785cf3dcc449e26413006c2b6c6397bcb2a70 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-19585---21201-in.json b/source/parts/detail/c/custom-cardboard-ring-19585---21201-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0578e6ae7efb5a3cfc1b7213d5f26cf858435cf --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-19585---21201-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79aef87f99d523d76680b9fc8f50f293109f0bfb73cffa05a4b649c8f7d70dc +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-19585---21750-in.json b/source/parts/detail/c/custom-cardboard-ring-19585---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd6757c26d553f05dd6fc5b491e7bcf2c48b2f60 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-19585---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f30c12c65e71bd477ba73bcce7bdf781cad8385882e42b74594b4c847a2be29 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-20000---25000-in.json b/source/parts/detail/c/custom-cardboard-ring-20000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0298fbde71bbefd4900b4c4dfcebbd3a36bca46c --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-20000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f924458057529d69602dd99c1c88ec764d08cab61953e890b1fc4bbdb3a15fc3 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-20400---21800-in.json b/source/parts/detail/c/custom-cardboard-ring-20400---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b0c1951b61b3af131724e5cca860f2d3a607d86 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-20400---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88db1818a9350a97c189ae798311cc04d7ec9d8da7949bba9d28a3e986e86acc +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-20800---21700-in.json b/source/parts/detail/c/custom-cardboard-ring-20800---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3daf8c82c8b88df1bf9afb1b9b823b7ab299e345 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-20800---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c648d1fc8f58b490a8156fdf5aafcfbc02e6689832943c11534765fac517840e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-20866---21800-in.json b/source/parts/detail/c/custom-cardboard-ring-20866---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..30aca642ccd06a601cce7b363e5abc5d86b8120a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-20866---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80c656b5a96c71a9f5524186462613e6cdb140782cdc7bbd8012bb749e76b369 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-21000---21700-in.json b/source/parts/detail/c/custom-cardboard-ring-21000---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..34bbeeea7747b4eb5b7427897b57fc8dd36925ad --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-21000---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a417bfabe95ccb6005932ad3d5818e0469c728f7b2810d3e3d706b723c11cc64 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-21650---21700-in.json b/source/parts/detail/c/custom-cardboard-ring-21650---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06fa1396e450b8c195c116c6eda2dd7d1977301a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-21650---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcc7470e122654bb34b2489638bfc975fe3b255eb2dd03deca0b7041aae4aec7 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-21650---21710-in.json b/source/parts/detail/c/custom-cardboard-ring-21650---21710-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b311fe2bf70d499b51ea7b4720d7f81c834c3ad --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-21650---21710-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db04edd22eb57fd3707515551eed4856289c51ff9d1b74a6fb864f4d45cb3597 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-220000---221250-in.json b/source/parts/detail/c/custom-cardboard-ring-220000---221250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe4b5f9e08751a707fe42b08e2430d6aab8e8b62 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-220000---221250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14d2e3c8d4a5f5be0342f86584a19300f7c74c7f63e699aca5a23f279843149 +size 434 diff --git a/source/parts/detail/c/custom-cardboard-ring-22170---30020-in.json b/source/parts/detail/c/custom-cardboard-ring-22170---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6fdeb5e148240a6870c8e7052ef3fc7ed4765c4 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-22170---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50da1287e5d6d843c8df5ef3c34daec1fb226f0137fcb416097aa0a643d3e0c2 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-22500---39860-in.json b/source/parts/detail/c/custom-cardboard-ring-22500---39860-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f67612b6b4f3c9e6f46404bc27212d8d85f4af31 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-22500---39860-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3af53ff11fcd6317e18ebff9749f488a9510524e17d8a5ad1acfe4d015e70ff +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-23750---25880-in.json b/source/parts/detail/c/custom-cardboard-ring-23750---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..027d0a4d3ce2e60f23270bbf846f8d98ee4e4b01 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-23750---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca355cf20a0089e0e812308a955126e66111be15cec0a9fe1bdd29d418b446a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-24039---25266-in.json b/source/parts/detail/c/custom-cardboard-ring-24039---25266-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bff9c4b1d86990d74e85c460f694421f83c19b0e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-24039---25266-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd00811680c28a1204a6bd5a8834d535d0ba1f5f440a595c84e3c62bd35b07e +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-24039---39003-in.json b/source/parts/detail/c/custom-cardboard-ring-24039---39003-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6ae6ab7a1e4a7601a13427dd8f83782d77b3d1f --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-24039---39003-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:262b6b86551fe928134c53370c78def43bc8fd4b7e736500ecfc22bf7c3f4719 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-24360---25600-in.json b/source/parts/detail/c/custom-cardboard-ring-24360---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f2f38717f63ff9860f3f986ace8f0d4380437b7 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-24360---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63130a33a4e46f98f28cb8386ceedee60770db4ec77e2febceb7b49e890dd240 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-24840---25640-in.json b/source/parts/detail/c/custom-cardboard-ring-24840---25640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a23eb5d5615bcc948649937e76854dc0a5ee62f6 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-24840---25640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec4acbaaf4757cdd7b64ec0cdcb0128a6c5c8a95ecbc5d74c34cc8faab834694 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-25000---25880-in.json b/source/parts/detail/c/custom-cardboard-ring-25000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f3baf3935318430a09a0fbfbe8e5fabe0347c21 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-25000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9ba7f08c787ea33ab4be3720963737326f16dd30231013f03e6e66753870b2 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-25000---25900-in.json b/source/parts/detail/c/custom-cardboard-ring-25000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d632496a75daf9e6e9a3b1acb6c9842676dfa7a7 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-25000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d80495de417c0eb74a370662cf75f85b4014078c1db68a6ceb4a3fa0db80c2 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-25500---26000-in.json b/source/parts/detail/c/custom-cardboard-ring-25500---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b3af322cc21949a776bf917399e20510725b8d0 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-25500---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe56f43670b39079535926838c37fb070bada8c1c3b359ca0f740e19e120141 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-25550---25880-in.json b/source/parts/detail/c/custom-cardboard-ring-25550---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..23752983527dff3f087b94c7d5d3bdbbc111a949 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-25550---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7814f3279b26ff621c6fb8b0b5cdf54ff3ecfa4a925e69aaa088baa6e64e07a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-25600---26000-in.json b/source/parts/detail/c/custom-cardboard-ring-25600---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07340c826c51459b6dd17ed765e707c9e10346e0 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-25600---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13292c44ccea5cd8b393f3dedc6fcd51db69448d2bb78d959724ba2a290ab99b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-25900---26000-in.json b/source/parts/detail/c/custom-cardboard-ring-25900---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea055f57576b55c5f5a10dff887a7a8251404e01 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-25900---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce04e78f374c80df8f13b753be6dee12712d8a5ea4ebc894d30972cde51fbf60 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-26000---31000-in.json b/source/parts/detail/c/custom-cardboard-ring-26000---31000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..430a6479673a49238d45d44020b7e22f64c2e9c1 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-26000---31000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fd1b0f452088eac772164c739d2a634a4f9f51ef46c11a69eec56e624a759ff +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-26000---40083-in.json b/source/parts/detail/c/custom-cardboard-ring-26000---40083-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb883a55a4024232c3ac82da88d3f11ab5901b1e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-26000---40083-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6526e631cba2d1def7bc3c8c408dac7c5f86b62e8d9939ccaa570fd23e2795ee +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-27000---39860-in.json b/source/parts/detail/c/custom-cardboard-ring-27000---39860-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8425c2152e414489bebdf4bf728213d560ff3fc3 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-27000---39860-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b736322b535cbec174bf0366189f81be0535bfdf5c0075730c7cbf8f2ded30f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-27500---30000-in.json b/source/parts/detail/c/custom-cardboard-ring-27500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4dd19362820af324ed8a40358081d54b85cbc878 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-27500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce81dd7aed3c40429476b49bc581cc0829fb421d4a53d336459521a36717957 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-27550---28175-in.json b/source/parts/detail/c/custom-cardboard-ring-27550---28175-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8330e6c02905ae0801fc2ecd72f9398bd8e259e --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-27550---28175-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2c0165beeec4c3c27d658504ae4618966a2971480c7852dc003a2ae2e41d2c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-28346---29134-in.json b/source/parts/detail/c/custom-cardboard-ring-28346---29134-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8258c2974db0c5bd858a8c0978320e3f87ad485 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-28346---29134-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c55373042ba0a9e58c7d15943160bfe4e4e5f45572b510a2a7bb5e513ee918 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-28650---28700-in.json b/source/parts/detail/c/custom-cardboard-ring-28650---28700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..486eed28e57e0a0c750673e30b15a2bd706f6011 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-28650---28700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3201ee8aee784e687212a92b5e2c1474389cf8a901d63dbbcfa59c397665a1f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-28780---30000-in.json b/source/parts/detail/c/custom-cardboard-ring-28780---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5c05c6a85446cbf8c752c0ca0a47b7bb20b91a72 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-28780---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f63c375223dbdb4529b4bfdd2557bb9666b5671a664ee970faa336b3978c6f +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-29000---30000-in.json b/source/parts/detail/c/custom-cardboard-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1e998a97c94ec1295b353ecd07a35962974e776 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:563554e565404700396e74825cc6a64f54a5c7e3c2f88fe56554dcd2e3ce4439 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-29000---30020-in.json b/source/parts/detail/c/custom-cardboard-ring-29000---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6265163c89d089942701fc2974caf9e9a4038c1 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-29000---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a9902158d9215f0f6cae09d33673085b115b67b48af1952240585036c79dc3 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-29500---30000-in.json b/source/parts/detail/c/custom-cardboard-ring-29500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..393f78d6a7c967d5dd6739e5661f639076099529 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-29500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d652eb3908ff89c67ad320bf3dbf8effd545f86f6f34d669ce037d4ac1e4cf +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-30400---49700-in.json b/source/parts/detail/c/custom-cardboard-ring-30400---49700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29e86e0745952adca25942dd5cc6a600d1c49107 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-30400---49700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3946a711df0031ce8d8da0b8bcd72189cc377ac5211732581ec0dae61663ad6a +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-31000---32938-in.json b/source/parts/detail/c/custom-cardboard-ring-31000---32938-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7e5298f8f2d4be6ad420700a7f124ea4edb49c2 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-31000---32938-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5206711d147202489a4cfdc07b0f3330f172dd2d04f763412504fbfa48b58b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-34988---35776-in.json b/source/parts/detail/c/custom-cardboard-ring-34988---35776-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7f684625592420b24b570fef0b73f88550017f4 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-34988---35776-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05cbd70294bb0c9a9fc7764a10308cab0327772953c8a2aeb37ffe2b72a919c +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-37500---35000-in.json b/source/parts/detail/c/custom-cardboard-ring-37500---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..654eb6d0c64b03846aa9f5f0b738ece61a78d430 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-37500---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7d10a9b9a2093efd12e5d85a2908b241b18d1090fbbc2d9c41c0b0bf0898bd +size 429 diff --git a/source/parts/detail/c/custom-cardboard-ring-37780---39000-in.json b/source/parts/detail/c/custom-cardboard-ring-37780---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..230a655821f83239e0f7b0e87a15a4c7e2bf5943 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-37780---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da7b0d33f1bacf8d6a5c8d14f2a8cf59fc4eb4da07c391823d6bf479036d7b40 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-38000---38960-in.json b/source/parts/detail/c/custom-cardboard-ring-38000---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c840649c80a49d3a7955b9de4e80233846d60c7a --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-38000---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cde4a2f4d7c1c418b4c2970c44008639f57506be1bbb6c571d87f9e5360b5fd +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-38000---39000-in.json b/source/parts/detail/c/custom-cardboard-ring-38000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54e6e2ebf6455bb558365a647bf74505ceaf745d --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-38000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70a24a33bad48481e2d1a105fff779aa8b9d974ffaa34059f8ade594d22ffcb4 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-38060---38960-in.json b/source/parts/detail/c/custom-cardboard-ring-38060---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..521fcef44397ff4e06c83c8fe62474c9f3ab84c1 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-38060---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0007e3f9da28c7397332390882bf2e54d58c4fe6dd8aa7f35ed37d95edf642f9 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-39800---39860-in.json b/source/parts/detail/c/custom-cardboard-ring-39800---39860-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f10b66803c7d450fa89f43c8d02d5774669f005 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-39800---39860-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63acfbabb994626853d29c50b523eb6caec9c03b5d26a49dd08df9897e8a9217 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-49000---49300-in.json b/source/parts/detail/c/custom-cardboard-ring-49000---49300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a02d170098726192c6915e148b630144af080b2 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-49000---49300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f1c754d0fc9ff264c5a24efb15c4f1561fe1ab76624c2deb9df57b0d8f19974 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-49000---49700-in.json b/source/parts/detail/c/custom-cardboard-ring-49000---49700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de17755e05797b79404c3f0f5317e19ecab36939 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-49000---49700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026300d807f42811e70a6f060d98ae7c19dc26786e35887ed6e3875710b7e9fe +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-56693---58268-in.json b/source/parts/detail/c/custom-cardboard-ring-56693---58268-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6000ad368e8380438d0f8778472705361eb1fc20 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-56693---58268-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be036f24db183cbe2e40f1a5095482eb261bfd11aecb3a02e0e71e2125f8aac8 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-59500---60000-in.json b/source/parts/detail/c/custom-cardboard-ring-59500---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5aca7ad78e4e1491e0dd8968c6cf8e566f202a60 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-59500---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6bc5a2f659d6dc3eda8db6800720a25019c494f56dec14e721486d6e827197 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-60000---65000-in.json b/source/parts/detail/c/custom-cardboard-ring-60000---65000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea290cef4c7a3601fd0598ef025fdb6928bf9523 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-60000---65000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3ae7987b2c3b51856b4f8ae02b2af437efdc09257823753fe74001db4c2229 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-73000---75150-in.json b/source/parts/detail/c/custom-cardboard-ring-73000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a212ac77ddde1b8473713d321d591e853be4dbc --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-73000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a796ace60726e6f31ab5282decefd3293b77e49eae6c00504e23840b97b58915 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-73800---75100-in.json b/source/parts/detail/c/custom-cardboard-ring-73800---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee1fdcf30f32d7565d259dfaf7a61aa5090e5403 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-73800---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb8f762f49cd70f46bc4322d20acbcca627c580a04fcff7a778b411c9a4ca58 +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-75000---77500-in.json b/source/parts/detail/c/custom-cardboard-ring-75000---77500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4a00f869a9d2b68da29978d4a45bdd515a480ec --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-75000---77500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4656ffaf56bdc5a82970003b21ba345332930b1dfd3b771d962d37ac6596392b +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-89000---91250-in.json b/source/parts/detail/c/custom-cardboard-ring-89000---91250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..88f3d89185cdffbec13d0cfd1457e045ee6709e5 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-89000---91250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:425ef6da02ccbec2243aefc07f8aa702d04a8fcdd193709c0cac74d4363e036d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-95000---100155-in.json b/source/parts/detail/c/custom-cardboard-ring-95000---100155-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf5c0315425bb4a179ef923d5bb48cb89474675b --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-95000---100155-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe052ef85695531cd75e5e5c877b21025ed301bc1349143bbb3f96ec2381af96 +size 431 diff --git a/source/parts/detail/c/custom-cardboard-ring-95000---99760-in.json b/source/parts/detail/c/custom-cardboard-ring-95000---99760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b4e03ae040a0a137e1fc60f57400802b0f96dc76 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-95000---99760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e0a0947bc5d8ce30dccdb4e3888fdeccae9b84226979406fbd2377c5c3a0b5d +size 428 diff --git a/source/parts/detail/c/custom-cardboard-ring-96000---100155-in.json b/source/parts/detail/c/custom-cardboard-ring-96000---100155-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15555835e31ec62015719c25bb3dc3ee3af43a11 --- /dev/null +++ b/source/parts/detail/c/custom-cardboard-ring-96000---100155-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:773c793655e5fd6f9b0a9082953e418d9be22458860493b79864ae756948fd06 +size 431 diff --git a/source/parts/detail/c/custom-cardstock-ring-00000---07100-in.json b/source/parts/detail/c/custom-cardstock-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e8f0d1443e103696eb920c6f2dadb47375fdcd0b --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de30bd7ba7fddec9f1c279d681896e440c88e81436a528fe0fc7d889bd20a98b +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-00000---20000-in.json b/source/parts/detail/c/custom-cardstock-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8fb39951d79dee0fc01296d107552d932100c2b5 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64fa4a71f3d1acb4dcc81b3ac0aa826fa60f9e8b59d83397e1f865e0c3d6ea80 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-00000---33100-in.json b/source/parts/detail/c/custom-cardstock-ring-00000---33100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29a52a42713ce432a567203a483785794329c3b2 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-00000---33100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3dc04200508e8608c708c36f9d131578707aef6e554fb74e19bbc545555b0c +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-05400---09500-in.json b/source/parts/detail/c/custom-cardstock-ring-05400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c6ad1536f0c472a64867c90f887b2902323cc1d --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-05400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771dde9af413e1f1336dce83fceef44e5a901ba2a2b94c055aa4d4236dece590 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-07360---12800-in.json b/source/parts/detail/c/custom-cardstock-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7dc529c1cdd5895ac87bfa11751c53132429d324 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50a0e92a043ea822859c4f6553f0d20173f7ccb60879218fa6dc36ba76cbeec0 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-07400---12800-in.json b/source/parts/detail/c/custom-cardstock-ring-07400---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..16c7a7addddf442cbe73d8cb98a1745dc50d1840 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-07400---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bddfec2be4ce787a0685bd580012e1d8d9047216a277e7000d3dbe08f22f0a8 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-07400---12830-in.json b/source/parts/detail/c/custom-cardstock-ring-07400---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7479a455f7422f630f62449a783db24d30ad0b8a --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-07400---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b363d8f69ee345500530cc1d47de5e2a8dc3fcadf09a4f92c2598212dab5ac6 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-07400---15900-in.json b/source/parts/detail/c/custom-cardstock-ring-07400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0887c94f69f825d82a125a4c15d9078e36c5b71d --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-07400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ccc2433c261b7d8e009a462eeb8630a8ed7c851214750f3165c43f278e4f59 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-07400---20000-in.json b/source/parts/detail/c/custom-cardstock-ring-07400---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ba4bfa245f40389ea936f2979a6b642b548e20e --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-07400---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18758e6ca085dab0c38e722432358b9c2e6b1cc5855a2556eedf8d3a5e8debf5 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-09800---33940-in.json b/source/parts/detail/c/custom-cardstock-ring-09800---33940-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8db493fdf877c8521419c2575c49c9e5162f81bd --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-09800---33940-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f443ca9dabac7d9e10a83560da0897908e8ae5be45cd422657602271060b259 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-09800---38960-in.json b/source/parts/detail/c/custom-cardstock-ring-09800---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54ed28a88c268f9b4fd307a3d842ad891ea4330f --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-09800---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de4c4b7068c95e87ea8a04e7a46ec228b9442920c1f16f3150c2be2fd86a4414 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-12200---29330-in.json b/source/parts/detail/c/custom-cardstock-ring-12200---29330-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a0d8be813c8cad23bc34261dcf88aaea25160606 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-12200---29330-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f1cfe3e908a87368cd90bc3f9dd37143d344c13ab5c0a54a9f25a676cfa3ca +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-13260---13270-in.json b/source/parts/detail/c/custom-cardstock-ring-13260---13270-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55c8a79142216d1cfd641dd0ab59508fba79a86e --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-13260---13270-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4296d8cc543edb701ad95f53425921f61513070d1e8f4c603e41e578440b20c7 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-13260---13660-in.json b/source/parts/detail/c/custom-cardstock-ring-13260---13660-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7e52897d9bdf8d2858143107ac8554a9d02c9bd9 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-13260---13660-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d964b36be2dcf149af63830abb9b5af2055aead8f103119769cb73fa1dad9ee4 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-15370---25880-in.json b/source/parts/detail/c/custom-cardstock-ring-15370---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f75c5d8e5e4043706cb6ba445a91ae8ce73cb707 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-15370---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe0f739c56702954a0a2cff2c56008288b319bd7be8090a68987e626b8b9fa7c +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-26000---27000-in.json b/source/parts/detail/c/custom-cardstock-ring-26000---27000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..274f8927ebceef770becbd42af58c60a93242de7 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-26000---27000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee81f3748339e624f74d5fb13c82644f4b5d1a0f09cb096172073793dd80afc3 +size 428 diff --git a/source/parts/detail/c/custom-cardstock-ring-26000---39000-in.json b/source/parts/detail/c/custom-cardstock-ring-26000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08c1efbae270e9b23f4423929ed240188fc98180 --- /dev/null +++ b/source/parts/detail/c/custom-cardstock-ring-26000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f021d77620275dbb15b55f0c6956add5d721a2a88bf90bd010de79097b7b692e +size 428 diff --git a/source/parts/detail/c/custom-cellulose-acetate-propionate-ring-12100---19570-in.json b/source/parts/detail/c/custom-cellulose-acetate-propionate-ring-12100---19570-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb38609f1d01cb107b60157ed5d0a9bc3af0fceb --- /dev/null +++ b/source/parts/detail/c/custom-cellulose-acetate-propionate-ring-12100---19570-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d924bcf2bdb368b6eea351775242f48acfa0e4e0ec131e559566da14c2e96c +size 485 diff --git a/source/parts/detail/c/custom-conical-transition.json b/source/parts/detail/c/custom-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..75cf5947ef12f80776e614f8118c72ec42670513 --- /dev/null +++ b/source/parts/detail/c/custom-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8422503961fb001186aa0a0e2a50705d9d2b075512b1b671d22c1954d9ffe786 +size 578 diff --git a/source/parts/detail/c/custom-cork-solid-ring-00000---15000-in.json b/source/parts/detail/c/custom-cork-solid-ring-00000---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b446ca4396cccb61518bc9a74178cd53cc6e9924 --- /dev/null +++ b/source/parts/detail/c/custom-cork-solid-ring-00000---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa8a01af1a0ad1ef84bff0f56f42851c533fc538600d810cee01530b6beab75 +size 433 diff --git a/source/parts/detail/c/custom-cork-solid-ring-09697---12830-in.json b/source/parts/detail/c/custom-cork-solid-ring-09697---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0eecdf987d9b349163e7b47893ef3611c7165ad --- /dev/null +++ b/source/parts/detail/c/custom-cork-solid-ring-09697---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:653e49678da17698296deaf5c649ef38641b34c2e1550a60e929fe125e5d235a +size 438 diff --git a/source/parts/detail/c/custom-cr-for-6-aircraft-plywood-birch-ring-40000---60000-in.json b/source/parts/detail/c/custom-cr-for-6-aircraft-plywood-birch-ring-40000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa99faed85a8589c5083f36e174940f02926ce1a --- /dev/null +++ b/source/parts/detail/c/custom-cr-for-6-aircraft-plywood-birch-ring-40000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17df98316bdc3815e202cbf3857d7b00a66d3b517a2de50501ff97c4c10c344a +size 601 diff --git a/source/parts/detail/c/custom-cr-for-6-g10-fiberglass-ring-40000---60000-in.json b/source/parts/detail/c/custom-cr-for-6-g10-fiberglass-ring-40000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78b0e2de23832c75f322bf349730231d54c4b56a --- /dev/null +++ b/source/parts/detail/c/custom-cr-for-6-g10-fiberglass-ring-40000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90275cd621ebcf1f166e409e633f2544e6baf14f00da9c5d93e37f7f338905cf +size 575 diff --git a/source/parts/detail/c/custom-custom-ring-00000---15803-in.json b/source/parts/detail/c/custom-custom-ring-00000---15803-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4c886d76b923473a1f6b8b671c612221300bd9c9 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-00000---15803-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b25e05eccf0bd6f9e1f625480a042637ce8070cff33c217993d87ac60331b2 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-00000---21339-in.json b/source/parts/detail/c/custom-custom-ring-00000---21339-in.json new file mode 100644 index 0000000000000000000000000000000000000000..060b32a53d23b946e9825cda2297d218a7a10f7b --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-00000---21339-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3caa118df6ae81942dd7a37317df958f9aa6939b118298dbd0bb5df173374256 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-00000---22600-in.json b/source/parts/detail/c/custom-custom-ring-00000---22600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c171b44986373ce8bc495d0d7e2000722e5272e3 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-00000---22600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22bab4260052f8bceacc02883d16a83d46a738987a45d1ade13b4b27203c31f2 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-00000---37795-in.json b/source/parts/detail/c/custom-custom-ring-00000---37795-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e6adfc1ce57cf9ddfd273220ed10a607b6be9b6 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-00000---37795-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290e6a7c52575def996d1ecb83c79dfdf44a5a186c0f71d7ffd72e6038b4b450 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-00000---39030-in.json b/source/parts/detail/c/custom-custom-ring-00000---39030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..46f5fede0c84b067858835accba3148d930c1a9b --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-00000---39030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7166af7cc6f64681c6e12a09c7a500b983faaf2bf13246b853d5825a88eb8ec6 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-01250---01350-in.json b/source/parts/detail/c/custom-custom-ring-01250---01350-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b02abbc0fc232371355a0649b107089fec0fe542 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-01250---01350-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3638db0bf16ff5255cd779a6222b97e316ed867808ff2f65a245a1b9324413 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-04480---05150-in.json b/source/parts/detail/c/custom-custom-ring-04480---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..47960a5480936d520b8734894ce3c75f0bbb8452 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-04480---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775f39f2d42087f26cff317e697cad57e1cd628abf5c123b38b993995d87af38 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-06299---07087-in.json b/source/parts/detail/c/custom-custom-ring-06299---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8026464cb484de8190fd972c46374fd9789dbd7c --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-06299---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494fe219cab7da284cb8c689c8cf49948c3d026e0a118f2c4d10a1d13051d6e0 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-07360---12830-in.json b/source/parts/detail/c/custom-custom-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a43c90ef6d2c535651b1b155e8db7440a4d40207 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f62b74615938736ab67737d3655c4df6465918bf9dc652b47273387b84510722 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-07360---17900-in.json b/source/parts/detail/c/custom-custom-ring-07360---17900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..adbbf4984930f75840bc9a8478744c5abc2cdae7 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-07360---17900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30daadef61e93c4e3cd019e229f951afef80a3d65cdd7b3cb69bc8a91da48858 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-09300---09500-in.json b/source/parts/detail/c/custom-custom-ring-09300---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cafb444a169ff922b891b582ee97c97053cfc5e0 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-09300---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d648c5c38b4da0befc1662f74d4c7b30f243f259d0bd9463257080634a2b6d87 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-09760---09900-in.json b/source/parts/detail/c/custom-custom-ring-09760---09900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d38d4d3b33a71b2b5724aae5d3e482e1a4549dad --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-09760---09900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076b008d38fa2bf0e8d338edf42aecd1484277332237d2eff6c4dcc1c29708cd +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-09760---25900-in.json b/source/parts/detail/c/custom-custom-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4cb03b355994052b92829c2e053e9adb4813363d --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d391c9ff27c89b8691abf828dc9b86565579dc386c6c2fa9d5bbd7d6bd3eb1 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-09760---38976-in.json b/source/parts/detail/c/custom-custom-ring-09760---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..062a9220230a1eb6abde07d696cb9c9c96d54f4c --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-09760---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a3427abfa0c624cd5daa5740641e407bdc7d08fb02d60cef2ca596b3b83c8b +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-09800---30315-in.json b/source/parts/detail/c/custom-custom-ring-09800---30315-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a174cb14c8b072c559f647c52047fbaa1ce72ede --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-09800---30315-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c686a2348f8569eeda6870f5fa4d9aa486cc6fb0d616c5f297967f0d078b0eda +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-10300---25900-in.json b/source/parts/detail/c/custom-custom-ring-10300---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dda9a8e2ee81e89b66cb7d26c0cfd910ebee3f85 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-10300---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2baca8d567dd0cf149a42212ed042a376c2557f1446d524ced72e8eb6cabc39 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-11400---13000-in.json b/source/parts/detail/c/custom-custom-ring-11400---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86bcc9d2e20486bcfa445e400de7b3980abdc538 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-11400---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce6a3dc96c821bc8b7108f4735934bcdbe473532961b555d95ebc7a1565e70be +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-13200---13600-in.json b/source/parts/detail/c/custom-custom-ring-13200---13600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e4a43aac27db5164680846e5652e2ffed21bc8a --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-13200---13600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0174b3b68167c4bcf6838c70b86e9c485b5538d62fe10db6b841deb6460a1198 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-22047---39000-in.json b/source/parts/detail/c/custom-custom-ring-22047---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e98860c4c1d32f53c1c2b67413c58080d785d95 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-22047---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:978dbb0aa74efe3e6b53f67a4a7fbe02c49a903e89aecc7d6a31ea9ef16a9d88 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-22060---28070-in.json b/source/parts/detail/c/custom-custom-ring-22060---28070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5229d4aa7e5ce7e73167ea09b7a8f24ec049c58a --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-22060---28070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72508492590003766a6c089b09b98ec287e9ed917411967e2c973d20d3043d18 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-22800---23750-in.json b/source/parts/detail/c/custom-custom-ring-22800---23750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a22751697c13945dad735b54b32a1d22e204ca1 --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-22800---23750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc0663accd66a5fd612a693b2cdbc77c060b63e2dbcf22f4d5cf09164bdf4d7 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-30000---75000-in.json b/source/parts/detail/c/custom-custom-ring-30000---75000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7aa48f516b66853ab7038ea3882da9e6be29f85d --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-30000---75000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07392b1270e8a2b57d356c768ae2f596079991a51559ac884819ef6317f88b26 +size 419 diff --git a/source/parts/detail/c/custom-custom-ring-63500---151000-in.json b/source/parts/detail/c/custom-custom-ring-63500---151000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..390c7291b72a9fc0110823ddc061a94408ebc03c --- /dev/null +++ b/source/parts/detail/c/custom-custom-ring-63500---151000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1983722e4205c54e963f99386ce4c43c05f8ebdea13d0f73ba58f820d39f8833 +size 422 diff --git a/source/parts/detail/c/custom-e-bay-hardware-all-thread-wing-nuts-sled-etc.json b/source/parts/detail/c/custom-e-bay-hardware-all-thread-wing-nuts-sled-etc.json new file mode 100644 index 0000000000000000000000000000000000000000..e5ece206bb8e055162996dfe4273aaf9f99083e0 --- /dev/null +++ b/source/parts/detail/c/custom-e-bay-hardware-all-thread-wing-nuts-sled-etc.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cba6894ed903195b89b1bafee1c89bb2839e5c00ac23259cf22e98ef0c1ce1a +size 481 diff --git a/source/parts/detail/c/custom-elec-bay-plate-bplate-whdwe.json b/source/parts/detail/c/custom-elec-bay-plate-bplate-whdwe.json new file mode 100644 index 0000000000000000000000000000000000000000..46461cbefb11e6098c2098d2594f5a5de7b63625 --- /dev/null +++ b/source/parts/detail/c/custom-elec-bay-plate-bplate-whdwe.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:586e95c36d68c7e9cb33b3d425f9456c66255f4994a80a0beb5336eda6dc23a8 +size 407 diff --git a/source/parts/detail/c/custom-elliptical-transition.json b/source/parts/detail/c/custom-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..8b1c97fe11384a9102849df1fd16a6e0ffd768f0 --- /dev/null +++ b/source/parts/detail/c/custom-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b871cab0e628056d450b2d4600e002d75b425a7741255ceddc72447690239009 +size 590 diff --git a/source/parts/detail/c/custom-engine-clip-standard-size.json b/source/parts/detail/c/custom-engine-clip-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..6aa4990e6afeb46ae9eb81f18dd13dc0fd8930c3 --- /dev/null +++ b/source/parts/detail/c/custom-engine-clip-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d221705bdd4d4c6e9ed37c3d07fc6192d9a26c4b2df2483cbb19a5b518e6d7ee +size 397 diff --git a/source/parts/detail/c/custom-engine-hook-standard-size.json b/source/parts/detail/c/custom-engine-hook-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..7f240ef3b59cc4bd53f16798fbd4a0a707f13d46 --- /dev/null +++ b/source/parts/detail/c/custom-engine-hook-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:980d7feb4268fe8729a4bbe8e3175e67e210d438956c29384e71c0127e775fc7 +size 397 diff --git a/source/parts/detail/c/custom-engine-hook.json b/source/parts/detail/c/custom-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..5f35f7e46a94dd1a29bab9cc184ec837a30ff766 --- /dev/null +++ b/source/parts/detail/c/custom-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e3380ff79aaee83461ce4474db437724918c8e7a3fb7a0a0f392e137fc368b +size 300 diff --git a/source/parts/detail/c/custom-eye-bolt-1.json b/source/parts/detail/c/custom-eye-bolt-1.json new file mode 100644 index 0000000000000000000000000000000000000000..f201d133d95cbf9e3c1bcdb09157cd4ba88c3dd1 --- /dev/null +++ b/source/parts/detail/c/custom-eye-bolt-1.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d5ba13901e9ed26df45a2f19657e7fbe6dee8350f679fb961c6f4a3cafaf2b +size 317 diff --git a/source/parts/detail/c/custom-fiber-ring-00000---04500-in.json b/source/parts/detail/c/custom-fiber-ring-00000---04500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f4c75c0b630cf93ade2dc65028981e64e212fd01 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-00000---04500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4ac2adf39f03ea6a7f2a32142b9f528b8e63a9cfaa39d2c4dc6455ab758f29 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-00000---12830-in.json b/source/parts/detail/c/custom-fiber-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f49d900fc61877892443933aeba4fe2ed215ca3 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7b3c6020ef617a93372c6d16d91347c1aa7a7ab1bdf8219cfbcdb77635333a +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-07143---10715-in.json b/source/parts/detail/c/custom-fiber-ring-07143---10715-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5450429583c920ef41907616baee23f598015276 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-07143---10715-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2786487ecdcf7724dd9cadb8fc5fc9ab464bad2161bebcf5eb3a11d5d0e452 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-07360---15900-in.json b/source/parts/detail/c/custom-fiber-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a75d6b40e0f8d9bf0dc2a5df060d3cc01030ce8 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf629b72780736bcaaf9ae467d04f11cab47c73a77ce1bf64e7f20dfd7edf77 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-07590---19800-in.json b/source/parts/detail/c/custom-fiber-ring-07590---19800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c66f0ffe64ee481139f04fbeeac57f7a155a65d --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-07590---19800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bb5ab09afbebd1c7648551faba84f7f582171a8eefcf39be1763d4e4e2611f +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-07870---15551-in.json b/source/parts/detail/c/custom-fiber-ring-07870---15551-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8becd6c8eda5ca7f677e3b0ebe5b95aba4a7231 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-07870---15551-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84fadc662acd1d38c1d1cd2ab03ea853929c3257b89484326b156e325a22ff70 +size 433 diff --git a/source/parts/detail/c/custom-fiber-ring-09080---10000-in.json b/source/parts/detail/c/custom-fiber-ring-09080---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..448a085dfce2b7e2d64f5675c1681fcd46c2f934 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09080---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e823d5177df6965064459f463dd0d6868665faf5a305dc13a6b52d97822d4828 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09750---11300-in.json b/source/parts/detail/c/custom-fiber-ring-09750---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ebf355f5b35c6b3a8cd959f53b69c371cfb425d5 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09750---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6594d62e78da4f5b9f9961188cd704617b8a19ff990cc7631ea55fc16d1a7c08 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09760---11300-in.json b/source/parts/detail/c/custom-fiber-ring-09760---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35fbf4dc3d98d729cf5f39bb362f7041c4cfcdcf --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09760---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2d60a4bd6a60210d0766cabb3ab7c1d99218987a1314d512aa5b9866429b45c +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09760---11400-in.json b/source/parts/detail/c/custom-fiber-ring-09760---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4750a7524aff2a714c4a9fd627eecb93a44c2141 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09760---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a2efdf7bc162bbe02ff87198b78acfd21a3becd35135ef323bdc917b9b10bc +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09760---12800-in.json b/source/parts/detail/c/custom-fiber-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d9a1ad4c3b0dae338dd418c4e8f6ec334b1ebd7 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a8e135b047be3abe821e4db2cff1a3ad4f6c9d079774fb1e4ea5cac3dfcd4b +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09760---12830-in.json b/source/parts/detail/c/custom-fiber-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..24763961851d73f6a3d2280b98f4db637e1986d7 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2fef4a4d069e817a47629b8b0468d10721ff4bc5dbe195578ddfb4a5822fd89 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09760---15900-in.json b/source/parts/detail/c/custom-fiber-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b36aefcd86be1d7010a397baffe5dd9d8b6f506 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70732fed2b813a4f30b900dce405bbf8e04dc1630d8ca82f520b1e5e52e089d8 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09760---15950-in.json b/source/parts/detail/c/custom-fiber-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b9d1336a777840f260b5c0b40088bfa3b2e3053 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07528f5d3f55197c912389d1f7d32fb2d0d0de3d4723067df5c5ec86f8e44cba +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09760---21800-in.json b/source/parts/detail/c/custom-fiber-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..628d2b87fdc3e924303992641da20160d6ecd67d --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ee74823a825b3c8ec8784af0c996afa80a35a5d5ce3e94652895cac2c8d298 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09760---25900-in.json b/source/parts/detail/c/custom-fiber-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..530d77e63ee78b224a80e67e252ec2d833366ecd --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02b865d6c359926559446664958ffdf262d2daf27e183741eb0c5e7910f0049 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09799---21799-in.json b/source/parts/detail/c/custom-fiber-ring-09799---21799-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb65df6acd471c8ccf8f8804d9875f43c87994a3 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09799---21799-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e2ba12844f5a3fc3c7b3ac3c97cac051eb9012315f79733281e0ef17519e8b +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09800---25900-in.json b/source/parts/detail/c/custom-fiber-ring-09800---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa9078694a6a55e750d4b880df29d8a954396e95 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09800---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91adb182abc8b8f817eb6bf9fcb6e0d1addb83b2babcd942f78614241d251407 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09840---19200-in.json b/source/parts/detail/c/custom-fiber-ring-09840---19200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8c31fd0ae684ffbddc39644552848444efb02da --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09840---19200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6487081e231a6ec33ddec946919312ca52d60fa20d365ba107aa683dd718f787 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-09990---15950-in.json b/source/parts/detail/c/custom-fiber-ring-09990---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e47c27430a4052561f0cac0ef452a46b3cad7766 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-09990---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2097f8c6691d83e54e65f3527f3b5e7ba762b37e2d628799f2b01d6818dfe97 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-10000---15000-in.json b/source/parts/detail/c/custom-fiber-ring-10000---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec63784a12414d05f58da843f8244416e843341e --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-10000---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc87cf63f049f2a70c4c0bcc824166aecd719ab86d3466f13aa02c5301122fa +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-10000---17600-in.json b/source/parts/detail/c/custom-fiber-ring-10000---17600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..14f4a16b264eeef47cc16d90795bb6038a3cdd64 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-10000---17600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926c3d076b8fabbf5feb910ec0b20bdb00fd912176042d600d838c1b423880b5 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-10130---21730-in.json b/source/parts/detail/c/custom-fiber-ring-10130---21730-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45dac425ac871f9817103e4dec87b0fa3a525e23 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-10130---21730-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8f6c718087f3f3c7850ea90b89a4821fd5ce397781a98576f0fa461bfe46aa +size 452 diff --git a/source/parts/detail/c/custom-fiber-ring-11000---18272-in.json b/source/parts/detail/c/custom-fiber-ring-11000---18272-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76218571ca6812b600af8b07ccb7e9de73223003 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-11000---18272-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34a0c4aa698b44e71fd40c561a442b654bac3eda11fc239d9b79d1f3b1fc7592 +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-11700---21800-in.json b/source/parts/detail/c/custom-fiber-ring-11700---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..349e2e549d04d2d5f285ec71d522522b5340a383 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-11700---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c939506bcba249fecec9a8d2e5e8eb4aa1ad5d2238b740ab3cb19d70ae45569b +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-15400---25580-in.json b/source/parts/detail/c/custom-fiber-ring-15400---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c2af392ebd24d7df36df3935bf8870093b02795 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-15400---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4413311639a725498f63641fcc0eca0ee667a01a9f3615a6a2b1c99719cfa97d +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-16370---21730-in.json b/source/parts/detail/c/custom-fiber-ring-16370---21730-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5302392dbcb1a48ffb9dd4b0c86c9305590e3938 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-16370---21730-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f0cfc97d3107c685faa4bb2dfc9910b11c244108b65e16f4bde29db6345444 +size 452 diff --git a/source/parts/detail/c/custom-fiber-ring-18572---27858-in.json b/source/parts/detail/c/custom-fiber-ring-18572---27858-in.json new file mode 100644 index 0000000000000000000000000000000000000000..696cde4b826da6a2a1825a8ed11a0be8d27f4f02 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-18572---27858-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0317e4640e47b3ba8925f86df8bf53b675d7779e261b1aa0f15931c6344fd8b +size 416 diff --git a/source/parts/detail/c/custom-fiber-ring-26000---39000-in.json b/source/parts/detail/c/custom-fiber-ring-26000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f66caf8dee5781024a851740d7247564d213d340 --- /dev/null +++ b/source/parts/detail/c/custom-fiber-ring-26000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14cd72cd26eb07cb1fc0b3e9e74c5627cc898ba2ec48bebc48076505906043e8 +size 416 diff --git a/source/parts/detail/c/custom-fiberglass-ring-00000---21500-in.json b/source/parts/detail/c/custom-fiberglass-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e36887195cab6952701e8c2267c435711eeefbc9 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c4fdf3cf50d2f3274ee88eeb66da7c74e3448f7391fb95af7fce58eeb56f05 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-00000---58750-in.json b/source/parts/detail/c/custom-fiberglass-ring-00000---58750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27d2a9525334f4a226b01835eb794607b0d6a118 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-00000---58750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a323144e86a301b513e36a328a91525b301009e73e74255fae924947264136 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-00000---60000-in.json b/source/parts/detail/c/custom-fiberglass-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c512b01e28e4182489b498d8b00fb8c4e24f890f --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75b5dfb20c8fbd5f41b38074531178bb54e8f45e5206cfdc45d6d29f0ebd42c +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-02362---30000-in.json b/source/parts/detail/c/custom-fiberglass-ring-02362---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2e94c3d4dae9916ce371c4f1e18d3f726c39220 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-02362---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5817a7918488603fa0cba74e2935a9377f2f45cfee0bb5b35ea8643f62545c8 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-02362---30421-in.json b/source/parts/detail/c/custom-fiberglass-ring-02362---30421-in.json new file mode 100644 index 0000000000000000000000000000000000000000..072221f2c6175147a3f9d5cd857cae1ed11e7529 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-02362---30421-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f73fea55f2dbb31977ff21db9c958c3e7769861037415447a6f708ee13ab8b +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-10450---15200-in.json b/source/parts/detail/c/custom-fiberglass-ring-10450---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..871892d3edc384f7e544219a15111a374b7cf685 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-10450---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:207be67547dbce6b612cd10edcb0e2380231969e1bc53c474ec466f509837f94 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-12790---21500-in.json b/source/parts/detail/c/custom-fiberglass-ring-12790---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9737b60398c1a4dc5b14d4e1c398152c98e7ade9 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-12790---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bdd0e4df25010763bf2905dc8898027157db73997cc9ebdd053c0d162fef9a9 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-14100---15300-in.json b/source/parts/detail/c/custom-fiberglass-ring-14100---15300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..faf0de23089a66f27c3a420649a81d0a855cc39e --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-14100---15300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3c6985c669afd13cf391785bff1669419dfa4208c2aa48fbaa92c8a43c10a5 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-15000---25580-in.json b/source/parts/detail/c/custom-fiberglass-ring-15000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b994733c7448b1f5b30927c1eb33d0f7a9791724 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-15000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79b599bf269ccabceb36c910b5a16127c36977e43a7d24173b580c6326b736b2 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-15118---15803-in.json b/source/parts/detail/c/custom-fiberglass-ring-15118---15803-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ca080e03e2028363d539c571d9b1d79cc733938 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-15118---15803-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2328c802400c5432474a83f0165a1ac16ff8b730eb1681acf648c44adace9f55 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-15210---21500-in.json b/source/parts/detail/c/custom-fiberglass-ring-15210---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1da1bbc651dc154b29a9e8ec6bb774bc5094cc1e --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-15210---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f5a47b6d2a6a7c81c7b951047e1b4ebb31b437e1c6f4779b9a54193661a33a +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-15748---25000-in.json b/source/parts/detail/c/custom-fiberglass-ring-15748---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8f6d3b012b46dbf64e4b078e2767b7c6dda764a --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-15748---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b69062b5e355b9a0980c6f27001b7121071e9876e484c0f5689d15babe4f03ac +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-16142---21339-in.json b/source/parts/detail/c/custom-fiberglass-ring-16142---21339-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a007c8d3b2445546489a31d77ec1b42cc4bc7884 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-16142---21339-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4d1bd12364458a2a93057357f3d17d7ae448b53c103fe34340845f9c22ffd76 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-16400---17500-in.json b/source/parts/detail/c/custom-fiberglass-ring-16400---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e44ff73a089397a086ec986cb8f02ed70b30b801 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-16400---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358222d43d60b978d9c652429f72a6cba560b79909b190e4c0ccb198fd4dbd5f +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-20300---21500-in.json b/source/parts/detail/c/custom-fiberglass-ring-20300---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b4f4453cc56d5c03d580b39ab7574fef7fb5d4f5 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-20300---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2f98a5439f880bf0f3ec33cd5507d6baaea56c11ffc84ef6e343fc62007936b +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-22047---30000-in.json b/source/parts/detail/c/custom-fiberglass-ring-22047---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..143fc0d8d52b44d1bc7f3ad1b5e49dcfcd091f17 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-22047---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3c98f4edcd2d0a262875a5d78172c6121ff944493b98b22eed03c472c01fc2 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-22642---29909-in.json b/source/parts/detail/c/custom-fiberglass-ring-22642---29909-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8fd9bb14a08a921ab30f861abbd432e1f0e365fe --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-22642---29909-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4dda980dea00fa92cbdde69b2abdd72bf3b2e52c362be8828ccf84aabded4d +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-22820---30000-in.json b/source/parts/detail/c/custom-fiberglass-ring-22820---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7e03de0e7a69d58ded77c4f0095a7d80ab0e92f --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-22820---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e63536fb75b0532fd82389e62b705f6cc932909d54c0a2c14aea8aa243e6dd +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-28750---29900-in.json b/source/parts/detail/c/custom-fiberglass-ring-28750---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8fa8adc54ec7b9fe1d7b79c012470891eef79b7a --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-28750---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908aa5d5b15ffbd0bd92ded10992206598d21a01923766659f2d70d16397c13f +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-28750---29980-in.json b/source/parts/detail/c/custom-fiberglass-ring-28750---29980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0c6d5f593b8c3790186a4063527549bc868d6cd --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-28750---29980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:742ab690bffa48ec55d221b1be5fb648c4add317eb888ba9ad94b8066dfa0e6b +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-29000---30000-in.json b/source/parts/detail/c/custom-fiberglass-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..106ba193304eb17cfe6f6a4e1af1f94705f8e0f6 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ea1483484172dc7d6d01a910a4de4710cdc2e04f0cd26b5be579a15555d926 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-30200---31250-in.json b/source/parts/detail/c/custom-fiberglass-ring-30200---31250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c2a56c75df7962685444e83139dbcdc15447ffa --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-30200---31250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c99e69a9455447852adc76c81b6e8db759441fdabce1c93e3f8eda4013f1eef9 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-31437---33071-in.json b/source/parts/detail/c/custom-fiberglass-ring-31437---33071-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d943239608f19bb44990c5d92595f8d8d5b0d32a --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-31437---33071-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2027bad8ef791e32b77ebf2c117c7dfa0611341ddede32f663e9ea2fb3e4a8 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-38000---39000-in.json b/source/parts/detail/c/custom-fiberglass-ring-38000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8dbacee8c31c0ac55c7aa36853a4f1ee1f209ded --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-38000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5efbbc069cc35a7f042ac5ea6bcfe9819b330807556b88c1a2f165b1d3d2c8 +size 431 diff --git a/source/parts/detail/c/custom-fiberglass-ring-76700---77700-in.json b/source/parts/detail/c/custom-fiberglass-ring-76700---77700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ae1e504f8433dc6a4d525aff4c000f4f830bf24 --- /dev/null +++ b/source/parts/detail/c/custom-fiberglass-ring-76700---77700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9397c3fd7102fc2458d481657956c9b51729de832b284f203bfa117a78385bd2 +size 431 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-00000---20000-in.json b/source/parts/detail/c/custom-fir-douglas-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b45d8e16453f82c6d86428b304d74309b4349b44 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a57d4d4d13a94ae77a549f72f38a7320a489e587148943f201b4de47edead27 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-00000---21400-in.json b/source/parts/detail/c/custom-fir-douglas-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53f71b293cdd478542df68abe5f1b84d5a2c8796 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b738695d0007618b30322e30a4d872fb785922edfe6ec6740a5fef44c4120df2 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-00000---27500-in.json b/source/parts/detail/c/custom-fir-douglas-ring-00000---27500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..734f78d94ba41933ca56396533dd902af6c51bbc --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-00000---27500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04d0fe1c1ab7b0ff59992751392e621b706a5f42e9ac50c12fd6ae67d2239b1a +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-00000---28750-in.json b/source/parts/detail/c/custom-fir-douglas-ring-00000---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..613bdddb838ec787660df1dc03cd4899771e8001 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-00000---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:544727e423e8690f55cccba0b84ba23f31e3ac37ad6cebcfd10859e92b9a5864 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-00000---28800-in.json b/source/parts/detail/c/custom-fir-douglas-ring-00000---28800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1cc01f8a2ec57433cb3c29d3cf4496137d9c8519 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-00000---28800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92e6f382c92b5a0f279b85667a59128c419c007d65f4c7b21265984b88fcf45 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-00000---29900-in.json b/source/parts/detail/c/custom-fir-douglas-ring-00000---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f8cf94cba1188cad0b6d2aef7f0eeb28c4017bb --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-00000---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d226532d2309bcb4deec228eb7827fec62937c96dc903b9de3f3f917f79a91db +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-00000---39000-in.json b/source/parts/detail/c/custom-fir-douglas-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4eb5b73285f4aa14e6811d0e7ac5a32c98b5dea1 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6018cd82cbe76bbb3eba72485baa5d46d6a063ed38d420d76f87268f10ae4c2 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-00000---472500-in.json b/source/parts/detail/c/custom-fir-douglas-ring-00000---472500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..423f469967295da257ed72f3bbbb4092c5237c7a --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-00000---472500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca59bd8d9a2ddba7b38e12a1969ff336a155b5f8a33e63f42155c896904cbe6 +size 440 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-02500---21400-in.json b/source/parts/detail/c/custom-fir-douglas-ring-02500---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed952ca72dc063d86f10dd11124d5a156a615124 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-02500---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6505ee58ad8e3229de4e1305ded2012d00161d755a54157f72c42bcf05f21db +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-07360---25880-in.json b/source/parts/detail/c/custom-fir-douglas-ring-07360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40226c831270a951730141d9a2bd83d366a00568 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-07360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b743c7360f2c4b877e37017481d47f5a9d105badeb015b1deadac3ca150165 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-12000---24231-in.json b/source/parts/detail/c/custom-fir-douglas-ring-12000---24231-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10c92fe843aab40b2c92432aef55c80fe432de92 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-12000---24231-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6772365d4d76c9321f562e2932d34f029ba19389f07f91981fe9c3348866e4 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-12000---28500-in.json b/source/parts/detail/c/custom-fir-douglas-ring-12000---28500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f4523c25782fb37fdfec97d6046cdd849d163d47 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-12000---28500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063642d3296cec410198f70c0ac09897790ed36c78c322f662e33f164ce74925 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-12100---21400-in.json b/source/parts/detail/c/custom-fir-douglas-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db2b1d43582fcbb7a67c56b18ea362d619dc2c79 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be24a930c07aadbace046d25b7495b186cd6128f19c6280b14aa2a8904b80a44 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-12100---21750-in.json b/source/parts/detail/c/custom-fir-douglas-ring-12100---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae88ed61dc377373861d90684cf1481a0f4f9d87 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-12100---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70383160291a22b03155c916124a862b1e7745b50a36fb9901d8a7e653ac74c6 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-12100---30000-in.json b/source/parts/detail/c/custom-fir-douglas-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2df120c93853b084c421f6130f7c5c8958960f0 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bdb51fa8694dbbcfccb33ede3ce14763c03e8f82f1684ab580e6d3dc56d5af3 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-12690---25880-in.json b/source/parts/detail/c/custom-fir-douglas-ring-12690---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c1377af773709efb424f899150be88da96b47881 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-12690---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2942765e9c98f0734b93deb7ce54da91b936806fd9ef4839d7b99cecd58313 +size 441 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-15000---53800-in.json b/source/parts/detail/c/custom-fir-douglas-ring-15000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f86ea5c6aa21f70300ca8c50a1b9d62b33549e86 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-15000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2185636d7b891d9c4a92a5761823172a111d99e1c0ee436349697a57c93f8b7e +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-16350---21400-in.json b/source/parts/detail/c/custom-fir-douglas-ring-16350---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c5e84c0e8a1bde0aea023d7a94ee82a624048b48 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-16350---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63a06143b16fd092fc971523c081702e5bf5f0b698877bd03d6b5fc9720b94d6 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-16350---40000-in.json b/source/parts/detail/c/custom-fir-douglas-ring-16350---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01cf8ca92dcc91fc8e92d39b47aeb8eded0456fc --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-16350---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd40ff4d2ad5f15216ed6cf267cee65fc363969cc95c2bfab69fddabf34813b +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-16350---53800-in.json b/source/parts/detail/c/custom-fir-douglas-ring-16350---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ebeda5cd4786790488d92ff581305bd8f1c5c2d --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-16350---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c2b6c1415aa9a2079376d2506d5caf57593386ebdb001be30eb4754e13d33f +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-16490---29800-in.json b/source/parts/detail/c/custom-fir-douglas-ring-16490---29800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a783d865b79eebcf03aecb3796e12206c7f06767 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-16490---29800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7454b185ecec46d1418801832941249b8a0e203e37d65a5ea8ff2f159127a153 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-16490---30000-in.json b/source/parts/detail/c/custom-fir-douglas-ring-16490---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56804adbd62875dcb26bb75ed1273a571f46f8f5 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-16490---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40b0cbafc8363002aa030bfd73ade03a81e03e0e9f9a4c1548acfd703c3a97cc +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-16490---39000-in.json b/source/parts/detail/c/custom-fir-douglas-ring-16490---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bda397736a97bc729b606c4c91b598bdad0cc59c --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-16490---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc44cc43fd3ff78ad43a04e6b6baf8c4a8c3274ebba83abeaeef8f29af260fa9 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-16500---38000-in.json b/source/parts/detail/c/custom-fir-douglas-ring-16500---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b71358d938eda10d99dba1fb7b88316f3f2786ed --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-16500---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9008008fb0e0112bee72ed46a3ddab042a1dd7d9395c436bd4eb191125bfa285 +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-21600---39000-in.json b/source/parts/detail/c/custom-fir-douglas-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f0e8ec07f6a6b759f452bd9d52a5e0077cfc6a9 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49d30a7e744b9371ef7d631e8a0fdd9013a34b4a6d089c1f17f8400c8741536f +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-30600---78750-in.json b/source/parts/detail/c/custom-fir-douglas-ring-30600---78750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..88d56181c78b158f32aac14d4020ea811989acd6 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-30600---78750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9bf466c00f05dba5e0f9254f8d8440dc33df91a9ccfb9f4c6ce40f3fe3cf3e +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-40240---472500-in.json b/source/parts/detail/c/custom-fir-douglas-ring-40240---472500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..374f436a982f82b28729761024b445dc6ce3924c --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-40240---472500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf51f7bd5f724abeab51bf50dc6308c16c8a276e6424cca811f23f1f8884898 +size 440 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-60000---77500-in.json b/source/parts/detail/c/custom-fir-douglas-ring-60000---77500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3f693b806a5c709cf0392f92a1bf114516327a8 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-60000---77500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:748692e466264f0c89ecee0e70a179f616c18bbfc2f6338508ddeb55633f481b +size 436 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-61550---141351-in.json b/source/parts/detail/c/custom-fir-douglas-ring-61550---141351-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9276dc12c6313de1cc651cd8c498679e8ff70e52 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-61550---141351-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76a0762e677a23d0c7b1a38a227957ff82faaa4354602153345e0761ee4f6136 +size 439 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-61550---142500-in.json b/source/parts/detail/c/custom-fir-douglas-ring-61550---142500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a951c96107157c3e60070bca5ed2b1be769c3a39 --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-61550---142500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:759b0d8f90642a38beeba947a75840d8f4f3ea7eee928ecd870fa5e4d2e40769 +size 439 diff --git a/source/parts/detail/c/custom-fir-douglas-ring-61551---75122-in.json b/source/parts/detail/c/custom-fir-douglas-ring-61551---75122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..057c0e350664caa7885d29ca92749c330b08980e --- /dev/null +++ b/source/parts/detail/c/custom-fir-douglas-ring-61551---75122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d529af36c605756796c93107ecc804b0271e22729ac7f7122a591d86c1ead56 +size 436 diff --git a/source/parts/detail/c/custom-fir-white-ring-00000---38000-in.json b/source/parts/detail/c/custom-fir-white-ring-00000---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95a14a7d1f46f1fdc802b587a95678c8a0d92da5 --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-00000---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b26bbdb5d1c13ffc4e08eb1c47410589335e0f19c55561f94f2a2713f6b747a2 +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-00000---74000-in.json b/source/parts/detail/c/custom-fir-white-ring-00000---74000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b8fdf3463f4e84992e3a71c6ef7eba05c3a4b6b --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-00000---74000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93dc611d1e51b97b885c92a8ee0f6b059dae1fbe7a2a4e7549e2c7d1a3a2256 +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-00000---74400-in.json b/source/parts/detail/c/custom-fir-white-ring-00000---74400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59103b17a7731d6da40c8a306d67ca67104b8eda --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-00000---74400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1b08be88588552621e002b49ff21a115fbe43bb1b6b8d9541f91c826f90fc2 +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-00100---60070-in.json b/source/parts/detail/c/custom-fir-white-ring-00100---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f89a2bc9a45e9f08078746415a52ef2e2764d73e --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-00100---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b204017c87d409295265e2c27ac342a32e4f57a2483a161c8ea8d50c6cb620 +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-12100---21400-in.json b/source/parts/detail/c/custom-fir-white-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..92d0b3429b0b7c2fbede51dde55af22fbf3c2582 --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48104cff6feed843c13f3c40c90ae546f328fea5cd2842a22ea2534ce175391d +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-12100---39000-in.json b/source/parts/detail/c/custom-fir-white-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..116d3a9c95159d87bdfe4d25a98aacca0c02b7d6 --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:830d2e9ff3d684c893d54341411c3e784208e0a3cca4f36a423562276d564b35 +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-16350---40000-in.json b/source/parts/detail/c/custom-fir-white-ring-16350---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..805c93fda720e491347cbf4fb0261d62eda8565e --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-16350---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6323b5115df34d73243d865ce7e66bb00dcec674ffeac93ff760fc1c900b512a +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-16490---75120-in.json b/source/parts/detail/c/custom-fir-white-ring-16490---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9fb6df86caffaaf6fc355ed82a3d500a32c7b15 --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-16490---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ac1adb6bd41b001fb707afa296c66de6f00de448c9316f3e66a1725ffaa4bd +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-30600---78750-in.json b/source/parts/detail/c/custom-fir-white-ring-30600---78750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70da31ddea9eaf6308adbe243e0546e462ae3cc5 --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-30600---78750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e4862066d22a3c440f239ce8b9d3a3bed164177d187f72ef0c47d09042f3d7f +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-40240---50000-in.json b/source/parts/detail/c/custom-fir-white-ring-40240---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8193f44f0ff3f43b8ef30c5e9bd2c967b00f093 --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-40240---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23da33962d8741c31bbc95720ecf642c3f4d402b1c9dd7f06f1c1dc72f8ca812 +size 430 diff --git a/source/parts/detail/c/custom-fir-white-ring-40240---60070-in.json b/source/parts/detail/c/custom-fir-white-ring-40240---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a7d15daa27abe32b9bebac26b51b5d20d50185c5 --- /dev/null +++ b/source/parts/detail/c/custom-fir-white-ring-40240---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a55ffb5f3b17c3ec61e3f19558090183da671a7291b26fee59cbffaf085b224 +size 430 diff --git a/source/parts/detail/c/custom-flat-nylon-34x30-flat-nylon-34x30.json b/source/parts/detail/c/custom-flat-nylon-34x30-flat-nylon-34x30.json new file mode 100644 index 0000000000000000000000000000000000000000..3ee7bc2a93ad272f63f960544b068981e45abb8e --- /dev/null +++ b/source/parts/detail/c/custom-flat-nylon-34x30-flat-nylon-34x30.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd654d5b533f801acb23d9e2f8433482ba0ccf6ca492c54f538abdb5b6dc773 +size 445 diff --git a/source/parts/detail/c/custom-fwfg-ring-37800---39000-in.json b/source/parts/detail/c/custom-fwfg-ring-37800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ca8a92c67505b7f8adae194fff882c683117653 --- /dev/null +++ b/source/parts/detail/c/custom-fwfg-ring-37800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da63498a912fe5367fc570469918055c341c9f908d6768be8d8a69c553b6d405 +size 413 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---09640-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---09640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..293ff62df9a24a46d0623780b68690138f95d844 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---09640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805507ca1f5c9704049227cbe4e12d7b87a2380401be9f5718633d1d24887135 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---11450-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6473055d13bd681d98fc8ffdd86e3a1160e7dbf --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c6ecb88c1dc1de807c3d6e394c699431703d51c94e9a2395b0d722da45ac7a +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13700-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f797cf76dacc8c06cf912b11409b529b893be9c --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4420ab22b8c25179ab3ec600c5299329215d4501eaf05d8cf6a1e53ced61b314 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4aed6baf08bcca4549761445662bdb924eb85afc --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84cae1c41a85ef522d524e76fb4a3e70a416d9bc159bb0fc7e5f56852ee234b3 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13940-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13940-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec58fb39c649bf4bf7af814d75ea4831db37d9fd --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---13940-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16e8b855b6d3563f7dce30293d7cd0e36e31a431db7927703171d7e5899dff60 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15080-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ff8b41dda22029d5e21c761768fe6c7e4c73579 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7618838f9c45c89e9a49a6fec8b5284e0f4d50dec66a3fa5ec25045eafc3ab1a +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15250-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fbd0d19d2bc8c0d42e8fcd573aa326e4f75eccb6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:919f7944c798dad3644713f82eeb52c4fe6673025e6bd6c3d3a785696c26ed87 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15950-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ce27bf28b5e77212a15c2ae436121be67420f13 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf2cb4258d6b68bb5be0aab412628952754b92f0be69d16ed8e2406dfead65e7 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---16250-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---16250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e76ebe180183d2579d27570f1c7ea13855283ad9 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---16250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13030c9001347c70763531666ab1e66a6a6beaaa729e4364e513a31769490c40 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6060db9111711ca8ce8c2488cbb7b7a94301533 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a57dc754bc992bfff2d71c9b2a3ca3f5dd61eca41fc7ef862c4c1a5cbf0910cd +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20045-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20045-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f235e8d52eab6317e567976b827d58834ee36d2a --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20045-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:239f2ba17e5d61c66f17112c0fcbd93816bb5c1a8873d6bad9e41c4035c8f31e +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20052-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20052-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36ef9d6a4240778795b589c22a43198836ce9215 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20052-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94586365aef11548a74e099f0778ab770fb58ceed5926831402ca547bc318eb +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20120-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b4a6da7327c1dabdef7a60c612afceb5878ef3d --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---20120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21755694d0f652bbb133123421a6e9a0fdd769e66a7315a54df63a49166cc511 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21200-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11335323b615e05f929f1947c602f3165d24bb74 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f14c741b6f0bc904437666048ee737352b2294d9a483f28ad46d1a1c0b56989 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21260-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2769a72489046ba99c0fd6a651fb52ef7c3b288 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df12faa9d70bdfc2d80a8a72793ea4007737ca96ba5ddf630c0b40b079ef355b +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21293-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21293-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d4664a1fcb4d2c70bde4a49c0da97d690bc63daa --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21293-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:692815a36c59fef024067b9f658b53bba83ca9eb8d58d3c3eb9e2deb9ca8ecd8 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21350-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21350-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85129ca5304daf86d8ada472eeeb3cdbd9a9de98 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21350-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9546c666fd836646b99dde1af42d20db7b451a0d80ed93ad9eeb7a7194f6893f +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21375-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21375-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ac3d1b52cb4f4e132d11cbaf5e1494cfce56db5 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21375-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a4cdd720438ff9fbfaec736d695fbd6bd8c29e0a6a9b7f1ad78388bf81f452 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0278bd4e8329886c79bbf675a0be31d61b34c387 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a757fc97e4cc19032a0c643e34d64e18a39a735d45e809321c40c8dd28c67898 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21520-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f858e2c6aeee2dd63e6409c208f1d526e74bf7a6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c16668c7ce4f882516095ae817dba9d0304d3a7dbe441821286879d100d539a +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---24500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---24500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf5baeb77577f53c2a3146069287b592c9019bed --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---24500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f40abd0a3320f97dd27e36705ff0e45f77082b9b59affd79d2355338d65b651e +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---28051-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---28051-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9212843c2306918fde59d238fafaa22fe91f7d54 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---28051-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ba8b0e014d7bbb995251adaf5057e98bd2f21fd67c4fc1031425bb42564ce9 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---28750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b7b4abee668e2e75c3eadd6ecaed79bc150cbd1c --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b83fd376fd36de5727f8630170301f689724c562cbfd623aaffe88ffbc768f65 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---29232-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---29232-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a64e6b88c0cf8dd98d0e78a9c07e74908e5a7d0c --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---29232-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43a6dafda0c07cd3dee39578302722d8f81d5706bbc381a5ae7ec396f1924cd2 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5945058d8d9129225815bef56606ab4bd4927450 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7e8d8fc2817c5252a315b93ddaa60492d46d18778d2a8c600438336df3fbc0 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---30680-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---30680-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6beb8f480d65a45fd11e0c06f7f5661efe965c60 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---30680-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6cb3bcf30782b6c2c4e713b409708c850350bea21327819206285c35237981d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---34000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---34000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..494e843332e06c89853123865c3dd3a4fde3a343 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---34000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9dffe0784ba9f7ff174e60d8c822991970204ca0193a581f8f4586e149f0b8d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e78d485dfc7b5503305ed9d036e4e47f58b9747c --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55befd7a5a75eb6b8fb65caab9b5176b7226c85c77a43a217aa1cc689439cd70 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37760-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..206e8e41a5877b04c840969590d22c6cf9902112 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:929258fde324b30333060a114c4ceffcbe27450ab837ef33edf41a479571a86d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37800-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eeed3c7c5123cee176b4caf5354b4fef1bf74918 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ada181f7eb6eb768d2d0e5317fdcdaf5c74c7212b3a7f86e6f8d7dd82eda1f2c +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37900-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..423458e3d329181c17fecbf4a2e9e80880d96c7a --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---37900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc40778810320eaa88c52472cb1daa09a1248eae66380d75c7d9c077254466a6 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---38300-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---38300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f969337f42629a067d58f33cbee11deaadc0cf8 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---38300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0470e6892450030b5d920fde6793ecca12f86c7929257b76346358af19829957 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9f7a8e9aba839c16ca38a82fc9b0690a544af192 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58823e44a9301fd0905845209b92ac72f94e6f19232f6619959793233415c63a +size 482 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39030-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5acdaf79c71cb1d9ab473c485dbde017bc8d9322 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe64a287a473062b812cf69b67d9c4709bd71534ee731d4680fec1728cf8e830 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39100-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66af027875fcebcc0a036eb51b7ef9abd6b03275 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ff05d9eec8f5482e112834e94093330702a664718a417f7fc4ce4f78ce724d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---40000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d4382399d50d19b6fd613afd84e3f52b69a042c --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de3cd20248ccbe4b0de1912b68ceb0c947db85e73ae99235d72cbc146677c854 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---43750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---43750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..770e8f5a4177f00f503fe2acf12f711173abd9e5 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---43750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab5b3b496b415acd71dbbc037c87db956d4a95808be78d0b4f1e037c0d1f920 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---48750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---48750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..740a9ef0d7308b5fde631d6dc7bce8779e706fd1 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---48750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f44f391a670c0a0a2324466dc56f3aa66168dbe307f0507f4f14cd4d553863 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---50500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---50500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6d4a89e256fb5fe26522799907203ed8e0734836 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---50500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce5b2059fd60c926288dd34d14058e58436844664679594cdadda1fa156a981 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---59728-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---59728-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56487b1d7e52604428d4aee1880deb2c7052bc52 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---59728-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f0b0fbbc3e901d320b17776264b0572a1d50dd9dce23f99706762b776dd5bd +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---59730-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---59730-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0774f1ca573a09101f75d92fbefcc274376a75a --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---59730-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684761e678d9f3cfa244c4068658274057b86d5979dcc786a877b424c6304ff5 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---60000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..365fc4194479736f66abe1130b65a55ffbcca846 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba156d09c9005190b692c61751d68b22a6ee7a45da760fca71ea602459e451d1 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---78000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---78000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1330e7304ecf2bb3e09780348e33e6714a228350 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---78000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e81f7bf9ebe572668fcb707cbe32b0ac5f045529b9870f004ada34ea2b9acb54 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-00000---78150-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7391b071b0742883da4e196b031fd6a952edb3cd --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-00000---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19f77c1191ebbd5affc99a82696e51fbcdca43257c0748f545a066011a40b763 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-01575---13780-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-01575---13780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9de04d81081c47ffa6152dca38506b3668ae8727 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-01575---13780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36a6438e298afdfae22c32c5710246fb7013a7aa1056174d70acadbcd9e757fc +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-01575---14961-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-01575---14961-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e61e4a271ce6f9ecb97784caeb863ef02234e39b --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-01575---14961-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c5afb86f4bb5df7a356da05533204849328ea5accff3cf35acf2a1512f0f7d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-01875---27756-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-01875---27756-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83ab8af6ef2d1fb95ee74efce189f093bb7d2f83 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-01875---27756-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdc3f7cefe20b4e61289bf52fada2c8d3d202c04dbfd76cf3ea6a9068cb28433 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-02500---25500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..684610beaf809ac48130c1f1dbe2209b473de2fa --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02734086f6c91b2adafaa2940fcd92eea6b3cb05806d7b651e0d083cabb6521d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-02500---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c0def5a762e9ab07a4e570d72291124d8d26ed72 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80fb5b91fc0b7529435a9709c515436f6d3446316d921270d743945d7204f8e1 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-02500---37008-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---37008-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b9b5d92e88fa36778a786844aa838f43996daa7 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---37008-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c663b93c4bfbda9da6003de24c2554a7660f0b2d4e0a1bae81aca77fd8a0b251 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-02500---37500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80e59b1d31d74df478b4730c9d5dd5d30351c643 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1edb5351a56b16db4440ef08141d46bce3860da23fc6b8cdaee1792a4e98be4a +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-02500---38189-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---38189-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a776a2b77d1b3e4206339ed48e77ec6f7fb7c4c6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---38189-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00ad4a274eed3724f0753b811f564690fdc6766343e00fc3dafea6456cede9f +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-02500---39000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49b36dc4370ad70a5952231afa2943b030e601ac --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-02500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102d60443321ecf946b9704aa404e6db5d4b829a998d6cc479391cdf10365b45 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-08833---15580-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-08833---15580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2f859805249b0d3d1829ad8c62afea64933f30d --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-08833---15580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18b73018a0441eef85c4b5af21e86e5529a740b3ac635c679f723f9f6c80ec6 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-10450---15200-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-10450---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae15e296bc1d4a7ccf89ebeb4855582d1dd3c23b --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-10450---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c81700c2bfd37191f5d99b52ac6cf428bddbfee684618d30185a1f86a090efad +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-114100---116600-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-114100---116600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2bf8c70636b7781fef8c19d6461fed4917b14f77 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-114100---116600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e8fe53f282979a06567bf60fcfde8c8651c7d07631025e3858b90f49712db1 +size 449 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-11810---18000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-11810---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20ed975290f75b3dab4676e0de0c491701dff8ba --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-11810---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459e64046278481289ace6fb7c9f8f08201448db1afd61f3916ad938993354ed +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-11810---18500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-11810---18500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ca8b6e873fed91c0f87d28afc4c0626f7e0fffe --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-11810---18500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e6b684eacaf2a41dc9213c69b3e3f2ee6f6d7dbdfcafcc3edf145a093e5e34 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-12100---25500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-12100---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d9891f157043f62f17b3908775aa0599a2e2cf6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-12100---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b99630da28dcade72434052ff295beb429c7a9d504accdff72d6e55a96a308f +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-12450---25500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-12450---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..61cea46ea0ff78f917c0ba24cfdb76e787f2b874 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-12450---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6f63c77212a447438f6ecea6e52d58f37c5c09549c92eb7c10c63f7b20bc14 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-12500---25186-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-12500---25186-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca2ac12fb9b47213eccbde2578bff2ed289b7081 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-12500---25186-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08439d571b04900fee64784cd99718c5f16a0baba522a1a3e8246275441e5904 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-12500---27030-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-12500---27030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f58f36038a79392d75c5276f42ab28f4e0c33bf7 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-12500---27030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ce80c372b3af3c582f693ecbeae55d3ad8a05425ee16a1d833cd0a754b49192 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-12550---15200-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-12550---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1184360e3f4a72e44c257cf3fcd62e7050bc72d8 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-12550---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3081d7c73a83308fd5a6d9700f591691bb65ea48bd0ebe7267f812b8b2d72bf4 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-12550---21520-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-12550---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..22098fd515e1f5d74b7f48fe34cb870c41074d17 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-12550---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70be38dfb16c64af3a0e754ab7d14af4b5845e6b93626db2a6aa810793953eae +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-12671---30225-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-12671---30225-in.json new file mode 100644 index 0000000000000000000000000000000000000000..595147c1bfd356c03e54bcb83526f504193fd97f --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-12671---30225-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99f9714d526c72790546d18a41f2770c3a95c39db6929e4aba74f1e6c2f4b2d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-12800---20409-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-12800---20409-in.json new file mode 100644 index 0000000000000000000000000000000000000000..442abff6842a57504efb13677337c07dbb4cea91 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-12800---20409-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688725ef702ff1aa883760bd1ccc57f4894a8c912e610f2493a186c76a361b1d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-13750---15250-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-13750---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94e2db10ec6bf10c24bd3174abe3190c103e7a28 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-13750---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c944d08e8aaf1b0ea4c9c7a39611f0f5ef18620f02b13afb9914963df287157 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-13780---14961-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-13780---14961-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd078cc3e375b2f9f81ca99e932429996b965ad8 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-13780---14961-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63aa4ef2d575ae93743ce108da185b1ea894955f44c3069c413c2f082e7a5c4b +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-16250---25600-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-16250---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a7c50a527245b4c4a124351815a021e9ceca2c4 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-16250---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f797364f9a7f233d796b4dbe28e334edbf0d2bc5aeba68164a984bdab55c19 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-16400---18400-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-16400---18400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3300a7e7132e06170e2817e1e816508b9b8ae8ea --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-16400---18400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c4921d6f262219c730d4ab73f27617cdbc388e4d6922e35365902bcb652770 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-16450---21260-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-16450---21260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0a5d78f1a92c4f2974cc3df7feec75ccf5e0919 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-16450---21260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1b5a12fcd99c7d6b12e403d0702cc2f48c19f807852b8b1d3ad3b732b77384 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-16450---21520-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-16450---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..adaeb4a33d6d7b68cd92a98e691175d7ea618a7c --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-16450---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1f7e9a5ff2277528eec3275eb70117d8c10a7ee8b36aa8029cfd56737b00e0 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-16450---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-16450---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5c395344b75e1eb9f57daf9a3408c8b32c6f476f --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-16450---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213fe9a1c5e0714d95b92ea4c5cb56b8faedb06a0b515d21b0a36185d1f9a98c +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-16535---22500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-16535---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2f19dd7def499e41f097f655187321ceab9bc86 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-16535---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74bad05d4abf042c41db25198398d416036fa7a438e970937a0a9ec065b54fb2 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21350-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21350-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41ed22c790b739cde0925b1ad499dfed91c5e100 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21350-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:553634d75b783bcdab29f2ec71ef32f178aad5013be0a98c422efea12bd968c5 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c11bb7c237cc3e461360dcd83d48a0250e8c4a24 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c264a2deb2de12f7731712b28734c88fd458ed0387f931e41d6e2cb59218f127 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21520-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b880c782f92756f13ac438c00c7890dc3bccb998 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-20000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dca90639dd873a34519f43db85f4f9755687d1572b8e8a25565b2613fe754454 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-20200---21400-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-20200---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb95e0cfa342b0dfc2d9d3e253815969b672dcab --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-20200---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b4a070c04ff92081ed9a20c147f82b56300c305e088c843f6aefc7d6810fbc2 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-20741---20749-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-20741---20749-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2adcb244c8be4f4675f9e0a7f9a5fc9b25c04e18 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-20741---20749-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21874d2b5e46456c6bbfe338a99cbaef6335c05a4dd565c4170d72666b928f83 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-21299---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-21299---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2dd97ab4afc2ca1181ed8dd66611333ff68228bf --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-21299---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4996c70e6d5be99ea84e43a520ec6403dd930fca6c736de32dac8365c1feed61 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22481---53625-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22481---53625-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d2659d65d32288d5cfe3b502ade78a4cfdf2fff --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22481---53625-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:270df4ed4c668b054b9b3ae1f60749e1628f37e6e70d3424891bea1d1760e2ab +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22500---22580-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22500---22580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94e854870fd1281801253c9d94b8ac70a9dc8834 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22500---22580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0fc035731a0b22e7f3451362a72655b3ba757ec480255ef327fe0e640b301e +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22500---28750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22500---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bcf7659a42f58f8c1681ef0e65a80a859013bdb --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22500---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c176f23730bd28936cd871cfecc442236f74d3aee3fec9de29c87ab1e509a4c5 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22500---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03fe7ebdccfc1693cf52fdb580730a92393683b7 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da315543501aa0aa3e205eced4e51e620d3748595264fcb2d88f554a68ee4ae +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22560---28400-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22560---28400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2d970efc9ccda3a79d163457c7ff2a31d30013d --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22560---28400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcbd939111678742f68708af260b8360fb161461733772638bb36fcac591624f +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22620---23890-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22620---23890-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8fc72bddc3db9e04b97d1c51ba3037bfa19af69 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22620---23890-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a471d41a8e03954779625eabac08735be1d346f9d1db6ec8a3c370f4db1cbd7 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22760---40000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22760---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65b439d3890d73908878a46d4ce2ade5ad84df39 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22760---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008d3915a5d422b07246625c0fc2e6d1e3cc619b6362cf1a486b1242ac0a089d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22770---25000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22770---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18140619174d0505454ac407d5234129bb7c56ab --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22770---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872598cd63a12d5f1db8786a0c763a849b7bb2f0fe7dfb7f6a3f55e9e28891b9 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22770---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22770---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff61a74b95e9214ab02dd75740b0f8dd6194d6d6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22770---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121c93d2000197621d045bf7c986c69664f90ae8a86a701a2712f2447fc43826 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22770---39000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22770---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b7958b2df97cf35885fefa836ca38080d9a2864 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22770---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bda5d62a64fa957148839235ced3dbf13e1ac0670191c0f5973bcfa4070503a +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22770---43750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22770---43750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec2af19507eae9a21b5685fc15208b9337731fec --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22770---43750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d7ddcbbb20727aac27827f5c73cdf48b7876e98b4c11a38f4d0bcbc269e6c6a +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22835---37000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22835---37000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d870262aec214bba977782f3339f119d7bde9419 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22835---37000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9608976ebe6d3b68dd3298d63105f0a904ead080d266d41695c5c6c0d74d11d0 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-22835---38750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-22835---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40615af55c9cb2cfa9b3519aa9b9b5d42858fe84 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-22835---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a0e02b46731a87c1dbd23fa0e4b2438a13db330f99d9c7e6025dac37f1338f +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-24375---30420-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-24375---30420-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a668fea107a708dab1d0f459761cb901ff63001d --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-24375---30420-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d425b8264fc6bfb55ff0a40af0279a0e84064d0cae241b959eac7ebb68b926 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-26500---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-26500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93e3c3ca2567618ef5b8d614b0a6a0f01084c4f2 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-26500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cf8b270fb61594f10ba16579c6a6b30f7e1346bdf7fa5ad163d728d967045b7 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-27100---27200-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-27100---27200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f0a8d1186a4d4b4e294c9ef157ba2c3d847d6fd --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-27100---27200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76211c1603a6d3593ee66381e8cfc61916f474130817fa3faa3368bca22de2be +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-28275---29232-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-28275---29232-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce0303040d2d032443ac2a44be3d10b2943f992f --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-28275---29232-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1f894fedcd49ba387709c528eb4fc9b1c1dee78261391ebc5726133891f9a0d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-28390---28400-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-28390---28400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff11c42f0656d0be2adbb3d8c7e3eaf53725b894 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-28390---28400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d106ad02b23f74f970bf63e467064501b0d093a22485207d4c453e98daa7539a +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-28750---29980-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-28750---29980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e77b4051d275f12c876f0166cfa0c2c42ca663c4 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-28750---29980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5a8f690c0cea42d5ac20ae81d218bfebc226763fe756408dce3f85434bf4299 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-29000---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3aaa49d7700b236fd3b26e63d52a28a79cf781c --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa02fe94eb04983ac8cb81851928bb08c2c56719e0ec6f5ab81a10a57705ba1c +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-29372---30194-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-29372---30194-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2afd31bda9442019eec3074d6751ca3fb311c10 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-29372---30194-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f3b2393241cf43811ac4eb74ef6459375ffed3921c7cb7ec9596be0d9178e5 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-29500---30000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-29500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cd8c9f0d9e7eb7ae15fcaec469f46c8a88b565f8 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-29500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e419186f353d5fa9b5089d9c49a23b37035caf16cbfb8dafbc40db71d1c264 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-31250---40000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-31250---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1575bd719cb8b053df318032db78b66da513a40e --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-31250---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f16a39bab14d5bf0c85d2ce0b66e33d52e298fbcce17a381935caee027efe01 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-31250---43750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-31250---43750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d4397f1b90cdad6f49eae13c60215d1a2c41247 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-31250---43750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc443bfef5ab85a23d51cdd47a9bbf496028a8c0c4ee3bc163bb9ab848796442 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-31250---60000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-31250---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00e6110aef48a120dbb09d3ddd51949510fe1b97 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-31250---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68533a95ef0fd16f492414eeec9ff1d7e378e7df90f44e62eba0547336f5e70e +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-31260---31300-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-31260---31300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83f7af87a46da5a91e8be4b81f8a2a1ed1d6c406 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-31260---31300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e2174292aaec1b6777288ed5f9a813e34722a0c8df9cdfd3ffa3c131d4b987 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-33187---78150-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-33187---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1393ec3349eaf8353c90db320c3da596eeb5a5f3 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-33187---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85491f3bc8e5257ae697ce34ac4ac6569ae403466ba6cff507518cb190efe03c +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-37150---39000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-37150---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5922060125289b9b0b4d3c4f8bfde3ba52a34d90 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-37150---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee5d4794a323b7823a900968aa0029dc5dffec03165f7c3c3bff0c3a88b4190d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-37500---39100-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-37500---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ccae8c2f798137e4534e1e25d82037abb75d431 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-37500---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ae7d5acccf40095914cd421aa54358a580e2cdfaa34c36667ae2b01ab8fed3 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-38164---39000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-38164---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6194c95098a969ee7ecce34e01fbbfe0a8901223 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-38164---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea68e9edb527dcbe7c53300a621135e457d5e8dcb16a4d2b1832b13df04d1ae1 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-38500---39500-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-38500---39500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65a41caa7a199af645a98a847e54877b9f2e90ed --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-38500---39500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fd5479363bff3516a2028b6f35a48c48c7fee5a0c22f82f5accdfb5c894f07f +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-39000---40000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-39000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49b7ff97201d246b8e6099c4ed34dca22947bbcf --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-39000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed1a36b388ce6df02c9b364a8e83a2305cbeaa93097b7fc8a07a51a887a8ec9 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-40000---40200-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-40000---40200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66b88ec44a14a81872ade65aeada4171a9e4d284 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-40000---40200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9440ede978138592e6eac6c20fd5e1545589ef8e5198f6fe67a13921b000f72d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-40000---48750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-40000---48750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..703b66281a1395d0033fa924ced4d737b1ead168 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-40000---48750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1398a37acdcab29e617513245e5bb5881301b9b36720f2a6cf7d9820da107705 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-40000---78000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-40000---78000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2f488936af19d2b4f93369782be76f28e599461 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-40000---78000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d839ed4ffe83630681557c42de8c162beb0330dae445d954693bca2a5c8e85f +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-40000---78150-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-40000---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9685d78e27e5bfbc895fedadff40c01206f121f --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-40000---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b18cd9a5d36b1ce9f7b6c0b43423af2fb447bb2ed1a16985f0c16f10900ddfe3 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-40240---40540-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-40240---40540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a7f6acbcea4176fb613801eff9ddec81780001d8 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-40240---40540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf2a620d09aa86a9916ccb0388a99703f95e0f7bf947055db7d31efcd7093d5d +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-40250---78150-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-40250---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1fa40c77ebe75ef4e6b4b3dec6c9d98815d272f1 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-40250---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b231b392332b2a0363a87fa9ab498a1b7a68635b0743179b5bd8678309755f2 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-41050---78150-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-41050---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1538cb809ea9064bccc6a4395a399d1ff0eacbbb --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-41050---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fd648ddbc9e4e208644f21513dddde45a8b9487c2973fe61565cfb966830008 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-42500---43730-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-42500---43730-in.json new file mode 100644 index 0000000000000000000000000000000000000000..244267fa244ad4d8aa39aa75e3efe837099432e5 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-42500---43730-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0712b695d4462e584d65d45b4a159a9331644d1536a0d0d55452bdd9be4cc7 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-42500---43750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-42500---43750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c2ac526da3d7ff936a09b66386875b29346490a --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-42500---43750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52b9a87e9e38bd515f61a02ac0f61b55c94bfb2c387819ac78a03e1a2240e2a8 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-47500---48750-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-47500---48750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3868c078efe75ad20fd4c8cbd7fe8d2b2c818353 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-47500---48750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39db52437dda8834c29029492d092c6b8b48367a88e6a0c1c82e40e2b0a387c +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-52113---53570-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-52113---53570-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df7de3f678598a70fdbeaf9d1b7e569db3f861f3 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-52113---53570-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4bd88909ae4fdb7d4ee4184b80225719a5705c7e9892c995d2154663107cacb +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-52113---53600-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-52113---53600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c32d4c89275838374fefeac6b756be9034c181ef --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-52113---53600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67929d19c8cda601a5102ba3e277f8dfd53a4e7eea2b5bb7f040dfb3a857664 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-57750---59980-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-57750---59980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4585d61dc6807d217a642075a62ef7b0cc801017 --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-57750---59980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d77e20852983fa4921497fc7ddab5e7666b8186c8148c743b3288c36191a6f +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-58300---60000-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-58300---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9299c9eae8fd3d0d839f594cb03b98d91db70fbd --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-58300---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14222a14526a751efe3f18798033968097bf87d8bb9859c661bee9144b890d05 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-75180---78130-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-75180---78130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8475f5848fcefc381cbce20248becfcbce7c52ed --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-75180---78130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f7f8f3319cdc4ae954bcdf30fbbca84906e0410a04d7982b2a8bacdf3e780d3 +size 443 diff --git a/source/parts/detail/c/custom-g10-fiberglass-ring-75180---78150-in.json b/source/parts/detail/c/custom-g10-fiberglass-ring-75180---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a3d8c380d70e4fbb9b591e1d2cb1fba010d11fe --- /dev/null +++ b/source/parts/detail/c/custom-g10-fiberglass-ring-75180---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea895e37e6476e88d85871931676e657ffff554a2542f91b06d53587b8c172f +size 443 diff --git a/source/parts/detail/c/custom-g10-phenolic-ring-07480---13386-in.json b/source/parts/detail/c/custom-g10-phenolic-ring-07480---13386-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a8c9fc16c60259bec82e121b05198174fdf6b98 --- /dev/null +++ b/source/parts/detail/c/custom-g10-phenolic-ring-07480---13386-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a413dfd7b84669b2a072150688816f57c67c9981794247c7e0a07f17123a31a4 +size 437 diff --git a/source/parts/detail/c/custom-g10-phenolic-ring-10000---40000-in.json b/source/parts/detail/c/custom-g10-phenolic-ring-10000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c57bca259a3b1d4525ef69c5ec1c20b1cf8f095e --- /dev/null +++ b/source/parts/detail/c/custom-g10-phenolic-ring-10000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982235ece45e3d124da794102b39f212270151ab6b7dec3a10ab4f1a5ce3b082 +size 437 diff --git a/source/parts/detail/c/custom-g10-phenolic-ring-12000---13244-in.json b/source/parts/detail/c/custom-g10-phenolic-ring-12000---13244-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b693f7811231a97456fed96e2a6c9d2c0576dd6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-phenolic-ring-12000---13244-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3846819140d09b2b2096fcf9363038127fc46e3541b42470e59595b935f90737 +size 437 diff --git a/source/parts/detail/c/custom-g10-phenolic-ring-12070---15250-in.json b/source/parts/detail/c/custom-g10-phenolic-ring-12070---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd23f096bd68c946667599ec9dc1c4d7f4204a0 --- /dev/null +++ b/source/parts/detail/c/custom-g10-phenolic-ring-12070---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6983b0dc7e7499d6209ec0b8acfeb3c4f116ca0ba17bd9a654cb2688be10e25 +size 437 diff --git a/source/parts/detail/c/custom-g10-phenolic-ring-12100---15250-in.json b/source/parts/detail/c/custom-g10-phenolic-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42c34a10523243d397b910f5b6bdea631ac5e68f --- /dev/null +++ b/source/parts/detail/c/custom-g10-phenolic-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a208c140354a0094c26f0f12552861a90aac7fe854fed4f2f8aa05257457a0 +size 437 diff --git a/source/parts/detail/c/custom-g10-phenolic-ring-12100---17900-in.json b/source/parts/detail/c/custom-g10-phenolic-ring-12100---17900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e4a1f62da34dbd1cee81b4dfc0d5481b424b8b6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-phenolic-ring-12100---17900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97efaaea8904b018afdded4b5c69c9b6f6348b70722f2f8e9c104c9c053cc049 +size 437 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---14500-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---14500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c4e5509e5badf194404f9853cb279ab28da7e6e --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---14500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed913d0aa6fd2c77d9cd1787e776cc4b5876899c5ccfbae16f547ed3c62be75 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---14600-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---14600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb59b2afc70716f182fe1f263ea8a996eb416e2d --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---14600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56560eac3cdd2666848640e5ac5a914b29f74d40293b0e372aca416b55888b98 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---21350-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---21350-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5763c011f917156c261378a824f54551255765d9 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---21350-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f5ca65872e54e51f1dea4667a4fd871afc3761dafe48c0c9c9e45d34ba939a +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---21500-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f45541dc0a3c7ae861a30064796a629aeb37a24b --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cfda97c01f7a56d2db9010fbc567d50232734603241280eab86ca7f43690a7 +size 448 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---24000-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---24000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e9edf8869bc4ed1f455764aa4d28fdc1f3bf992a --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---24000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0530a1f7ae60f0c7a2071c8c4e0f531bb7b9d7d610b3371b89323e5c34bdf97d +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---29900-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ed11531f492af21607b56f38b1e1993f46afd9a --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:338212f407be2b48a18110bf11e144cffe7b17fd9dc73f6f6b0a7ca05aa1a0ec +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---30000-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31db292fad80fd82af6ace7e8cb2b3d54d8c30c9 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1579f2416f2906d87c188b7923edfebd39da1f81d046a2850abe2c63e1646572 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---53600-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---53600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e14a25321d8be56eb606b16914b88001a4499fc7 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---53600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0733cff3ee98a3e616012eebd872df88e00364152ead65d8b837c421a85d8fd0 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-00000---59902-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---59902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2384105e132d7a0eaf5cd15aacdef3692d21707c --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-00000---59902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351ed859b0eeaa416cce90cfc58e8ecf3391d386d80d4a78a70b2f46ec1f2d00 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-16185---38610-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-16185---38610-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76dd91917d684033c4c60b249eaa7362fd7f87b1 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-16185---38610-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607bab557be0d0aaa7a3340a789ff85bf95087212d3408e1478cfc70400845f9 +size 448 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-16400---30000-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..30c9cfd7cc94d2eab027f57f70be90f528b77048 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160be6ef052a7cd309406b7a86568683e66cdb5d525aa9820a26c804ca4c8c61 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-17500---20120-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-17500---20120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b4c73d72597b7404ad9862b103bc4b65b1c2501 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-17500---20120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4348c4b6ef36a1edd9064c8f803289721b4804520c85bf9595ee0689ca6277 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-22600---30000-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-22600---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e49ae707d366fc20e4bfb0e1ea59291b3a81d76e --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-22600---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636b8b90cb674bd2d455cf0ee19507e4def007427bc1caff184577a9c185564b +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-22640---59900-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-22640---59900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c604e9b03f512353526b2e4cff1a17c896548fc8 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-22640---59900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae0164ef905cb99d242bbdeacde41c1f41dab8e2383688d22702eab960db8994 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-22900---26400-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-22900---26400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95370222836a55203cab484ce4e9a4ebf37e0635 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-22900---26400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c868c82507b3cf5327e9d1db198f94a2b87ff5a958efe9797c7fd2692bb1118 +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-28750---30000-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-28750---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d458e1103917451cc0710905248a2f57cb4cb4c2 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-28750---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ce2a025791831262cd8eb30024682b0146b1886a729c0063894ec76a3f9dd5e +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0062-ring-31000---53600-in.json b/source/parts/detail/c/custom-g10-pml-0062-ring-31000---53600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..639d0e5f601ddd5ec053e510629cc8ba520b236d --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0062-ring-31000---53600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbd8712159f037d7a9c1fe7e1943bab9c2a889aefbe2229bb3e5e72f96a7d06b +size 442 diff --git a/source/parts/detail/c/custom-g10-pml-0093-ring-02450---28690-in.json b/source/parts/detail/c/custom-g10-pml-0093-ring-02450---28690-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea12996b2b2755e3e56619af2f889a0e211cd603 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0093-ring-02450---28690-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f642686d7751ad1cb35523398b705a35953dd983faff16cff29ad00988c2e18b +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0093-ring-02450---30050-in.json b/source/parts/detail/c/custom-g10-pml-0093-ring-02450---30050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0df9f72ba2fe10b350ade7962d3c270f2a9758f --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0093-ring-02450---30050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:817f5672cc214339f3852805e3a2dbc1d957cf292494f8e84be4a3c370cf8ca4 +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0093-ring-11417---15354-in.json b/source/parts/detail/c/custom-g10-pml-0093-ring-11417---15354-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1295746cb2cb10c392e6a5fb656151826a4d22bc --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0093-ring-11417---15354-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8590c8efa3dc493398688bcfb5c63bc464b2a9dbb86ecfcce792ac22f90bca79 +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0093-ring-11850---21500-in.json b/source/parts/detail/c/custom-g10-pml-0093-ring-11850---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18fe8590e5cdbaeaa1f714700dc3a2fffba6a5d6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0093-ring-11850---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61e87c406eb2d71716c2dd35931ff53f1b1c907c3a8f3ab98902a4f078a9566 +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0093-ring-12240---25550-in.json b/source/parts/detail/c/custom-g10-pml-0093-ring-12240---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd130369c71a711cf5fc3db8d95518dec775dd36 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0093-ring-12240---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b923669e633493bcaab9534ff6f2b1c0bfc00f4718807e348623ee2177ac3f79 +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0093-ring-22600---39500-in.json b/source/parts/detail/c/custom-g10-pml-0093-ring-22600---39500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e2e69dd6da7f690a12996107f195f17cf2ed30c --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0093-ring-22600---39500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8121aba20553c4d8c9dc891dbd7b52a403653961c8a0f678dad8cd12e6b0dd06 +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0093-ring-25600---27500-in.json b/source/parts/detail/c/custom-g10-pml-0093-ring-25600---27500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bada008f10e5ac7b9a0670b6916778b015c96c05 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0093-ring-25600---27500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:233b0bfb0cba0df0a5fbe46c55c5dbc5a7e693864b8f39ed5f366334745953ef +size 476 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-00000---16000-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b6419289ed40ae6e61a675a3ee1b0c495b23fa7 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:493feedafa843e76b69efd7827d61432e9184eddb08ed51269869bd4e7a6d7ee +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-00000---21250-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c354e41bf49fb73c232bcb954af02caa5e9b006 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27be16dce87f60c783b981a692a07c68d5c324864509976a27f5a741b7d40bc4 +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-00000---21520-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2c2f6ffdb03181de0983edd23b3aaa0b088ca596 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:190a01cb9ef35f8b94d099caf4af27c23d02e9a86547a9a09e801d7d94ebffd1 +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-00000---22040-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---22040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ca3022dd1265849e8fbe2ecb91df5fb6bcbdb0f --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---22040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc233176184080789b52c8823a909d1af615a0d16fdacadda70b1e5c3746fc3 +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-00000---30000-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75777f47b822fb02eafb7a16ee70015cd685e14e --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81752db7e7dd3fbe19e8675d38da3bf2f194341c9251a9d8299bcdc3831ebb3d +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-00000---37750-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---37750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d4fc11d167afe54e0821a16b93a484f51234402a --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-00000---37750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdaa6fa4bd6e8825c75dc72a999e41568b0a63208ce5754ff4b3cad74f88b18d +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-15180---21520-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-15180---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85cebeb03adcb67f32b993cc9745748f20d65bec --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-15180---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f716db82373e81ebf181bfebbf676af7d9a4543031249361f7b4af23f65b246a +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-37000---39000-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-37000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37bc3b34306a64a47af74be8a28897290309b61d --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-37000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a3222cda7946f9f4f5df6a68d1931a61fb2c7e24d2fa5d4d18858ec431ab3f +size 440 diff --git a/source/parts/detail/c/custom-g10-pml-0125-ring-40250---50000-in.json b/source/parts/detail/c/custom-g10-pml-0125-ring-40250---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a49c75f237d471663cb490686c3b87c95f88b2c6 --- /dev/null +++ b/source/parts/detail/c/custom-g10-pml-0125-ring-40250---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ad22d21470de49e12d00cc67253a0a19eac80479409ada413f273a90050f33 +size 440 diff --git a/source/parts/detail/c/custom-g10-spiral-wound-tube-ring-75500---78115-in.json b/source/parts/detail/c/custom-g10-spiral-wound-tube-ring-75500---78115-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3be94e93ea2db905009332d8c9eda6a197019b3c --- /dev/null +++ b/source/parts/detail/c/custom-g10-spiral-wound-tube-ring-75500---78115-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:024082208ff4bb6c57f89005f83397a9c252ef4ba787ca381eb3f8492c88d7ea +size 464 diff --git a/source/parts/detail/c/custom-haack-transition.json b/source/parts/detail/c/custom-haack-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..c5597225dbe3b58e9b8c9d9a92d580a5e4b5ce01 --- /dev/null +++ b/source/parts/detail/c/custom-haack-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a126d3682a2d3d02118ca9a085b01102f9523559b6cae5de35afe50618490728 +size 570 diff --git a/source/parts/detail/c/custom-hdwe-eye-18hw-18x24.json b/source/parts/detail/c/custom-hdwe-eye-18hw-18x24.json new file mode 100644 index 0000000000000000000000000000000000000000..0941a478b7ad2837569339c54f1431f285f171b7 --- /dev/null +++ b/source/parts/detail/c/custom-hdwe-eye-18hw-18x24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa251975c6d21cd0e7236e995f63b12ce3dff34366df21e156c09e7c119115b +size 379 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-00000---09500-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae5d8e0ff801c5e252e00d45c880d2502f290052 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf339450413393dab744769392430e7889005241d064a3edcb9cab2b239ec23 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-00000---21400-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de2da39be3f2e8c50a023a0af263487fd68e5379 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f933bc6afbf3e09503d11f227b4fa703a0626c4138af729d7bb45b03c3ac4c9b +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-00000---38000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54c59e621895619ed1a62f1a301823879e2a1b11 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5ca60de15a1b68612b5d226e18b75edf28b1a7159d766f92602839e876ec9f +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-00000---39000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ecd24a9b21ee5962dfb88dde60344bc245b4c96 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9279b1135a44bb38969836c0a2a0a68169168960cef59dbc9dabb8a5e1f68bb0 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-00000---60070-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc454d204f6dd028b5400363714268e4e38d7b69 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e39b5ba25300cc281545d3ffdd2fe002ed89b8941b01202782fd8ac41ecd8ec +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-00000---60071-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---60071-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10ff4ae7a3c1432a35e715ce7097c3a7f4e2ccbe --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-00000---60071-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcfb6a3644feb8eebbffc15fa122176b1ce1e06cd5b5878a1c8eea56ee7926e5 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-01875---07690-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-01875---07690-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b06c0318190bc2cbec602670ac09f3a2dcc3f022 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-01875---07690-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5414bba156bd41d932427f6983fcaf18b114275c3c1d5a0177ed1f7227e04a3 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-07360---09500-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d68befbcc385b27749ca1aaa66f62a9e7ea8885 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc5c78588bc32ed493fadfb5229297d9e567839da41fdb26c15e58e23f2709d +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-09050---09500-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-09050---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..51248bfd55a34fd7dfaa1e44d16948693e9402d2 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-09050---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f279e275d7f6fd86bb374070f6c0c41278427c274b57308ae6a9ac462b37aee8 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-09449---16535-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-09449---16535-in.json new file mode 100644 index 0000000000000000000000000000000000000000..865bb47ef492e9cbec9c708820d38bfeec0462f4 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-09449---16535-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e22a0b9062ab9dff5bdd750981bf42b713412aa8dfe66b765ebd6c9d8436397 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-09449---25591-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-09449---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf7640b1b4c8c067dd64834635601d27ebd97ab1 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-09449---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a9415763f08a8d58a3098166b0eacb03319be3425199dcd6db9baf7db5c287 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-09760---21800-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9f471aae6038cbe939f81b6a2ace91d538cb3ca --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47fcbe4f0cff9e057298bdee527c7ba080aadea0e754c1b61ca1b3eb59614b18 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-09843---25591-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-09843---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f68f8f03daf970f29ceb55c6303aa7902bf9fb22 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-09843---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2acfcb966ed94a5b3932307b21c79e6383824ee4905c14e73f6f7ea68908e46d +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-10000---11417-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-10000---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2b0e3efc6c437d3689990caee5baed5b82d98b7 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-10000---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e195cded56766f5939fcf58adb67bb4b0cf900fa473ad10182cc5579b418c10a +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-10680---11300-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-10680---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee1ab9c5556a05f3942682c78a364ebbb136d3a9 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-10680---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19073306156e6f375265596bcfbc8b65b3551335380eab2eb54ac0421cdf0796 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-11900---17000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-11900---17000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bbb967c1f30caad28883d7592e99b6985999c2c7 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-11900---17000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd4d15c974e7bbe3f1dec87783c41450767ae2072b525cb78e389d68e1ae7389 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-12100---14500-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-12100---14500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c43391cc08f1f7a0efccca73531a10786a9be01 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-12100---14500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbcc2f5b12888d4d0cdd31b05968345faf9d69a30a5141e2f58b689bed32cf7a +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-12210---17000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-12210---17000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9249443ef070960e063527ca7c6ae736ac76cf6 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-12210---17000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ede377650ad1ce286ccc678cbf590cdaa8935e7d066ca12bffb5681dc8c8bd12 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-12598---13386-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-12598---13386-in.json new file mode 100644 index 0000000000000000000000000000000000000000..414bdf6c5aa92859c6db64006a2c89a6528324db --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-12598---13386-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffa0bb0633ae70117842d9c6fcea5628bc753358788bf252a8d5ae1776bae11 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-12650---15000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-12650---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..319983500b86f4649c655e672848933adc35e70a --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-12650---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69504bdfa6d7a41c620f991778e1675dbc6c8f5e273904f2d7f226639bbf00fb +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-12690---15250-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-12690---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9acfc5a07991ec9642b7fc2c956db16b78ea434 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-12690---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f55405d4aefab7d9682e9e1aeb3ce1e3ee3d131e3e6eab129b78fff1fc6ebfee +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-12700---13380-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-12700---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..533a773f70537c28193ce6c5c68da3145c4aa763 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-12700---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ef6e619b277d86968fd5be232c7deac90a3e18670c511057bbf01c677e649f +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-12700---15000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-12700---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..522037acff6c89b3049cc20e02faee3f48e49d15 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-12700---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da4b7705965eadd0d008b96a4d0efbefaf3ea2268c2f47b28d402d2f09cad68 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-14630---15250-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-14630---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f72470d40e89424982069c2e5ff83bc51bd0e4e7 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-14630---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d79c061a0c485f649883501fe277135856dde5e4ebec792228ed9122e1fe1c6 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-16142---16535-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-16142---16535-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bc84a7f808c1c7e7a840e0b17ef7d25a7c3662e --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-16142---16535-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2c60ab2ef5d840fdbd09dd43455e67986a1f7aa4ea07a4ac240c24f4ca55cd +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-16142---21339-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-16142---21339-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8804227bf4aa077df28a0960f859ae761bc21518 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-16142---21339-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e302c508c9e186515f32fedaf9646bbce56af7179f27045bcf1d267b9f7a5674 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-16929---18504-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-16929---18504-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d2e1f9cf6d83bb95c6dc1246e8c78ac20a1359f --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-16929---18504-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80baf3229c884e948e42746769b2847c5ae22b81353680165ab14593bca8b74d +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-18750---21300-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-18750---21300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f46472ef8a2c1d8395ec115595a1d57577136b7d --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-18750---21300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2310144dc52a74ffff1c669545ac406d9a8a662a049b4735f0f431bb0b8a2e +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-19619---21400-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-19619---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5298dd00d81a7e98b6c51d00657176b9d2d5163d --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-19619---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d1614471a9281188af263c7a2f6c444067554293c5b125aec765f53c4d6edf6 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-20000---21400-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-20000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a98feb786da5c2656ef81c5cba2db65195d73809 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-20000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47361ed6e8f76a166529d7b798c449fdbef63f3ea7aa6a240658e9b2688a3969 +size 517 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-20280---21000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-20280---21000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7b482fc75bd2c22a7faa80945d8c670856ef173 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-20280---21000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c623b1b9d0444b9bcf3d5569aa9f5c7701772245468f970ae6f818310601f5d +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-20400---21400-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-20400---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1a1945775dd89eb530a15c52051bd382041aa6f6 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-20400---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f89865faf2bade19d78e993c0bfb1138871bfd247799c5280d699ae626f94b4 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-20880---21540-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-20880---21540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..113d89f850ded5af0de9e81987d0981e4ee33dd3 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-20880---21540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b593a65c45f8c8a769cd405a277d106428f2cd8ec3fa5b2725db898d687d217 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-21250---21300-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-21250---21300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cfc98b2b5ca3ffcf897329384935f4af3b7c010d --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-21250---21300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59aaf59354e46ea84c78a8cbcda51ed4746cf804569bbe3e64281521c7ec45d +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-22500---22700-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-22500---22700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa5afae80b12a4d247bc12baa46a98087d99c461 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-22500---22700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3acb42087b1dfbebbf22a114cf7f9e57a5b3245bf8b9dcf7bee0fc5d3bbca72f +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-22500---27000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-22500---27000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b21e8de96bde2ec8b7aaff232459e2b1d39da41a --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-22500---27000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a3fb949f814034eef4bc25cab48b663397dc88882babe1ea719750546dde488 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-24000---25600-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-24000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4adc449a16c205cc84578c29ccb39be09a23039c --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-24000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d250a98e49dfaa187362cade058256cb5406af24307ff67eb0940f146b0ecd95 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-24409---25591-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-24409---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b6e75defbac34eb633a3c25484d0dca8d16648b --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-24409---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:861a7d88e16dd134bb3d291680f0a7fff00b8655e5434a57731579c5ab46d968 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-25100---25600-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-25100---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a9f968cdd2e6b99befd087640bb48bd78b9f35b5 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-25100---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3b0c798bfaab5cd2111194bf23463dc4fa8e5021b7368239ab191607ab5172 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-25580---26000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-25580---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20c59ca3ff9c4aa9105c8bd2d14ffccc09a0ce85 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-25580---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51a8bb4b9084fbf6f27e107a9de99d4f8385525af11859beec3fe73c8b15c8ef +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-26378---27953-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-26378---27953-in.json new file mode 100644 index 0000000000000000000000000000000000000000..04d49175e9edd3abf9097ee9d620ba98e342c194 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-26378---27953-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad48597adfc2549944053aa8a4818f819b218186f381c9e294ef2f702967d15d +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-28000---29000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-28000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09924e0198dc1d72472dcc028d1d9642ee262489 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-28000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f6b50f0b51150d62ac58384f59bdbb359d855867963894f54275d679b091ba +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-28780---30000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-28780---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3377d04503699ffa4a0c8978d9eb22c451da6095 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-28780---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7183a2366399167dc3c626ff4abfa12d831ade9c27fe23d9c7b95b6e8dc244eb +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-28780---30020-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-28780---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..193eeebe0c4b252e8854545443c3d30df8630940 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-28780---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e187682dff08104704cf5dc326a4182ee3e8daf276b20fd5d339f02ac0877fa3 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-29300---30000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-29300---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d48dbb59af8f3ca0b2780b61c416d12be1ec2e78 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-29300---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc44490f480a0097262be48d5ecacf4f6a74ac49e6348538334833c836ebe5b +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-29600---30120-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-29600---30120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..450dd2bbeabf113fc16aaa5074945f7ddbd531b6 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-29600---30120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c98ceaa301cdb5210585f0ff4afad11a2dcf993e2dc75da9ff315803f78609 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-29999---30000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-29999---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a97dac08eef931ceafc8ae60e2eac72e2095af1 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-29999---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fe2c6f4a7b9a931d8af18cab2fd0abc2409b1264a99f36f41112c43e06bc1c +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-30000---30020-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-30000---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7acfc3683c1b6a601f07ce33477fa8568a140d6 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-30000---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b74cdf85d944a62f50609485d7ba567cdb64fd481c24b8647d58e6d5c76aed +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-36500---37000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-36500---37000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0fd6c118503f742af86373fc94b1c838bb98b034 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-36500---37000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7f8ce1dfaf6753c018f2cfad0bcf5eccedfabd75c5800b5ccb77e149839290 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-37760---39000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31de122774338b0df31c676dd9d3e367fb84e6b2 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d43c9633770e0c50cdbd97218aa5eadf65393bbbd02c303343df5ea5c39a3bf +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-38000---39000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-38000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b32ac58d6a5ca14676191e9401f39dc76fe69a9b --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-38000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c823d7116ca2a774c1e22c43a60fcbdaa89c590bd472c1f5fbc0f7a8d30009f2 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-38224---39012-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-38224---39012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..776294cb22a06ea915162d9809c1fda1fd693c07 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-38224---39012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b09e4a07de71b597f3e3488c4f4c619546e3814a887edbf40f19464f046920 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-38380---39000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-38380---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b02e4924aab71564dc3c2c2f6373222c0c6a81d --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-38380---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80288dca6c89e1891af770f85276296b6cfb3c65e8d73a98aa1ba6a374523c30 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-38460---39000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-38460---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c1db6415bcf8e09bc12463161b7267cdbc9fc69 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-38460---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d11e254caf74f1b71dde8854a0d63cd038a11a9c1f5fa47f83ea887d77b3baf +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-57110---58590-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-57110---58590-in.json new file mode 100644 index 0000000000000000000000000000000000000000..655c9c5a05dacc2536598fd76a7311016bc7fa9d --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-57110---58590-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66b250cab65b6cac5ca376c5f2d998efd435562b8589ba8b91edf7e98faada4 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-58590---60070-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-58590---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a22d54fe817608ba6da540d89709afef7516893f --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-58590---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:474acf9e187974055de7a1fc52d6cff3dbab3ea4eb5ae8e19b107fbd6aaa8687 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-59000---60000-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-59000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8800ff4d94e711618bf6922ccb31cb72ab60afef --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-59000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a98ea83dbd9acd948bfbdcaedb08901ff300b58be8ec662ca7ed352508bcb9 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-64000---64500-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-64000---64500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..99df0e4b0702fd85e2c3fade283a4b933e56f1f2 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-64000---64500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21239238d2ad096bc37bb9b31185525058040797df4297b56e944935ae97d2e8 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-73000---75120-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-73000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f676dcb39d4f8e74cde86a344ed7ed04f925cac --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-73000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b524cd090c7798df8613d859d135b39f2b154ef2195581ec148ebaba23ef5a64 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-73300---75120-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-73300---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb7057e455a7ea66f8707e1870f74500a387d43f --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-73300---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac14c8e70816aa1d3b8e207ed27f23d08e99db5b16cc40134e824dbd2bef0fba +size 483 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-73500---75120-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-73500---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df5b6ab363b2d635a183a1700c5c5a0c6c4fa20e --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-73500---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a40b72586f835ea91130ae29784dcbcdcef4255d15f6c887ee82b5a890c31b +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-73520---75120-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-73520---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1a227ccab45a8638f2a4b950f2a256e53131e65c --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-73520---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65e7e5414cef09b4fe4499f4d6df5d585b0f5b3fc26fdd315a630748a394028 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-73520---75150-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-73520---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65f6e0018f623d37d20a044343d53e8d9903d048 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-73520---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90687a0e99a39e9a457569da9efc1a5564da67544f86a6fb840c136528dd5013 +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-74950---75120-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-74950---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf244b182bc2cb4edfb856c30abc4f76314f9a51 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-74950---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f589ee212122600e382d2f7f9896031722fba47ec724f335c2e6d8e0aa79278f +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-75000---75120-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-75000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc9a0e4f381744691113c9da5c097913e25a78e3 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-75000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a56227bb4f767ce89f0d71ccf510d0b9b72aa592ce56eb9e2e06ca1503f9a5d +size 443 diff --git a/source/parts/detail/c/custom-kraft-phenolic-ring-75800---75120-in.json b/source/parts/detail/c/custom-kraft-phenolic-ring-75800---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c6547930148f673865c647767b460d6a323f0193 --- /dev/null +++ b/source/parts/detail/c/custom-kraft-phenolic-ring-75800---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d736d31d44dc247d50711ab5a4aa3cb2b7f25d9b013368b33b53c0a7cdc9bd6a +size 444 diff --git a/source/parts/detail/c/custom-lead-cast-ring-00000---09500-in.json b/source/parts/detail/c/custom-lead-cast-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae1869294200da90e9cb740311bf6713c9aa4da7 --- /dev/null +++ b/source/parts/detail/c/custom-lead-cast-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87b537103f7b384e7074907bd968e9268a7e15e0b912068e1553315d8f04f72c +size 430 diff --git a/source/parts/detail/c/custom-lexan-ring-10000---11250-in.json b/source/parts/detail/c/custom-lexan-ring-10000---11250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d929c301ccb00679daf828c4e2032e0f73e109a --- /dev/null +++ b/source/parts/detail/c/custom-lexan-ring-10000---11250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f757190f4e8148236eec065a2f249c0f2e5a13b52e20823c576279ce63c51e7 +size 416 diff --git a/source/parts/detail/c/custom-lexan-ring-12100---17800-in.json b/source/parts/detail/c/custom-lexan-ring-12100---17800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a721b82d8fe3e98ec50e16e0d2db6948567996ff --- /dev/null +++ b/source/parts/detail/c/custom-lexan-ring-12100---17800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76020e915e439523d2301b110b15da73d8cb050d361645c357aaa9dac0814142 +size 416 diff --git a/source/parts/detail/c/custom-lexan-ring-22600---39000-in.json b/source/parts/detail/c/custom-lexan-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f81384018e992336ecb7b65611caab803350b09 --- /dev/null +++ b/source/parts/detail/c/custom-lexan-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a73e5a2c748ed26c7c211f474775ac3a990e03665a2d7e8d63085e172264c2d +size 416 diff --git a/source/parts/detail/c/custom-lite-ply-ring-00000---00000-in.json b/source/parts/detail/c/custom-lite-ply-ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb1a28657f70d0adb7433840df7980c24096393a --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ccd68a8dd306fe385be2254d9b1f88a341238e63b57ba606cfadba735821abc +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-00000---09500-in.json b/source/parts/detail/c/custom-lite-ply-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..21114648ab4056ef24daae997ac0596278ec8e27 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114b08eae35e1c73a35a4a517a6941faefaec85e7236d0289f6ea1c6faf1d414 +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-00000---17280-in.json b/source/parts/detail/c/custom-lite-ply-ring-00000---17280-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8922a89dc54e5599f422902aa0f38a6fae6a8f7 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-00000---17280-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:333a88c49600f1b5e2c9b821cab0baba616e568d803e4311c1d14e06553f176d +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-00000---20000-in.json b/source/parts/detail/c/custom-lite-ply-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35e1e28b8fbe5e06b2a7bfc36f290b5efe389abe --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483c40ccdad6a670df2a7972a819e62bc42347cb171763b1abc1aa48255c96ac +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-00000---24740-in.json b/source/parts/detail/c/custom-lite-ply-ring-00000---24740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f5c090aa9816218c9a132b7eecc2a3659d5d9763 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-00000---24740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43f16050d5db64baa0010c2526dd4d985c46a5916b45c4697d59c47259825b2d +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-00000---25600-in.json b/source/parts/detail/c/custom-lite-ply-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2253d33f6f020c9d786669567d5e760f66525bbc --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c308426e5974fb7cb7945313726fbb283bd1e6025ea809942ba96d16266619 +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-00000---35000-in.json b/source/parts/detail/c/custom-lite-ply-ring-00000---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b40d81d6316ab4a420b41c7e3330730a0d61686 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-00000---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770ce053d64d8834460ffc62955fe9ff6678a4ff3aab666cde85479533521709 +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-09400---20000-in.json b/source/parts/detail/c/custom-lite-ply-ring-09400---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d4a21b179b168911001cd5417167a31632e7a77 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-09400---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f42ec5e71fee884546f2e76f8a588c96c1bee46e3a584863b809c7b59febf6bd +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-09760---20000-in.json b/source/parts/detail/c/custom-lite-ply-ring-09760---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efd2f048e4b5eeaa9fad97f768f7ae728253744a --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-09760---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f01318ec6e71ace7603165b81c6537617d542d4f4335483078482fbf0390cb +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-09760---25900-in.json b/source/parts/detail/c/custom-lite-ply-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39ead722c7a4ccf1d9588f13ee643f84d885a1d1 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef4c7021f060da682395ba8f11198413bd7830829f1a922ebff2b487dbe44dfe +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-09800---11400-in.json b/source/parts/detail/c/custom-lite-ply-ring-09800---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0840e1e08690eaa84eadbb6b8511b1204fbd83c8 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-09800---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d23c5364626eefe804037e92211653ecc4a41c161e5a79170fcac5f5f7f2f7 +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-10000---20000-in.json b/source/parts/detail/c/custom-lite-ply-ring-10000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95bc4873a8233156a590a91a8fd81d6b015377a4 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-10000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d1a7aa649f7d4e44f62fe2814a3af8be1cfdaecd33902a69ed52cde703182f +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-10000---39000-in.json b/source/parts/detail/c/custom-lite-ply-ring-10000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a00a9551fc89e2e1c28dc0dc150247a89c01cd1 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-10000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a850acf378e04f79bca57c0a51dc3da0dd75d6f24e924c3261e603e784ada21e +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-11417---25900-in.json b/source/parts/detail/c/custom-lite-ply-ring-11417---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eea674bb8d7c0790ff05b6dbf410dc1a03eda6e8 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-11417---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25da213c140fc6c63b8002d4a772dcd908987ba6c5a85a6e9676d8f2e60618dd +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-12100---21400-in.json b/source/parts/detail/c/custom-lite-ply-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ee0504c99b1cc178f3a897bad2a31a453b97a64 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61da5a9a7c94854d59849a2d5a6d8c1904d33e06f4cbe66b28819b700692d99 +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-12200---21750-in.json b/source/parts/detail/c/custom-lite-ply-ring-12200---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..23194c631088fa03c4da08697cf6c0dfaa1ef4aa --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-12200---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:164a949b9364eafa93ecedca8450873842f5e3df2e1ce1ea531641c8a1a61363 +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-13400---21800-in.json b/source/parts/detail/c/custom-lite-ply-ring-13400---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fd4d3f7a8833240410a5597d8f6ab8e7056adbe0 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-13400---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df598d624d5e8396ea889f8349b08bd826537ff33684443ce432a4c52ed10312 +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-16160---21400-in.json b/source/parts/detail/c/custom-lite-ply-ring-16160---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a4cc51f462f1bdb67bbbb987ac3fe66f0106ee4 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-16160---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a78f11f98b39a96de802b755e13911a2ff090e6646feb6615a1d8b0cd34dfc1f +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-16400---21500-in.json b/source/parts/detail/c/custom-lite-ply-ring-16400---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8dc10ea01662517e59fc51b52a3a2bc6f0e91a71 --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-16400---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b25a584a7a896a4d8c3cf27e3ab5a477ea41c91285b2fe6d8d27949d4349a7c +size 425 diff --git a/source/parts/detail/c/custom-lite-ply-ring-16490---21400-in.json b/source/parts/detail/c/custom-lite-ply-ring-16490---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5eaa8df6cec9812caa4a6033843e666e5074979a --- /dev/null +++ b/source/parts/detail/c/custom-lite-ply-ring-16490---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:153575222366be98b766a13df2d8bff330507df1e52d3b17be92eab302f98736 +size 425 diff --git a/source/parts/detail/c/custom-lite-plywood-ring-09760---15950-in.json b/source/parts/detail/c/custom-lite-plywood-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d11ea488ce4ed42dbe7a97311cd934d7899de0f --- /dev/null +++ b/source/parts/detail/c/custom-lite-plywood-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8007a8a6125ae6b5b0fa86b686272c8d92e4df7734c3e2adbf20eed522f48dd +size 437 diff --git a/source/parts/detail/c/custom-lite-plywood-ring-12098---39000-in.json b/source/parts/detail/c/custom-lite-plywood-ring-12098---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48efcab09e271d0a53979f96374ed5204eca0b4c --- /dev/null +++ b/source/parts/detail/c/custom-lite-plywood-ring-12098---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7af74d1449698e6d4be5f8c54413defbcd42e49d21d6ec571c5bd104770a617 +size 437 diff --git a/source/parts/detail/c/custom-lite-plywood-ring-12100---21400-in.json b/source/parts/detail/c/custom-lite-plywood-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..966110fe187e05c56ce8717dd5c9522708764e70 --- /dev/null +++ b/source/parts/detail/c/custom-lite-plywood-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50887fbf6c03ee280dd306840e1ec07754a71d7ffc8285805cb4a6bc5b5a37c8 +size 437 diff --git a/source/parts/detail/c/custom-maple-hard-ring-00000---05000-in.json b/source/parts/detail/c/custom-maple-hard-ring-00000---05000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..802e342ab1fd410fd39682ae489f5dbca0ae865b --- /dev/null +++ b/source/parts/detail/c/custom-maple-hard-ring-00000---05000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807023c579db63d653cb33e96b96d5cdb4fa41015097b96f4d6bcba8d6f8c708 +size 433 diff --git a/source/parts/detail/c/custom-maple-hard-ring-00000---21400-in.json b/source/parts/detail/c/custom-maple-hard-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70b21b04c86d1eea0641d79c83c0ee0535d552e9 --- /dev/null +++ b/source/parts/detail/c/custom-maple-hard-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7f5188ce44c4ebcf834fc92c599180843f174c275bafcb03f3b07caf9a73fd +size 433 diff --git a/source/parts/detail/c/custom-maple-hard-ring-16350---53800-in.json b/source/parts/detail/c/custom-maple-hard-ring-16350---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f661700754ec5033fda50c82ce2bd5cc160f0ccc --- /dev/null +++ b/source/parts/detail/c/custom-maple-hard-ring-16350---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6614b3f609700454dfa250f37f9360ddd70ea169ba6a77ef77a48dea549723c +size 433 diff --git a/source/parts/detail/c/custom-maple-hard-ring-16500---38000-in.json b/source/parts/detail/c/custom-maple-hard-ring-16500---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cf83dbdff6620241c119e6cd7afb6db5c245318b --- /dev/null +++ b/source/parts/detail/c/custom-maple-hard-ring-16500---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3260b5ab087afe9ef59b9d6a7c43992fd3363be5f35c03fbf87b3e05393326e9 +size 433 diff --git a/source/parts/detail/c/custom-maple-hard-ring-20000---25900-in.json b/source/parts/detail/c/custom-maple-hard-ring-20000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f33d1f7f383028d4b3214aeb6419862a4b006cc8 --- /dev/null +++ b/source/parts/detail/c/custom-maple-hard-ring-20000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1987da3122346dd2e2278418f6164e8c112791da1d3d9bd8f3d3da6a8e7885cf +size 433 diff --git a/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---12000-in.json b/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---12000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6479f6f8e3f28c3d95e02760c34c2be3b17b7d24 --- /dev/null +++ b/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---12000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d59b56b572277eb9bb4dd5565ddbba0cd0bb770afd9dde489b60a75fdc65a9 +size 446 diff --git a/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---13200-in.json b/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---13200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a703773f334645a98a0842e2dce4d1940ecf1d3e --- /dev/null +++ b/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---13200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2963ecc46fdc98af98c01992b2499ecd397a7937d673e36a2dbced70516d813d +size 446 diff --git a/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---37020-in.json b/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---37020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7a115c265142351a367df2e6b93d4560d6c80a7 --- /dev/null +++ b/source/parts/detail/c/custom-mat-board-4-ply-ring-07360---37020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d44af02be2761cd91a64317d4b43593b848bc12fbaccfaed3eb5733b24b584 +size 446 diff --git a/source/parts/detail/c/custom-mat-board-4-ply-ring-16350---29220-in.json b/source/parts/detail/c/custom-mat-board-4-ply-ring-16350---29220-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c1d6f1e96a2608880bc9caaea81a3e54d1f7b5e --- /dev/null +++ b/source/parts/detail/c/custom-mat-board-4-ply-ring-16350---29220-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c20e0fae6d09cea4077f6292f9eca8081b8627c79e252b63d3f2cfbfda6c80e6 +size 446 diff --git a/source/parts/detail/c/custom-mat-board-4-ply-ring-16350---36804-in.json b/source/parts/detail/c/custom-mat-board-4-ply-ring-16350---36804-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb9ba3809ba4b567596c543bf975c6856c358469 --- /dev/null +++ b/source/parts/detail/c/custom-mat-board-4-ply-ring-16350---36804-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:779a842df39e83cf9303255a73c666d0027232f86df0473b0f2791a51c0630be +size 446 diff --git a/source/parts/detail/c/custom-mck-001-egg-grade-a-large.json b/source/parts/detail/c/custom-mck-001-egg-grade-a-large.json new file mode 100644 index 0000000000000000000000000000000000000000..091c63073ce54e4c49e1236b0b469d4dc51ff382 --- /dev/null +++ b/source/parts/detail/c/custom-mck-001-egg-grade-a-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a142d9c35395e87564b2b954b4285e85a707746c2e9c0c6baf9965b580c0f22 +size 397 diff --git a/source/parts/detail/c/custom-mylar-ring-22600---22690-in.json b/source/parts/detail/c/custom-mylar-ring-22600---22690-in.json new file mode 100644 index 0000000000000000000000000000000000000000..907edcfac09bc390a6c0a299007c9d2570f975c6 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-ring-22600---22690-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26cae551c9e338a7f4c88e8a650a5ef17faf615825f6574745500c43322734e5 +size 416 diff --git a/source/parts/detail/c/custom-mylar-streamer-00001-in.json b/source/parts/detail/c/custom-mylar-streamer-00001-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58ca7c2c355668e8fea3dd6eabcdf12957a22030 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00001-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec566bc82d2ee5564f1f23ce07d2818827b4530e7e1dc993e4abf8fab34e6ca9 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00002-in.json b/source/parts/detail/c/custom-mylar-streamer-00002-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0ef8cfb53c43dfd052d268e97274cf6f7cc9ad9 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00002-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0d15fa7d2469873922f6d63de7fb860f96bb929cea7b849fa9316dc81c2418 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00004-in.json b/source/parts/detail/c/custom-mylar-streamer-00004-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f70a04cdcdcbaad14446008d6d9159176b27c76b --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00004-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd7a068a2d1ba9bb82ded5f0c0db0a744673ee15bd2a59941ccbb9757600ab8 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00005-in.json b/source/parts/detail/c/custom-mylar-streamer-00005-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4bcf06157bede747dbdd8b98dbbfb1f193748fd --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00005-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de9dd4bbf4e0c0e3a9533bde41adbcb223a8dd1481dc0a0a2e92b61bc27be611 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00007-in.json b/source/parts/detail/c/custom-mylar-streamer-00007-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e580a5d1b61edd2ecc1b712f87ab58a3d538918c --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00007-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326d5a64056fb9aa61d4971b0b8f874b53f537fc88ee8769ca1e1051fd6ec618 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00010-in.json b/source/parts/detail/c/custom-mylar-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..233351c8c45c459b981ad06f91302adcea75ab9d --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cacd97a94578bf41012d246ab549c42deb4be0b73957e37b75e9b17cc12442bf +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00012-in.json b/source/parts/detail/c/custom-mylar-streamer-00012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0478004fdcedf629a756b218c80208bb46d9df6f --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca21e52d41fcae999f05bbbf24f661883114df9db9c73316ae46ec67f451053 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00015-in.json b/source/parts/detail/c/custom-mylar-streamer-00015-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d71cb566d8a0a84c9b5e3b9a0ca357f6da1b57ec --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00015-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5ae0f293876b6467cd74d70b5d9c406fe466b69a8b97b8a85d0914f10e500ee +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00020-in.json b/source/parts/detail/c/custom-mylar-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e939411c05f2560ba63691aee1ac5301d3f1172 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aecb1d10282e985d3c287d91061c708a61c9723cba8092a7a11e195a7576214 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00025-in.json b/source/parts/detail/c/custom-mylar-streamer-00025-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86f2b9255df57966acdda3a92445b87b73e1c57e --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00025-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ae5ed79be0f457eb7093aa94f5915df45fc830ef4cab14c409bf7d775f9203 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00030-in.json b/source/parts/detail/c/custom-mylar-streamer-00030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35544ae8b7ce30e155e64e8ca7f3b839c7ed868d --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9390576eb292a4b1e61c430334c1bcc52600b1121c68c864778c618836ffce5 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00039-in.json b/source/parts/detail/c/custom-mylar-streamer-00039-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d141e3f4fb3e7fb41c6c720fa1c5aa24272f68c6 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00039-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1feb3f8347ca1e434ed361b3bde99ace1eaebaa91f84cb02041cc3f19efbf627 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00040-in.json b/source/parts/detail/c/custom-mylar-streamer-00040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..46a5a2b1e22884de394102b7658c07ddafd9e596 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2489f56cbed1ed41db876e6356cc0f89e350073446f7af1f57a63892917e13f +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00050-in.json b/source/parts/detail/c/custom-mylar-streamer-00050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a9a82fc0987bf029f722b2d65f5be46bfe2d01d0 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e269446c6596fca2d7349d1f947732e12d86b873ecbebf12d9f27b8140c6528 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00070-in.json b/source/parts/detail/c/custom-mylar-streamer-00070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe591d09345db2ea66f155af2db75bda82c8f7a --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f8464968b2ed6b2ec7ac7ce41483cd30baa3d06ac84e83365954197455da7f +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-00100-in.json b/source/parts/detail/c/custom-mylar-streamer-00100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2e991f89e3a584b050bd514f718e6755ffa4ed9 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6233319c8945c4f6c1f7f435a9b7400e376fa1a93eb89adb113ec9c328d8a46f +size 418 diff --git a/source/parts/detail/c/custom-mylar-streamer-00197-in.json b/source/parts/detail/c/custom-mylar-streamer-00197-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c0d3b27870812ab28ca729b8c5305cc5cc583539 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-00197-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0494ac291c7c4d44a2eda5bbb6c6486880a76de90e412cafadfec90611dcb331 +size 370 diff --git a/source/parts/detail/c/custom-mylar-streamer-01000-in.json b/source/parts/detail/c/custom-mylar-streamer-01000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e21f4fcf1e67da0e090ed4873a0e799a75965355 --- /dev/null +++ b/source/parts/detail/c/custom-mylar-streamer-01000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3d149735f16d8d70609d1c0501bb82a0ed346649ab21ad188780a7cab28610c +size 370 diff --git a/source/parts/detail/c/custom-nc-e-bay-bh-screw-eye--wire-loop.json b/source/parts/detail/c/custom-nc-e-bay-bh-screw-eye--wire-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..f6e15b29939bcd8962ce76cc6f3834901754cb06 --- /dev/null +++ b/source/parts/detail/c/custom-nc-e-bay-bh-screw-eye--wire-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b5f1c927e900680df4ceca2356e2e0646221a507dea125dde6c54fe7766273 +size 427 diff --git a/source/parts/detail/c/custom-nomex-streamer-00030-in.json b/source/parts/detail/c/custom-nomex-streamer-00030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9d7c9c2c2dda1cf63fdc0dd7b423d98106688d0 --- /dev/null +++ b/source/parts/detail/c/custom-nomex-streamer-00030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432c2ac1e356236b96083baa5d743eba0771f65cc15ba1ed34d73eb241069a26 +size 370 diff --git a/source/parts/detail/c/custom-nutwasherlock-washer-14-nutwasherlock-washer-14.json b/source/parts/detail/c/custom-nutwasherlock-washer-14-nutwasherlock-washer-14.json new file mode 100644 index 0000000000000000000000000000000000000000..f10b0bc253e525fd05fc9fa3301fb560758f6303 --- /dev/null +++ b/source/parts/detail/c/custom-nutwasherlock-washer-14-nutwasherlock-washer-14.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e8b9f3dd93b44d38f89df1af1f6bb98bdc67cba41f9418740bb355cd43a14b +size 505 diff --git a/source/parts/detail/c/custom-nylon-ring-00000---25000-in.json b/source/parts/detail/c/custom-nylon-ring-00000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a0ac31662d24acf67e5b3f010aed7f5cea4556d --- /dev/null +++ b/source/parts/detail/c/custom-nylon-ring-00000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25f9e5b10d6a4faf51a19c153362e723c0d64b4d7effea0e7b8467c110c57ef9 +size 416 diff --git a/source/parts/detail/c/custom-ogive-transition.json b/source/parts/detail/c/custom-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..fc2ecb0e871b97ad3d6aa89f06b55ca196a4617f --- /dev/null +++ b/source/parts/detail/c/custom-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cfc202a250b71fed69aa4085196e711ded0703c5562c3ab76cefa96adc08109 +size 571 diff --git a/source/parts/detail/c/custom-paper-card-stock-110lb-ring-07730---07980-in.json b/source/parts/detail/c/custom-paper-card-stock-110lb-ring-07730---07980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fcf3de3f3c49c485b6820a0d00017aa4f1e886e3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-card-stock-110lb-ring-07730---07980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ca2982938d375c8a3ac997e8af7a3802ccbc4cffa390bd5cabc2d5233820cc0 +size 469 diff --git a/source/parts/detail/c/custom-paper-ring-00000----252884-in.json b/source/parts/detail/c/custom-paper-ring-00000----252884-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b96a8410beb430e3b7aaaaa63985bade0a653261 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000----252884-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:362f4d75762a67655319493697a1b11700ac40fdd3f291fab09865b755244248 +size 424 diff --git a/source/parts/detail/c/custom-paper-ring-00000---05180-in.json b/source/parts/detail/c/custom-paper-ring-00000---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed8c2d9a3dedb8b789d0e04f8d813b0dda952813 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7f6a9f4f0cd21abfc576bd16a5e22095a91303b67cabc53bd04754eb1a8b65 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---07100-in.json b/source/parts/detail/c/custom-paper-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b2aca792cb779e9f4a767a1e8f49326b71f2ef4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49969632a1ef0aa5b7fac2272ca9a15abb1faae7fc2fe3dcedebc8dc0e7aebcf +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---07150-in.json b/source/parts/detail/c/custom-paper-ring-00000---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bff03ff97bb1011044a5d0eb529fd1121f34a657 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caedb05ac538e309b84a70f40d9554c98b9c306c47d9d899c1d7815b35ed6a4a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---09440-in.json b/source/parts/detail/c/custom-paper-ring-00000---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc66b0fd8da5537b570360e1afb581046e71f9cc --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ecd6d2844ef1ad3964a6d0e455c1b903e8db2c4a9eb891b89266ee4ced448a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---09500-in.json b/source/parts/detail/c/custom-paper-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d0c5221ac5dd7bac05c47965c20224c2b46d68b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604f3d827dc0e6ee40fd6f79fd9c4753da8e61f011dec04a187544b4d4b0ceae +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---09750-in.json b/source/parts/detail/c/custom-paper-ring-00000---09750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0108541c3be5772412f99c87bb8c3b3e5983f5f8 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---09750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c11e0bdea91738b4f778bb4b07b8cf6b64891de9843e07eafef287a1474e03f2 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---10000-in.json b/source/parts/detail/c/custom-paper-ring-00000---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..acb694011b8442fd459744c268ac7f832352f7ba --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef38c6658376e0dd2328905e40cd328a278c1faa065ffd3aa8ef407fb090d5d5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---11300-in.json b/source/parts/detail/c/custom-paper-ring-00000---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..14bb0af1240c84048c943b18dc38adb448f1fe1c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c1e285fdbf6e0a1b5440dd6954b7eb22a42ce40dc9a832bdd76598a225d33ed +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---11420-in.json b/source/parts/detail/c/custom-paper-ring-00000---11420-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c28f62d459eed02d16c600002542223355f256ed --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---11420-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:731d6e8a53c405b442ef1185a5cd9abbac1fe2276d192c6768bdc63c5872e0dd +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---12830-in.json b/source/parts/detail/c/custom-paper-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae6a54e0d207c9d5a16e59d812d76a2dfee070af --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a787ff0030531c641910c466ed90a4a3e093060cd821dd41f6df293c401efd +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---12992-in.json b/source/parts/detail/c/custom-paper-ring-00000---12992-in.json new file mode 100644 index 0000000000000000000000000000000000000000..535a2ccd7c65ef9dda30756c9f026e364ab11c9c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---12992-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880cf147277faa9871e0b43f7c712e9274d403cd026c1878b0cd4f9cb0e81ece +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---13040-in.json b/source/parts/detail/c/custom-paper-ring-00000---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b042a8acce69a98ba4f55c213aa73a5b76b0eab9 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94991bff4fb23c8fc1bd3537c7973dbf9c90602eb3356e23f8febe569ac57077 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---13380-in.json b/source/parts/detail/c/custom-paper-ring-00000---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac5ffc6053793ed972174748fe23250c5992ce4e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a9d7b20183fc686eecf7454ce973a4f90c022537227e9e75d19346ad7f8058 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---15200-in.json b/source/parts/detail/c/custom-paper-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18a615f2bc3ee91de84b664fedadca416662c709 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ad7aed1c99afe20a2a61e44949aac7c975f50f67307354678577e78bcd87253 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---15950-in.json b/source/parts/detail/c/custom-paper-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1b4c53768a9d786ca7f8e53ecc02604521aae6d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf5f95bba73c64968e65cb34e6cd2e123a3a2c58f10ab02a421af5f02d61dba +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---17100-in.json b/source/parts/detail/c/custom-paper-ring-00000---17100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1753e7cb4eb6297dd88076c060807dd1641fbdd5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---17100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547d3536f490758bf47646184c248c02b67dff06b90d5ee7b0bfa681bd5754df +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---18750-in.json b/source/parts/detail/c/custom-paper-ring-00000---18750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..338ca2185ad90b324cf274828aae9f6cfd26dc2a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---18750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45c38f6117ec8a63c495146b985d0ff468677c84af6b4b35d61b1577e23d30b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---25600-in.json b/source/parts/detail/c/custom-paper-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e855facf021c08b7799eea7f6d9eceb6d7048ec3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f3737a2b00c6af2fb4c9b8f3b1a5c049d2d51548bdf2445f1740c5fc550febe +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---25880-in.json b/source/parts/detail/c/custom-paper-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6f059e1d90496ec7a77c6ca32dee04b5e378f1d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:611828f2c0cacc31ef8e328418bef39dcbf6ebd0fb3d0055fdc3939444ccfb27 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---39000-in.json b/source/parts/detail/c/custom-paper-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56e375d054f34f4f912305cfe3514b34c2d6f98c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec007ba1dc8d8026c4b6be6587042b3c1f9eff2530ad99e9e4c845bad5621bcb +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00000---41250-in.json b/source/parts/detail/c/custom-paper-ring-00000---41250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f97228266dae06be28b79a4120fbb6b8f5ab90f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00000---41250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed972df9bbaa73b0c2c8b5dbda9942ac194cda7424760ca3d678e8f7136aebb +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-00940---25600-in.json b/source/parts/detail/c/custom-paper-ring-00940---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7e8fee531361d63c4ae6a84b6521e5c462ef0578 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-00940---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9122095c2a046f81661fde014a61752c018b2fada3124069170349dec1f101d9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-01250---18690-in.json b/source/parts/detail/c/custom-paper-ring-01250---18690-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4fb5460de924caa99a2a640fdc3e5db3c3a972d8 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-01250---18690-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856094357086a6f813ea4e5e9d84d3f59f69fe5ed8a3f4d6001dfa98d1833dc8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-02000---07500-in.json b/source/parts/detail/c/custom-paper-ring-02000---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..51fd1933eb81d27d59140ad1463f31610e99398d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-02000---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76963376f6697526ad44190b8f401718b3f684d52a37cd04998844924612a365 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-02460---02810-in.json b/source/parts/detail/c/custom-paper-ring-02460---02810-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f66026b5ac4643bd814bb7d4e10d6166abfdaa1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-02460---02810-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f52f2801f7cf2a7f9bb896bf2d903b0f63b38bf43d5a1be8d5cb07e4be9e83d8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-02500---05181-in.json b/source/parts/detail/c/custom-paper-ring-02500---05181-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67f11416a76b0e0d43b95dac182aedf09ad4e58c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-02500---05181-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc33a6f9c71a0664e20d1e5e0d188e1455dbe47e084311ca551e160660661349 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-02810---05180-in.json b/source/parts/detail/c/custom-paper-ring-02810---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f5ecf2438e2145b7900d90b94eb9d97bb70da04 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-02810---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975877c25f14c93cf4ec99cdd33c46b3134873adb2b7e808ebdfbf149ac4c2b7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-03275---05150-in.json b/source/parts/detail/c/custom-paper-ring-03275---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8631aaf2a187f7dcd2b80c36cc88dcc4e295485 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-03275---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f285f0da32f4f431b009b8caaff32a867e302325b298a6db19fc5345009cb86d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-03490---05180-in.json b/source/parts/detail/c/custom-paper-ring-03490---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0e4168de1c5a5aaf86e36e4d07a962cd06deda7e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-03490---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ab64de549b089fad70073bfc442091fc14154b7dedded4e4c1cacdc14ce85e1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-03750---04500-in.json b/source/parts/detail/c/custom-paper-ring-03750---04500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..91dc1fb1fb51f780c3bad5f13303a812808c1564 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-03750---04500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:600945688536acf743ea4ff917ff2bd2ec2e1fda14277cdb0a11a680d80c0c8c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-03750---05150-in.json b/source/parts/detail/c/custom-paper-ring-03750---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c0552e6f2d16b16e56b253e4d15decf47047974 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-03750---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b9f7f457a8f2640f5481f9aea8c86e293e7132a28eed046867499f67df37c29 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-03752---05180-in.json b/source/parts/detail/c/custom-paper-ring-03752---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..857579971b0cfd1f1494955c75e40ab3c838c487 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-03752---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24d2e13b4ce4395c604e962097ed9c1ecde33797c166dede4a983d26f6ca7ab +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-03900---04220-in.json b/source/parts/detail/c/custom-paper-ring-03900---04220-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ade6e45e56c0b0cfbb3c19288ad04934a386b6d2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-03900---04220-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b858ce6004c0e7207c1cb6a4b2ac23a03c217b66771c66ae021f04898557ca5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04460---05180-in.json b/source/parts/detail/c/custom-paper-ring-04460---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb5b4074915728437e93d3ad54c315160605d0ce --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04460---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f56921cd3db5431034862fa6ddfa256e686923e7cba0c7bdbce066f50b4c027 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04460---09500-in.json b/source/parts/detail/c/custom-paper-ring-04460---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d838bf2a8abf47d10d2957790200e9d565f40fa1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04460---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95749166570c327cb7bd05edc0f3e83825346f123c525e588d7c151c74bcb5b5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04460---11450-in.json b/source/parts/detail/c/custom-paper-ring-04460---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..009b76989071d71567b9e0f89fe5f3d1a71d0a9b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04460---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddcd20f0e43bfde6df139e6f6e0037608c7fbbdc75bb4f541ffeb6783ba097b8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04500---05180-in.json b/source/parts/detail/c/custom-paper-ring-04500---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29c53bebbe35508430860464e85d0bd7c9e432df --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04500---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f818e658873f5caf67edd82baacd40e3257b811fbfd142041f8a9d84634b2942 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04530---05100-in.json b/source/parts/detail/c/custom-paper-ring-04530---05100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..211bbcd691c54d5f5883a8798836d847a666a760 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04530---05100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5fd984c70247fb9144b8ed943fb24dba946188125d090bcd9f20f27a2adb1c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04530---05180-in.json b/source/parts/detail/c/custom-paper-ring-04530---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0bdaacc6e04f786eb96b8265c174cd1a3d3449a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04530---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889cc5aa718177715b0f7b21322584cf4a417d7a5e8408bde09c53bbc5916202 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04531---05180-in.json b/source/parts/detail/c/custom-paper-ring-04531---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..21c267d4bac71244b238440651d08e248f81eaa9 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04531---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4059d332e57f0f1af0e302dd4e48f4c928175ba3adb05fd1d01a0137678266cc +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04724---05118-in.json b/source/parts/detail/c/custom-paper-ring-04724---05118-in.json new file mode 100644 index 0000000000000000000000000000000000000000..715749b337eaa5fdedf94c9edfb84fa80c35572f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04724---05118-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bc65b5db0906d0a2e00c1a556fc2dd2d4c6b3a5cfa91a145780264ba9e529c3 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04760---05180-in.json b/source/parts/detail/c/custom-paper-ring-04760---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..225be7188bd1b786d8788972cca5b3c7a8f3ae54 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04760---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03703505feffb31ad6293c4d89eeef55aa980bb0ab2b0be72241c3d05716e5d5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04800---05180-in.json b/source/parts/detail/c/custom-paper-ring-04800---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..87349057b1c324c05de2fedd1c74afe901f604b5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04800---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356b374d1ead34b6fb0e521ac66ef0a0f6317674eb39c1b9783f3ee4285f13f5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04810---05248-in.json b/source/parts/detail/c/custom-paper-ring-04810---05248-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b8583c5c44232db580173131766256e25a3ea02 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04810---05248-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d01811409f8a61a7a333e83aae0a164757717c6dd58e45ff8ceb6f91a853f3 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04816---05254-in.json b/source/parts/detail/c/custom-paper-ring-04816---05254-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cad1828fb692ccb4217fbd96f69aaff304a1a77a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04816---05254-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b92577505519ddc8903ce582517e0d3ae2302384becf81ebdb96df0993c8e16 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-04970---05180-in.json b/source/parts/detail/c/custom-paper-ring-04970---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8bc4bf1c4b0bf80bd7609e9d0ad2d7947000c81 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-04970---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6d745055775776897c35628b289bcf2971ef67fdbe99896e3f9c0484e798a9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05000---05180-in.json b/source/parts/detail/c/custom-paper-ring-05000---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c6ce2ad5f9fbc15116d0296a671b9105973fdaea --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05000---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc386e617e2670b3d0101064d9facf14cb9d0b703c8444cb9afdfa2648dd9492 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05000---07470-in.json b/source/parts/detail/c/custom-paper-ring-05000---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df7932316f303f03d0c87141f83fa279c17c0c46 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05000---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3500792aa6efaa8f16a7badaa128ff8a26b1667d5243caf6dbd7d2043acd6346 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05000---09500-in.json b/source/parts/detail/c/custom-paper-ring-05000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5133d2473b8fef04d2d13d99e62b68087b4002f5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba63543f9e44a576bf394555a3e61b3b0937487c765613dc5d665f4b1307148 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05008---07100-in.json b/source/parts/detail/c/custom-paper-ring-05008---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..25483a957ce3e2054861cce6b0f044b28607a753 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05008---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bcfaa7de579264a9552698da209b961c2c59296cf33abdab8d958f0148cfd7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05010---07100-in.json b/source/parts/detail/c/custom-paper-ring-05010---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b7fc35a86320dcad8579cd37a7793153bf0031b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05010---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf7f6719fd4b21bc5d16f1cf1aa0cded44f7ecc14421c19272d0cd68acac3455 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05118---07106-in.json b/source/parts/detail/c/custom-paper-ring-05118---07106-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d8c0ab27e657df69e159aa31f84a6a86954ae48 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05118---07106-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a676eebe4e4c0f428a23665908f43714f37d23a063acc33d3f8350db986a95a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05118---07470-in.json b/source/parts/detail/c/custom-paper-ring-05118---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70d867e3e47d401e12c54e7cb3fff31052eab261 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05118---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3b5c9c6ee49990f0c1d04cafc5621b6a6d483ce0293027369c6ddc4200f95ed +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05180---05440-in.json b/source/parts/detail/c/custom-paper-ring-05180---05440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..88c7f7032b43ba9a52738e80a75bb88f038a7764 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05180---05440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723a1c73948ba7e2b8cd20f194914d9b7199cab81c219b8014f13e81f13d57b5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05366---07100-in.json b/source/parts/detail/c/custom-paper-ring-05366---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..409aa63e21a3a9a4c4a1846889ddaf0d6300c70a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05366---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cab707394e2222e5f88dd99e1e290cfa70364c16ba61860af9bb8da98f32e81 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05382---07100-in.json b/source/parts/detail/c/custom-paper-ring-05382---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..02a7d78e825a26d5eed1260dee26c320bc58aab2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05382---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71f9a02989fbfb23c57dd3295d888d5a5d823dab380cb2ddd91413b17af27242 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05400---07100-in.json b/source/parts/detail/c/custom-paper-ring-05400---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9270f90307ef3c4ab39cffa623edbd303035b57c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05400---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9273de015c49d2d4e2c3b26e392b5197e93d156acee340855880274b844b3d6c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05400---10000-in.json b/source/parts/detail/c/custom-paper-ring-05400---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8058c11a0c56fde1bb993e940efd7d7bba654d9b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05400---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889da4fcac9539da98081a84929ac3f09ddf73de1d26e440aaa48bf6c2010a1b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05400---15900-in.json b/source/parts/detail/c/custom-paper-ring-05400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc2f4a95689af2f33ea28064347c867b1dbebdef --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90ac019f792adcefdaf8e04efb34214df50e2c20d0d14b29dd8b74eeeec74c4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05410---05630-in.json b/source/parts/detail/c/custom-paper-ring-05410---05630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a010e466f57062769bd99c35466f37401de390c4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05410---05630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de309ea1720a2df5fba79bb7758beb6875a5dfd81e351514941ebb76c8df4e76 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05410---07100-in.json b/source/parts/detail/c/custom-paper-ring-05410---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..127645f5a741be1fa169e9ef75243b7c2689ba5e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05410---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6598f021daab888070a7d193faf8faf7566094b5148f77937bf4d49a6caaa834 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05410---15950-in.json b/source/parts/detail/c/custom-paper-ring-05410---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..279c6816412dde3bec702ba16461b951aa6269d2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05410---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89231f1651d3bb93d8232934ac44cbca5863fd58a65ba11839ac98796b8f7d43 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05440---07100-in.json b/source/parts/detail/c/custom-paper-ring-05440---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b18b01763e9597306930879b19bfecf214a25668 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05440---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dec942013e2e0b4ce80da05293505cfe22af83f4b6a434f24a929712fe71905e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05440---07749-in.json b/source/parts/detail/c/custom-paper-ring-05440---07749-in.json new file mode 100644 index 0000000000000000000000000000000000000000..04d422474fcb0f01fb33d9c958a677d0692c62a0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05440---07749-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7ea774e22c4f93039c2ac2ec5271042fb179be9f7d4e24bfd02b19c199db923 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05440---09123-in.json b/source/parts/detail/c/custom-paper-ring-05440---09123-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2db7c4540792bac9132a01b848d44c4d1d2075a1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05440---09123-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f94a3bdb4023ed3463baf5894fd8768e7172e500f3c2872c57cef28b71db0e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05440---09500-in.json b/source/parts/detail/c/custom-paper-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36dd20211c1fa21bf93f855671af885bfe350bd0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb4a5d370a65e0d30a2d2da7016f681f84cfaaca46a5b758ed93fe69eae8a8c2 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05440---12830-in.json b/source/parts/detail/c/custom-paper-ring-05440---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f630b875a75d5e515ba82303b65a849330dadac --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05440---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d51a2cee095305f721c30ce15893e772f28c80b34aaeb8ab25d41026d4eb6bcb +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05440---15950-in.json b/source/parts/detail/c/custom-paper-ring-05440---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b630c91ccbc0e4a28668fe1e492074a2f16be480 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05440---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f285c2188199faf8bb592708532506643b287377edbb4e14911f740bfff22f5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05440---16000-in.json b/source/parts/detail/c/custom-paper-ring-05440---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11daf43a49846a617d77a78b2fc3765eb78afd65 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05440---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f184aa3ad6945b3e17c7d0a8df909191dd3208e692d49ed19e25f86699e54cf2 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05440---21800-in.json b/source/parts/detail/c/custom-paper-ring-05440---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e78d9af5616ca15326bff2573959f477ccccfd2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05440---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b1e772d1d794c7a1443c30820d705017d352ea8ab940c02810e766fccfc0e6 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05445---07100-in.json b/source/parts/detail/c/custom-paper-ring-05445---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5add7d926af16436c58394a4c2cec4806e8123f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05445---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d838f67cb9b9501cab8b13e3498ccde18fca27008ce8ec0ac9b5d55e2e2dec95 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05480---07100-in.json b/source/parts/detail/c/custom-paper-ring-05480---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93710fe19f04dd1d15f66e3555401fe134115312 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05480---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd2c1f05965667cb048c4bd1855e42604179ce70e7e8bb77c30c8d253a6e85c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05484---07100-in.json b/source/parts/detail/c/custom-paper-ring-05484---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d29bd961bdab77dbc86ceb76d9325242688dd2ab --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05484---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3143f10fb07501c4b58e39735c961549edffcf4913a3241de4e79cac31c8b23 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05490---07000-in.json b/source/parts/detail/c/custom-paper-ring-05490---07000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9dfbfdbca693b1da94a208b864da7dfafd9e4059 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05490---07000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1416c109c5d076b66a0806d08a6fed0117efac4e699ea5c7153455a3504d2dd +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05563---07100-in.json b/source/parts/detail/c/custom-paper-ring-05563---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f662a2c4adf395528ac67737efa1f4a962282adb --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05563---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9257121ab97006ac35938ca397d270a60f85ed5c92eda0f523ab8302d7aa5d67 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05748---07098-in.json b/source/parts/detail/c/custom-paper-ring-05748---07098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b6912fa49d90f46fbfa8a6189d6627002833238 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05748---07098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab1cd26e687010adfb729d759264fdd788af4762fd521538f2448d7743c0467 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-05750---07130-in.json b/source/parts/detail/c/custom-paper-ring-05750---07130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f38aec5504bccb0cfc5a6daaef1aed80f488941 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-05750---07130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74514a2acc957b3e17511b1fb223aacbedd478257cc5b0f8ce3879a19d5fd20 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06000---07100-in.json b/source/parts/detail/c/custom-paper-ring-06000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2efb2ea2e67b9159b12123bab6a54941db636a8e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e1d207d2cdf5c23569ca3cf316f9481b973f5947963ca6a7c6b549d365a20b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06000---07380-in.json b/source/parts/detail/c/custom-paper-ring-06000---07380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b691bc079a183434eea509593d5cc156f32d886c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06000---07380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a218eeacbdae6e773e6cd1a09680520c45d505e6ec83263d95ce5e417c6d12 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06000---09500-in.json b/source/parts/detail/c/custom-paper-ring-06000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..671b2d351e503b9f29abc4fffc339016d5b2ead4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:119c952e6a4ab0f256e1c0c4a951fd8e62b17efdece8c00d96a7849c52165c67 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06250---07470-in.json b/source/parts/detail/c/custom-paper-ring-06250---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f433261b052c56ae826c614f814900ac26e164d5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06250---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58359fd757b544353d6b0eb6f42447df9faeb166542bba5725c38661b8d8d6b9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06250---09500-in.json b/source/parts/detail/c/custom-paper-ring-06250---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1394269efb92f91795dac037c58b5672b6cd8766 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06250---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae038d212760f341a20f2d95212cc59a1abc2d2ca2d081a61e4c8909ba2fe5c4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06437---07100-in.json b/source/parts/detail/c/custom-paper-ring-06437---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09fc0dc2bd18090a2b59dfb37a099f00d2843abc --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06437---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6ea4f6f593c674efbbabe7583914d93d7221982723812c35fa414c059804e0e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06450---07100-in.json b/source/parts/detail/c/custom-paper-ring-06450---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..050b4504ade427cca9cc92e735cfe74db48b5730 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06450---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6435074882d24ad486dea457ca8e9e4956fd749c056e8c9a3214187a77d34358 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06496---07087-in.json b/source/parts/detail/c/custom-paper-ring-06496---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3bdb462b06d3747262fdc5e05cd6db5a1d7a2130 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06496---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e83ecc08bfc186088eab7b303cd671fbc958e79eb962272d080062dd0e91afa +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06508---07470-in.json b/source/parts/detail/c/custom-paper-ring-06508---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76234397b277962f8263dee69eadfa753ee53a1e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06508---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cdf7170f870847cf9e2691109bde3146b46835f40125803ba9dc7a3fce316f9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06510---07100-in.json b/source/parts/detail/c/custom-paper-ring-06510---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b70ca596851a0fbaf6564f6fce2ba71f6ca0ed38 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06510---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf6d477442d5310249d2d3c67e3e5b37d32b9107453c31217b9d847ec92883c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06510---07250-in.json b/source/parts/detail/c/custom-paper-ring-06510---07250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f747c966c36342ade9bcd097add21e084383084 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06510---07250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f3258eb6a703a9100cf0ee3f6620532d6c79dcc25be16b7ecea90bb6428d0d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06512---07100-in.json b/source/parts/detail/c/custom-paper-ring-06512---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59f4450da13aa8e12eff1cc85c423fcfc5b21202 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06512---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050b6a14f1824e5d737da39a6fe8f8c34d192b59dbbc4c66e798b15447d207b5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06600---06900-in.json b/source/parts/detail/c/custom-paper-ring-06600---06900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00b8b48dfce6d893fceacf33ebd1a3472c11fb3b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06600---06900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5d2b4302e0d5d1bd9c513e39e13d160d8bb1162f94025a66d4d0fe19fd7496 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06600---07100-in.json b/source/parts/detail/c/custom-paper-ring-06600---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..405a287d224e5fb59575ae3e004f8a5fb15b0ecb --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06600---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d198b30aae4883b02e439ff7269321c0ceb48dc1ed675eb7f48436ff5f6e68f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06638---07100-in.json b/source/parts/detail/c/custom-paper-ring-06638---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d77cb572844a5685cfa5c6bde3a56cee001c7cfe --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06638---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc53222e6640bf71f0cc1667aceb1b24d254191bf2d0cf20bddef0365e831078 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06674---07100-in.json b/source/parts/detail/c/custom-paper-ring-06674---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18e608932c1c3d5f7bce16601d33038d09118153 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06674---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da093100a2533df583ba039e03be9257e0aed2e0a5d810b2b0ed8245c96a46d9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06933---07087-in.json b/source/parts/detail/c/custom-paper-ring-06933---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7678855475076b041ace0526f50fc27c835c0c32 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06933---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b821a2e7ac8b4b3f9cc8b45521bc948f83d3d83d3d3ad0829d03064b6cee1cc +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-06957---09500-in.json b/source/parts/detail/c/custom-paper-ring-06957---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..253323704ee261c1cd7015a2387a5b4aac628a64 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-06957---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82aecd8bde5e69badd67b3a9344d70210a4b416ac156a49392b1982d3f7237e4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07000---09500-in.json b/source/parts/detail/c/custom-paper-ring-07000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..84e9beafac466758c53a0a7e25eb3906897112ae --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fd4428ff8757523085fcc376a187d86693120a74d140b1f2a903f8c12273a69 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07087---07106-in.json b/source/parts/detail/c/custom-paper-ring-07087---07106-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a3f61b360e5db4447a13ce4717548e762573bfcd --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07087---07106-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ac11722edd1e0882fd93b8400efdad0025cf1e534b2bb49488b4ad03abbd63 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07087---07134-in.json b/source/parts/detail/c/custom-paper-ring-07087---07134-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2e4f79486b41e340ffbeac3e90b304f2d396dd0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07087---07134-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2502201825155c9d82ed382a54c01bcb9e3ec7822955e4e91b5ac4b8d933dd67 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07087---17913-in.json b/source/parts/detail/c/custom-paper-ring-07087---17913-in.json new file mode 100644 index 0000000000000000000000000000000000000000..214afd620263f5ca5f001944f6c6966593a1329d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07087---17913-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d132f48444582131e322aa9e8512ff6574eeee09e8cd8bfe2580a25290b5d0 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07087---18800-in.json b/source/parts/detail/c/custom-paper-ring-07087---18800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a0abc68e1de18e1586c841fc9c4bf4481e086a7a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07087---18800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47b15d2519e3e012b6eed90c64c1997949fb6ef333b28ef0334b9522ced19b9c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07157---09500-in.json b/source/parts/detail/c/custom-paper-ring-07157---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e205c3b3259c7256736178d450683bbd188c395f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07157---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7488b0bf144602b95daf4aeffb435b8dd67a8901b5075b77dab62859e172b9d2 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07220---09500-in.json b/source/parts/detail/c/custom-paper-ring-07220---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8656f5c43be3a9f04765496a46089a822fd6dc96 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07220---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e474687b36d7c3d91366108289407c73e9a40b0226d723dbb2184216f2775b6 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07248---09500-in.json b/source/parts/detail/c/custom-paper-ring-07248---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..72924c2edbcc6d642a99b86e52c416290137021d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07248---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:701b6773df12f78a8731871f888bd08de1566d67126bfbbbae5bf5bff6fe705d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07250---09500-in.json b/source/parts/detail/c/custom-paper-ring-07250---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2db1d7d9f95654b4dc6f397df98a81766218081 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07250---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e2b510d78e361ce60ca5db4c134a4028babfa25be9ec9baea23ce9937a1948 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07287---09500-in.json b/source/parts/detail/c/custom-paper-ring-07287---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1dce4e0854f0bdb25f5fedca21da5df38c3f4259 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07287---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efb410990c8b318d47e642198a104863ace6ed5e065c5e3d16a3100964cea6c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07300---12800-in.json b/source/parts/detail/c/custom-paper-ring-07300---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b2669d8b0a8eac2b81fd7bc8052ece6d0018aa1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07300---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7dcac98b918f033fcccd979338f555131f27bab19139f05eab5148c0417558 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07311---09500-in.json b/source/parts/detail/c/custom-paper-ring-07311---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d3ec8fbd57e3ba83afc880e02f2bc6ba79bcba4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07311---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7990de4f15e2ffadfca79c8e555dc54516486d781108e262dca9423037e93f9a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07339---09500-in.json b/source/parts/detail/c/custom-paper-ring-07339---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ca2db52f01d5aa5d1934b769c76a35261985b7b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07339---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00698ee76a5650622537fe9c7855612be07e8f6bd3ff1eb42387381f44ee531 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07350---09500-in.json b/source/parts/detail/c/custom-paper-ring-07350---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb325e5fad2d59073be8d3e9eab4d47c95fca978 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07350---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c05275a84e05316d83daadaebc303436804b9b18cc3f13bf2388c5dc1e3ff51 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07354---09500-in.json b/source/parts/detail/c/custom-paper-ring-07354---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d11137b696b72c665eaa9b04ac248c48a052366f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07354---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dedfb9c62966a3b347e9d78e67da8ada7866d31137f42798980814340013309c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07358---09500-in.json b/source/parts/detail/c/custom-paper-ring-07358---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20751d1cd0e6e8970e5047de06d5cd44b12c8ddd --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07358---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ad4fa4106fc3bd8fee0ceff46357830af82ba789c079ca9c0aa047f633932d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07358---13016-in.json b/source/parts/detail/c/custom-paper-ring-07358---13016-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf1867499fe12ce637d39e8af7343507f64c6f42 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07358---13016-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c89b106a5373ebb153e50f695ec532a178bf2a68e8e074735f938b56ad8128 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07358---13268-in.json b/source/parts/detail/c/custom-paper-ring-07358---13268-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36dfe77bb2426302ed3fabb2c1e6c1a27e591129 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07358---13268-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2d8d4db157de90626d6f71e22f0cd8c4aab790284c6f3bdd0e3dd23d3c5a95 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---07100-in.json b/source/parts/detail/c/custom-paper-ring-07360---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..43daf2f110f64a06022ad5fff2b3cdb7b31b2fc8 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45afcd073ba882f13ab8ff137400422d4bc689cf66f99c6146caa16b95f98c0b +size 417 diff --git a/source/parts/detail/c/custom-paper-ring-07360---08160-in.json b/source/parts/detail/c/custom-paper-ring-07360---08160-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a8c67280e9ba4c08d62f0b4b70c73a6a3717a36 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---08160-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29562bc4450591888b6ecb3260e7e2ecd8f25d9d8248ea96dcf724fad46f9821 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---08800-in.json b/source/parts/detail/c/custom-paper-ring-07360---08800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33bdea70ecec9e7fa1204cdc587235055615ed47 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---08800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4fb4daac3aa7efe8e45fe1cecbfdd59c8fd2cfbddc23b9ccc26851a7fa14d4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---09421-in.json b/source/parts/detail/c/custom-paper-ring-07360---09421-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f34b9844ea1877183f34a6e219d0c04c35067f14 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---09421-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:410553644ef0bb86bc2ba2c9cbc806821823aa6e41919a7a9ce55733285c58d1 +size 466 diff --git a/source/parts/detail/c/custom-paper-ring-07360---09449-in.json b/source/parts/detail/c/custom-paper-ring-07360---09449-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f06a4439c00dc9953052eb73af66791773c7f85d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---09449-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1924b22c4fc455d19e155f86e44035c56db5e09a3bd648eb753b62243e89bd08 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---09500-in.json b/source/parts/detail/c/custom-paper-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7af08fcb66eaba038722842afb544a755a6e4fd8 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b01e6d9aca2986ccb412ec35d0321f4960944f6011a002f779969d1d43595b +size 466 diff --git a/source/parts/detail/c/custom-paper-ring-07360---09906-in.json b/source/parts/detail/c/custom-paper-ring-07360---09906-in.json new file mode 100644 index 0000000000000000000000000000000000000000..629d63e3e021623201419691225eab6d511906d7 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---09906-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a03570c07f8ff3a0a87c8ded5dab94f1fc40ea0aac0b014138b2efd2d296f29 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---10400-in.json b/source/parts/detail/c/custom-paper-ring-07360---10400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb7b4df113111f8aa3ba1a7a49eea3bae221827b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---10400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:544aa6ebbc796f3eda70a6ac3b0217254a65988ff4f01e1c9bbc604856668585 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---12800-in.json b/source/parts/detail/c/custom-paper-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0333a3032393e862ccd5880dd23a23f9a91be420 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0d3f9f7351f9e1a8385d9bcfbf592e3e09f77d31463e5892cec57fec786f477 +size 477 diff --git a/source/parts/detail/c/custom-paper-ring-07360---12830-in.json b/source/parts/detail/c/custom-paper-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b9afc34d2f87ead592c779702c48bfdddb0490e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8441a1944762e8f3bb3614a23b90a71348ec6f005eee4db9aaa33bb94d49b5f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---13040-in.json b/source/parts/detail/c/custom-paper-ring-07360---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e3c5b7874188d10bc2c0b868af8c8a89921480f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0018b09c395e3cd413492ed2579993faa1313820e626de42c9a3f4f8739eb655 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---13200-in.json b/source/parts/detail/c/custom-paper-ring-07360---13200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b685cf3e339d5433eb90cff50888a2d53310d5f7 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---13200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31fd431b6b50c93b7bd4267fbbf01b5fcead556e31d66f373b7058f83dfd48db +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---13339-in.json b/source/parts/detail/c/custom-paper-ring-07360---13339-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cae254a8e48f386596da6811986bb6a3e1226dc1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---13339-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c816c7a2c36b4caa6abbfbe0272b14fc6814848bffe4e95c0dd86a38817ac1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---14500-in.json b/source/parts/detail/c/custom-paper-ring-07360---14500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c601f0006851beb783ebce2f0a8c2516cdf9c071 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---14500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa21eab9643322c0949c90e4c471a4a80c501e326eb21c52de43180971955b4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---15106-in.json b/source/parts/detail/c/custom-paper-ring-07360---15106-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c53c5fa12222fea151de7578bc79a808b5e7296 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---15106-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fb55be042e309b9c930aa68ea97bc7ffd38047d134aeba59d559f8e9beb6ac +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---15900-in.json b/source/parts/detail/c/custom-paper-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c794c7032bdbd43c99737ce8f361c1d84a9bb81c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df71d69a9a0c937c43954bc626d6e88ac4a908786a824f9e8fac65a01ee308a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---16000-in.json b/source/parts/detail/c/custom-paper-ring-07360---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..965491e7397e735ff549a2f29b46c8ab505e8750 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:311e44d267274cc1caed5071cf9dec41aa6c246e764b90684d5c76179399aadf +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---16370-in.json b/source/parts/detail/c/custom-paper-ring-07360---16370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d72138ea4dff069ad887b49332842f834eff71f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---16370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b122387df396ea50c47b159e47f30c267163b5c5f5d318b3fc12d0a17b449c5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---17800-in.json b/source/parts/detail/c/custom-paper-ring-07360---17800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4bc33b5f687abbafb80ced29ed31f25c690538f4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---17800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb9b7163724cde350398a54de25753d877a6af2e4e753019c0b035af3854171 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---18000-in.json b/source/parts/detail/c/custom-paper-ring-07360---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..944400bc0006c715fc2c3b5e8ad4a77f27a729fc --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ea8e44ab8c193d070bb6f06fef1d3a48db72333d6e831a896ec3cb0648a3af +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---21750-in.json b/source/parts/detail/c/custom-paper-ring-07360---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f1af9cf96a77337d9a66c3b6a869d5d9c30cb364 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b85c4722111475b99a0ad62897a09bfe2903c7007191efa1c15e97a7f25b14d1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---21800-in.json b/source/parts/detail/c/custom-paper-ring-07360---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..977b7a7efc85093ae5009a8e472678b46e9c0b44 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b3385b1f07a07b93e33d57e1a9797dfb5f383e7a6c0d6356b7c1e3d7fc54a2 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---25880-in.json b/source/parts/detail/c/custom-paper-ring-07360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..530df9b0db4c13e1ebaf61bd619d9c38bf05d6ad --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9a7fbdf6fc6ac2c6d9cef0a96ee75909037f550659cea657e542aeca9c33929 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---34330-in.json b/source/parts/detail/c/custom-paper-ring-07360---34330-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3bdb37a3b954c1433e91cba2c39f1f2c351c113 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---34330-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003f182df07b4750e5aae53bfe6d61a6a00c96d4714fec46de280951a6520db1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07360---38960-in.json b/source/parts/detail/c/custom-paper-ring-07360---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b7cb60aa15c033ce56b8084c5dc437c8078cda6e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07360---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:626751a6cb89169f2ad1ad8e26ed6b36d7edcfda797279b51c58e9c1a9c5f0f4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07362---09200-in.json b/source/parts/detail/c/custom-paper-ring-07362---09200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5434f2d9be1877e3be7ebe54bbc7cc6553c196e6 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07362---09200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2561bb7e4eb43ef9af33024b69a9cca4b03cd33a29ba2aa4eaeb2787d61d3cef +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07382---09500-in.json b/source/parts/detail/c/custom-paper-ring-07382---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..807ae1596c80f3daacc9ccbbc8e8eb3964f15955 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07382---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c16de1c33b47c10451dce3bf64cc30cb0b30b0436612427cc983cc92acc3987 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07400---07100-in.json b/source/parts/detail/c/custom-paper-ring-07400---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cac09a57a8e4e0e3996917726bdb4bc7903a1c0e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07400---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3104eff75ff215543b391d141312c19795b7ac44a3790cb3457b4574310d3c21 +size 417 diff --git a/source/parts/detail/c/custom-paper-ring-07400---07500-in.json b/source/parts/detail/c/custom-paper-ring-07400---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b16d5d76760238b9ccfc263ab7bce65a1f7abba5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07400---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a005cd57eeb24895b04dbbbe9cbbc13746a80e8a4badb85df10044a11004f8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07400---09200-in.json b/source/parts/detail/c/custom-paper-ring-07400---09200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ede7841f94ca2f1bc3cad9f4b40d168f515a451 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07400---09200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab12462e38d2eab1b2376a7d872eeb4af374f7f5a9d438ae1460cbdadb0bb74a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07400---09500-in.json b/source/parts/detail/c/custom-paper-ring-07400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a075599bbcb7ababc6f6a27cbfdda1c0e20a8333 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a085452a7c93f476f4ffe352d94c5705f4b2ef608010541349edd8a17aec527 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07400---11400-in.json b/source/parts/detail/c/custom-paper-ring-07400---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4701c127d169b2fcfa89c4b89110c3d45bc57636 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07400---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8d2e3079bf687759d7be758def54b743da6318e895f69a8f0d73061beaa921a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07400---21750-in.json b/source/parts/detail/c/custom-paper-ring-07400---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb5739192267492564dfedbf6b7b3471f0c1ed69 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07400---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc84a9e0b0f683fa0c762ff0b12c4c21c6aec3db3da59e63cbb6a21d483b651 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07402---09449-in.json b/source/parts/detail/c/custom-paper-ring-07402---09449-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed1caedd596281b1b60c6434c983dd6fd0254497 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07402---09449-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaea0db915469af432ca4048fdd086f95cfac6a27aa7ca3430b55d36c7ec53de +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07433---09500-in.json b/source/parts/detail/c/custom-paper-ring-07433---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c207c58b1e60972beb265c2f4af1146c43604c4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07433---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a0dc5428be12f4f3bbb38802ce08ab51e4945d5225febd7abf5aff8c4156c5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07469---09500-in.json b/source/parts/detail/c/custom-paper-ring-07469---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f248b48a3e9d04ac306cb797081fca184a7e84f5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07469---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11cb0401b31015b91fa3765a64f992d6ad81b6d4860c7035d8e39ab8959ac09e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07500---09500-in.json b/source/parts/detail/c/custom-paper-ring-07500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddbc72720766958679bde06697faf40628a030b1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2860ef050aebb695cd2c87727f951ffae3b38fcdfa856a78526c36b164bcc1e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07500---15300-in.json b/source/parts/detail/c/custom-paper-ring-07500---15300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e1c0f71a87f0999613822afb47463bf25b88ed7 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07500---15300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38992f18a5ce3697cf890e2dce964c4253af115cb831662c455d72eeebf360bd +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07590---07990-in.json b/source/parts/detail/c/custom-paper-ring-07590---07990-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef39fd9aa1df4fe414219a4c3a44513f28df6aaf --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07590---07990-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e32d39e08d6043cc96b4bbf343e609259e74bc7dda8ac4a43d615f685b5fa93 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07590---09000-in.json b/source/parts/detail/c/custom-paper-ring-07590---09000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fbebd5d1163e5163d4026b90ca83f61d5250d039 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07590---09000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d45a36c5d3e67e70d73f24ef23f4b139088483c8c786a4404c25133e595a17ee +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07590---09500-in.json b/source/parts/detail/c/custom-paper-ring-07590---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cd0b5f3cf97aa6abde27cafe30f2e81d03a7037f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07590---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03755fd34c972352c152369f4169f480f07d416b470bcac3ea87820fe97add61 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07590---09657-in.json b/source/parts/detail/c/custom-paper-ring-07590---09657-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2211121e1d9625eca977c75918a780c07d29a035 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07590---09657-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5377b1350810a8725d11d6c2fafeac8b6311c9d5f20dc73449041ff4eaa4b9c9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07590---13000-in.json b/source/parts/detail/c/custom-paper-ring-07590---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82b7949c4281ebc55878a0e71deb120f44a02016 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07590---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd7d2e8b1621eecc373fcde03c2fe74cd6517eb129bf80a819ddc76048e795e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07590---15000-in.json b/source/parts/detail/c/custom-paper-ring-07590---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a0b51eeedf7cae31773a25f395823c393b59ef2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07590---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d66b2a35e532aaddd63a6d5d0fbabe861005d4eee7cd82b9debc213e0b7dd15 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07590---16000-in.json b/source/parts/detail/c/custom-paper-ring-07590---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f67655c6a1187891aa06362fe59feb159a74c53 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07590---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd7058e3e459adac108829ec93274203569f003784b82db6520450da07ccbe7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07600---09500-in.json b/source/parts/detail/c/custom-paper-ring-07600---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48baa44fe164a847b7d52229defe87a1013506a9 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07600---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7563b5c5c12c93b85ab87e8f0721c626db40ac017cf6cb783d848751771b9f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07610---09480-in.json b/source/parts/detail/c/custom-paper-ring-07610---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1de3c8cb893f4d916e90b920b8b69e79c1d9250f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07610---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4375256f44efba05d398f253e33fa5a77d25070cf0c614aba897e777efe8de +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07610---09500-in.json b/source/parts/detail/c/custom-paper-ring-07610---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09ed4d1d08a2d5ed251e1e3416581e4db77a13f3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07610---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026b23a1e2ca476eda338267703c16746ccbff36f7402ef0a4af857ac11efcdd +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07610---10000-in.json b/source/parts/detail/c/custom-paper-ring-07610---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e3518be9adbc03f23bcaf4878ec72b9252d9f883 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07610---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d9f955d7ff07ad98b526cbdcea4ea9029be5da4388535f7591b1fc40dea8ba +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07650---12830-in.json b/source/parts/detail/c/custom-paper-ring-07650---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7354d584f2db51cd83ae7227744482262d1ad40 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07650---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cdeb3ada8e6225e1ead5b3ad0086d342d916a6bd8904945878b02c9556a8c16 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07870---08000-in.json b/source/parts/detail/c/custom-paper-ring-07870---08000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ba71d9ad3a8e76559e078ec4a663c564a89e8c1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07870---08000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b76bad0699263141968f15e3d6f1402228eac455e423fdc91b87223c402fcc +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07870---09440-in.json b/source/parts/detail/c/custom-paper-ring-07870---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11df095d236500fabcef7651bbce4a99b95ea182 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07870---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886ca555c2b8eed9dbacd1bd715bd8436944f3266c41666c14560ea1b7814652 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07870---13380-in.json b/source/parts/detail/c/custom-paper-ring-07870---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..96007bffde99ea4a1e8b9483aef98839ef20733b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07870---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc26dac2f5cbbba554c5c302fa798cf63e7cc3b5e17d4e9e2b722f9167694ba +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07870---13454-in.json b/source/parts/detail/c/custom-paper-ring-07870---13454-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90b5fe12f613183b36a68c7c9719646076f3916f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07870---13454-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01c876f0ee70dbffa3e933d8de94fc69485ffd2a3dec73c68878e7b6528148bf +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07870---15430-in.json b/source/parts/detail/c/custom-paper-ring-07870---15430-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de2ad50ede65ea7486ceaeb0aa13932400edde77 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07870---15430-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ed26342e4048a79a3a8ff18ed5df172e156ce4ec1b7b74c50e8f3f5cd27a65 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-07925---09500-in.json b/source/parts/detail/c/custom-paper-ring-07925---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6594381ecdc244a4905ffb3f9c4471337e417e6a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-07925---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6d2e3795b44abb80bea5de1a3a727fa594fe29922a7a9df5b577f452a93da9b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08070---09500-in.json b/source/parts/detail/c/custom-paper-ring-08070---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b7937efdcfcd459a754e4ea8e9df3d2d40a2b21 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08070---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ee879bc441ab7f4b6d0c23d0413a729f419d11786e134bd95dd5b392a6a0b0 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08500---09100-in.json b/source/parts/detail/c/custom-paper-ring-08500---09100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..57fcf254f2a100299f7f898621fd0ca994d9c899 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08500---09100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25e49947fbd72e1a6ebc3e0536aaf52ed06cc8387de1c5d11eb7b88733ecb9a4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08700---09450-in.json b/source/parts/detail/c/custom-paper-ring-08700---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f4c998dc2e482056b98403636517d0c6e561173 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08700---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2e91712bab0eb19248f18e4ee6e1446a0e3f5265813d2f0dc0c452ce5dfe1b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08700---09500-in.json b/source/parts/detail/c/custom-paper-ring-08700---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a34925ee8f2f51e1e465c2d5f6c27b2d1367e227 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08700---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738039c6ef31bb40f1c1f3b80a7e9f7d40778f66ef3e881605f17895114e456b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08744---09500-in.json b/source/parts/detail/c/custom-paper-ring-08744---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d5c196423b13371c9bc223e4653db2a7b5a047d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08744---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2e246fa2b148bd196d7a4ea0b8aea5c2fe2a4e9d7ce09172edc06cc56e4c49 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08750---09500-in.json b/source/parts/detail/c/custom-paper-ring-08750---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2cabb0bbcdf4c192539f97684159851ea919c261 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08750---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bebcdbc30a505c118e7e3396d4fae952fd135d9da87334d033c7196d54ec948 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08800---09500-in.json b/source/parts/detail/c/custom-paper-ring-08800---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a11e1d82e52b219d70e289d51a355e3928c740e6 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08800---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0317e51973e77f29e08fb6b02059124f67f78f80754dcc8d24c0488f2ea8be +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08823---09500-in.json b/source/parts/detail/c/custom-paper-ring-08823---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a340789e8a9d318d40750f954f14e20f2c57b80 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08823---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca5fdbe86bd34502b2a02d3a2fce6fd2f7f4592113da37c22a1566dd4ac1fd01 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08830---09450-in.json b/source/parts/detail/c/custom-paper-ring-08830---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e45bc4d2a7a3cbc7ef42f12bda0ab998a3150b9 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08830---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32b91770a47222bdb3a298a95ab2139ffdbec9d2aa2fdcd1cc4e148c5b746c04 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08850---09500-in.json b/source/parts/detail/c/custom-paper-ring-08850---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db515627233b7dde2d63fa28184665ba723aa45e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08850---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7aad7db901890b36bdc050d13998bf8f9a6e082ad099b4208fa2d5fb8d5647 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08850---09630-in.json b/source/parts/detail/c/custom-paper-ring-08850---09630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01d676d4eff662d13538157e1d77b9402ff69987 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08850---09630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821aea12b52168e4810857c363d58840cc97e7113cfe66154305a2d53a467067 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-08880---09500-in.json b/source/parts/detail/c/custom-paper-ring-08880---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a33cd9755ce1bb21730c8b0304735f1a148a0017 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-08880---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad64a326c8b6e91c0360b598c1e93792405231a7b357a478d830c95f3d1048ae +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09000---09440-in.json b/source/parts/detail/c/custom-paper-ring-09000---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..851b42179894069c605645bd3300bf70c254639b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09000---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99c71893fb81f1b73f9e144512b76e76ee9af04359c6cc57deeb0db4d57b2d42 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09000---09500-in.json b/source/parts/detail/c/custom-paper-ring-09000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d218ce4f1ea1b8b8e4268b024db3ef430ef43568 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4529823381f2a90da40657f5feecedc65a2ada50bce74c3ec52d2a34f05b42 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09080---09095-in.json b/source/parts/detail/c/custom-paper-ring-09080---09095-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c633ae307fcbac7b902dbceb21275ec430fd16a3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09080---09095-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c94f514cc14a7fb280ca5a2bd53a9ae52e712c0bdd13943021ef4d1eede70d3 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09080---09500-in.json b/source/parts/detail/c/custom-paper-ring-09080---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37f6db4b4c31269179a9bf89ae712423cf4fde3c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09080---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8bfa459650b0a798a5853b15a32b3a08172db8f78631eb17e2c5fd61c2e6798 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09250---09500-in.json b/source/parts/detail/c/custom-paper-ring-09250---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ea60e36049d63005605e796c2a305f1b7ad44af --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09250---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bcd144940a1d0e7e94d6ad4b184152f678841be8eb889883a428cfe250d76b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09260---09440-in.json b/source/parts/detail/c/custom-paper-ring-09260---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5385cc8b4b5edaffea69b4c619db921a2d9a3c50 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09260---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd3005ad208f9fcc0e88ab7144189a02a8a3d1c2153c6e1509a19bb0d5d5d562 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09360---09500-in.json b/source/parts/detail/c/custom-paper-ring-09360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e53b329ab9bcb80405caa3f738ee8fc8026db187 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455bbc4a0259c3dfd78d39a1d7d498e53cb4ac28f4b02843fa069081b5e58a36 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09600---14900-in.json b/source/parts/detail/c/custom-paper-ring-09600---14900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2fb480e253a95837649c9cf9d23b4d6f186241aa --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09600---14900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1ba47f0e7dd1aa8e8ca71104ee9d72a0249259dc67d3e57910191d8430f8278 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09700---39000-in.json b/source/parts/detail/c/custom-paper-ring-09700---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ac39e86791168a4135b8a016a821662f452b610 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09700---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84c32bc4c184c2695966ccd2bb696753d34481cf907fbf66adf28b2eabed1b97 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09750---16300-in.json b/source/parts/detail/c/custom-paper-ring-09750---16300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8ea547155daac23542661994494b0f0a1d7d704 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09750---16300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feeda5d086650b65679bf551b0b3c391865e45277f09c168834944313a6980fb +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---09500-in.json b/source/parts/detail/c/custom-paper-ring-09760---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8faee5680982faf201e51fd988881ead7705d681 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac81f38dfa231461d7e075c7755b2eeee87d17999664bbcaa452a369dc11bbde +size 417 diff --git a/source/parts/detail/c/custom-paper-ring-09760---09764-in.json b/source/parts/detail/c/custom-paper-ring-09760---09764-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd1971a3cbecd901b8bb3f53efa0874f83844a23 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---09764-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0067ca93659a87dceb88418b7fabd1dc2a5a036f7eef8c0c698ce9527de344 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---09800-in.json b/source/parts/detail/c/custom-paper-ring-09760---09800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82f3b6a4c4c151cac73b9464a0ef8353259442eb --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---09800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3267f4ef3d2017326a8e0932c60e6478acb232744b0b4b4fc034651e30d56864 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---09850-in.json b/source/parts/detail/c/custom-paper-ring-09760---09850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08803e4fd44011dc17c81243729789d0baaece3a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---09850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9374e76f48b5fe391393fe282d5153066dd86f81bd0b59e6c23845aeb5d4ea3e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---10000-in.json b/source/parts/detail/c/custom-paper-ring-09760---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f9c9b962c9af18ded4e15e28e0b1634930d2aa7 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a1a8aff4a132bce59128b43cbdf8e512df4ab7995b83cc3cef5bb70b6fbd01e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---10157-in.json b/source/parts/detail/c/custom-paper-ring-09760---10157-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0fb7aa4ec904b8c8a66172d7feb7ff57e58954f3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---10157-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aa061a10bdb428f3d8f28cdfbce7a26bba0013afc08898771f184efd3d7bf33 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---10180-in.json b/source/parts/detail/c/custom-paper-ring-09760---10180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f6e5e3e1e0f72dbf85148c6f290ecbb42ca4c8b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---10180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4388c633121eae8330c508086543d2b6d035a06fa93bbf8358426dbcb33c0742 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---10811-in.json b/source/parts/detail/c/custom-paper-ring-09760---10811-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d81fc52bf33457423be406911f4491ee89b90a11 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---10811-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62191a7164952acf29195d532c64af85e4b9f478c1cc1d441caaa7580f771a09 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---11010-in.json b/source/parts/detail/c/custom-paper-ring-09760---11010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afa423c403b3cff09c41bd5fe4ecd8535ccb428b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---11010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d55fad289df69e3f4086c1921f9fbe669107d02d20b46ea3d615f1fedfc4ce4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---11713-in.json b/source/parts/detail/c/custom-paper-ring-09760---11713-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e90f4eeb4842784a45f96eb5c527533195fb3cd --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---11713-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48d0bc05abfafad15b2317791a367485f5c160a92882f885ae9366c6d7031004 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---12000-in.json b/source/parts/detail/c/custom-paper-ring-09760---12000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b00fbb360c1bef418d46e146f317220deec67e3f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---12000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:081898753d522953de9ab16720d26c303e191df8e7169048c9d8ec1d0726e790 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---12630-in.json b/source/parts/detail/c/custom-paper-ring-09760---12630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0721bb9d9f26461dad18a2b6e57d16eda4befa19 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---12630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:809ac83414a4ddcd5d00a561be98cb54d0e9d621c0c1ff5b21525dc253965ce1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---12800-in.json b/source/parts/detail/c/custom-paper-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca4869a710110249f3ea9f8a1f1e4a7d348d2ca5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfd33749458ec0ec8c38fbe93797d2b115edce709788fe482a30686483651a5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---12830-in.json b/source/parts/detail/c/custom-paper-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20efb0439a3631ce6ec95bea588c6d503c57a41e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b48bc4c3cdfa057662fc060768e21631eb396de160dbb7decd8801bc11697a7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---12990-in.json b/source/parts/detail/c/custom-paper-ring-09760---12990-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ee874969a6d6c98ddde0706701300f545ea6d8a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---12990-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29429f3f00803b3478f4c7929c5be007ec98821f65a3e497b52a0fa7df9d760f +size 454 diff --git a/source/parts/detail/c/custom-paper-ring-09760---13040-in.json b/source/parts/detail/c/custom-paper-ring-09760---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc5bd5fe7b33b532a954c1a61003bf6dc9107936 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eba8ed3cd02c41783614c2e672d5b15ec3945fe99e235ee6df885cfe12fea8f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---13084-in.json b/source/parts/detail/c/custom-paper-ring-09760---13084-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a671c93cd6a6b4551248373a8c5d61eda9a6e184 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---13084-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c1e7c2ddab3d5e33d83e26ad09e0fbe42fdf89b053eac8c4ee0a1599ccb90c9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---13628-in.json b/source/parts/detail/c/custom-paper-ring-09760---13628-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bc211b2b5dd5edbbd1d677e889f4a80028139de8 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---13628-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c46a9494dbdace2d95b2bfcfde597cf60be7d8348a90233f50f1e3c08e43ad5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---15900-in.json b/source/parts/detail/c/custom-paper-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9f9671c4d1d5989c40e5ed975be7cbeadcbabe1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc308a70ba8004c54aed5be938479895fb0ab7a8f402754c6bf36c28c3cb750 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---15950-in.json b/source/parts/detail/c/custom-paper-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1fcaf7827897c73a1a90da41ff9215654640bca7 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0e76d2f2e58cb8f91e643f2e38f1703a3bd69fda5a778c74696f1b03469d52 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---16007-in.json b/source/parts/detail/c/custom-paper-ring-09760---16007-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bec590017432a95854e76005686f99cf94186c9a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---16007-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ae6d8a523a5e06b52c5c4706c3ec7034093fe2817f9d26594d331a247a6bb5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---16250-in.json b/source/parts/detail/c/custom-paper-ring-09760---16250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56912c3680ddd3e69162a3fc75bfabc704dad98a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---16250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83c5e7f45e11fc7d92189a7e370270ad9855bfc00bd838ab189277e20cd33c0 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---16360-in.json b/source/parts/detail/c/custom-paper-ring-09760---16360-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2a26d9519199edc1c7b5cd16b449516684bdb66 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---16360-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ca479447dd4da19dd81de0464aae7f8d79a96925de404df2aca950a46ce88e6 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---16456-in.json b/source/parts/detail/c/custom-paper-ring-09760---16456-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f88ccd7a7f85ca2e095fe67c92461e68da52fc31 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---16456-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e5d1941de66b52da9c7947ccec334d8081f5fb0a061a86b540f4b8cc897b31f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---17100-in.json b/source/parts/detail/c/custom-paper-ring-09760---17100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42985b31f5cf1b288f70228d86ad120f8c3336fa --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---17100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543d1fce93e4f0d8d77ffb9bd313429a454a57e88bcd20c660e96d9e5321463f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---21400-in.json b/source/parts/detail/c/custom-paper-ring-09760---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2b9c176f1f4cc963b8ad1a44951562d6f685d72 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e923363c72c778e38db91ccc95b19763a785ac1770b02a80415c77fb24d9a295 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---21800-in.json b/source/parts/detail/c/custom-paper-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bab99a97abb6a36b70ecfe5e8031242aa64e5e2a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e66060c3afc52a567d101a2900d1218b82dfe191da9e0406737d230bb19135 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---25113-in.json b/source/parts/detail/c/custom-paper-ring-09760---25113-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2d88ac3ee08ecf9bea114d89a6c6b0b77ab1f4e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---25113-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b281f7ad6bda29a157128400129a968d6a055db730c50f3ac609bf6b386bda +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---25878-in.json b/source/parts/detail/c/custom-paper-ring-09760---25878-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01b7a6315791d6769cd38071fdaa7a70c200c2ed --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---25878-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1acedcd62593296f499464450771f46bc7a8db92313b14f33d4dad9302abd7c4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---25880-in.json b/source/parts/detail/c/custom-paper-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6ed2a4ed137d95862c444298bbd5743d68c415f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5dcfcc7ed03c4f9b07cb74c5d95806208a11fa8f4d10f96e361bf63ffdfb70 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---25882-in.json b/source/parts/detail/c/custom-paper-ring-09760---25882-in.json new file mode 100644 index 0000000000000000000000000000000000000000..38885692562f45574f156885aed315777b494c98 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---25882-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffe2e34e4952cf577c537f6d7d0c316dfe5f974cc341e7f97c6a229d1a817ea +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---36550-in.json b/source/parts/detail/c/custom-paper-ring-09760---36550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59c7c71c61bbef86e18330d6dbe776d83f432d7e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---36550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f841daf08b3b290d467518ab8c17b9900ffdb4278d93cde6e204a96d9cfa72ff +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09760---49700-in.json b/source/parts/detail/c/custom-paper-ring-09760---49700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..660c99d21a77a6d175010ae220fce3b40ff785b6 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09760---49700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e11733eebfb1c401ec3bba78119cdf761ccbc5d3940f327740bd47415f7af83 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09799---15900-in.json b/source/parts/detail/c/custom-paper-ring-09799---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4bfb8de4950df02cd7ff3d9a1cf82d6ed4d6ea92 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09799---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebdcf4d0d37e7326d067fe6c236d83c53f980a1a866c988e9508f8af8dea1c5a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09800---15900-in.json b/source/parts/detail/c/custom-paper-ring-09800---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8004b3392e8912d95e3abdc952b26817893a7728 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09800---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24816eeb70485859df589f6161473bf7359e9035cc3bb34cc69b6a0630035b63 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09800---21800-in.json b/source/parts/detail/c/custom-paper-ring-09800---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d6ba77a8ce166673d5d0032839cb43eb63eff651 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09800---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb72a977228f4a07fd2122364cf5d5768df34c14a52eb6047a00080ab6d53320 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09800---25882-in.json b/source/parts/detail/c/custom-paper-ring-09800---25882-in.json new file mode 100644 index 0000000000000000000000000000000000000000..16f1cf324781b65b35b480412c5e4d896fb0674d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09800---25882-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3467947a85f811eddfd398ecd06959cdd090cc90d0a2df7e3a4f60957e25819d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09800---25900-in.json b/source/parts/detail/c/custom-paper-ring-09800---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d284a6757c303559b0acd03a63a61fa0e947a628 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09800---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:131657cf53d1ff90aee026515e78f81b9fd3b7b293af7f6c793e8a07638e7ed7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09820---11400-in.json b/source/parts/detail/c/custom-paper-ring-09820---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc2514e45b6f7ac5ba10466de25c41342cb9bff0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09820---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4e037430e4b731a7b553d4e9c3ab8085d8ba7c206adb7adc2c9d973905f7c7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09900---15950-in.json b/source/parts/detail/c/custom-paper-ring-09900---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d404690623cfef62de4d4a032665de068b86233f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09900---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79961d422052bc08af68844a1dd87c07a541edefcbff65b90b050a89b99ca68 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09920---10520-in.json b/source/parts/detail/c/custom-paper-ring-09920---10520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a1db8ad4330c8724828c196b2fce936be0937b70 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09920---10520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2237a414e924c00da6ad95b25cbdb29d793f9e6f9539c943ed9db735b8ecb0d1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09980---10000-in.json b/source/parts/detail/c/custom-paper-ring-09980---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a72249a55557c17cb8c9537df7c07d44c71e37f5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09980---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5a2d13d948ec1eb87a93ec87eec63ca3326b8581baca34de7c6a8dbec74c2d1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-09980---13000-in.json b/source/parts/detail/c/custom-paper-ring-09980---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8852bfda8b6f01351dd79c514d969405867fdea --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-09980---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860d70292573c5beb9868ce5808ad164924feb6572e02de0bca50c5e1dedc4d4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10000---22763-in.json b/source/parts/detail/c/custom-paper-ring-10000---22763-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3fad444995f6a15e1117957cff8137c507252c07 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10000---22763-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0286d8c7cca354ef9002902569bf76b8b26a1b39afc4830c331cab2efa5bb9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10000---25880-in.json b/source/parts/detail/c/custom-paper-ring-10000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7e213e7009c0b5d007cc597e0eba57be13fae57 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21aff1d16ab056c28182876693c02bab64872e6f7452fb520fa90568ef273d7b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10000---34916-in.json b/source/parts/detail/c/custom-paper-ring-10000---34916-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2af8c7595b463ed95901aba335c3cac3ad9e09f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10000---34916-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61988a6e3277e682a439770f26122f1b4cf94b20b1e0791c4042732173022a7d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10161---11433-in.json b/source/parts/detail/c/custom-paper-ring-10161---11433-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1a2e82f0c8f5b471eb5ad3424a05b50fc683deb0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10161---11433-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9542d6d4a70911c8b890b7c9ef7bf179d9cd3bca1e1ef442d7475e8376f154 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10200---12734-in.json b/source/parts/detail/c/custom-paper-ring-10200---12734-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c1bea3e306ac4000e7334d59d54dda7f79c64a6 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10200---12734-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bdf43b625d452cf7772c916b669952c1385a210c8177414c48d6d986def208a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10300---10800-in.json b/source/parts/detail/c/custom-paper-ring-10300---10800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..327fc2ecd166b3b88f4e2bd0d8b18ed777e6a506 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10300---10800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4def8b4b44ade6067f90bd11aba6a0b926ee3faab0e4794b2d1799ddbe950caa +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10300---11300-in.json b/source/parts/detail/c/custom-paper-ring-10300---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b36da3a23c500d7b00c33e4e9bdbfff10a5fd51d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10300---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99a3fc5b641449d2ee8a9fc5b5e0ebf157b90e2f43659409e90a8868edf4ec3 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10400---10430-in.json b/source/parts/detail/c/custom-paper-ring-10400---10430-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42606174091012cd43016cb4499448e2070fdcdc --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10400---10430-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f38f5801ff189b4295c94ddd4921ff32f751f69f486c36018e12f06b700dc8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10400---10550-in.json b/source/parts/detail/c/custom-paper-ring-10400---10550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6937d02d6c347cfd8462803a708efb7bbcfc62d5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10400---10550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4334cf8fb35f216995c21fecf1baadabc08d827bde127ca1b59b0bca34e195ab +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10400---12900-in.json b/source/parts/detail/c/custom-paper-ring-10400---12900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eaf79e7c68937627b26bfa513772a6f3a39abb4a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10400---12900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2784d8a82d8bb993161ce7236d6c67fd907a66ccc07c93cfbea2b0e99572853 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10400---15900-in.json b/source/parts/detail/c/custom-paper-ring-10400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90c0d2495c7c85d3c70d57b257b304fe05934ee3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6ce0fdede947abcb7b1bf2933df4941a695b79aac30ce493374ef590e691b19 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-10430---10550-in.json b/source/parts/detail/c/custom-paper-ring-10430---10550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c237b89ef9930da892d53ce42818e792f51d5cd --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-10430---10550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9aa9e5e495914eb7fe7cc599357fa3e33c24d20e6927054829b6d49fba8057a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11024---11449-in.json b/source/parts/detail/c/custom-paper-ring-11024---11449-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afac4564544a7106e7d5be6db398aca792701b98 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11024---11449-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5028a61c7a5b508f8592afca9fcdf286aab1c3446e298d5b89a0a8566af30c18 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11200---11450-in.json b/source/parts/detail/c/custom-paper-ring-11200---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..961f5dd2c986dc67b14f039b706c59f9a4b48f0f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11200---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db4ce68fda8dae948ec7a97d218354744ccd0beb34d882e1557cdfd9e8204e54 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11400---15950-in.json b/source/parts/detail/c/custom-paper-ring-11400---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca75dee48b16ff84763ec4a7932e50e529c8dbf7 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11400---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38b10ac0a58c05fcf16e5cfe4619858efdae268dbd4ce2b1cbed4f8922b74af +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11460---11620-in.json b/source/parts/detail/c/custom-paper-ring-11460---11620-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc76f99b303559660b5b02c06f721154f608e5da --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11460---11620-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9370d426a979f62c46bfd33ba43a2688f81e937f4093ae5d27d614c49c51d8f5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11460---11660-in.json b/source/parts/detail/c/custom-paper-ring-11460---11660-in.json new file mode 100644 index 0000000000000000000000000000000000000000..23b95637a8c142506e4493e51bf709ef3a8b89ff --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11460---11660-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bcdb9a9ec364262be5cf14c5f0299d02ac754b50ac0db6c5bcd6c5f576891d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11700---11950-in.json b/source/parts/detail/c/custom-paper-ring-11700---11950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59e71826faa44a9fa95d71665d1c177443d7cc7a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11700---11950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cad880a23cc5ceceb418bfaa6e9e9223c56c3a9a99c2e923416caa771d9a3a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11760---20000-in.json b/source/parts/detail/c/custom-paper-ring-11760---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3965efe6ecadf43aa7b8b5d412a674d9e37b400 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11760---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c87acbc0406e460349ec67249743a269a3b2a99524dde5a74353210ff4387f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11840---12040-in.json b/source/parts/detail/c/custom-paper-ring-11840---12040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7693a75b57c6bf331690771a478e17e6abd2429 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11840---12040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e639f4a1ab3f5f09636467fbcb70478cb06173577ef2efc678cca1b7eccf84d1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11900---15900-in.json b/source/parts/detail/c/custom-paper-ring-11900---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a0529f48b457a3a84bd81cc7439dcfcbee484a0b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11900---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edded399386a7d0309fbfd056dbde92d2303bafcce9cc9ec1e99111befc1736d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-11950---12500-in.json b/source/parts/detail/c/custom-paper-ring-11950---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2889d1cda72d9b0c848728af7a806e1657b0dc1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-11950---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a1e1cf8b627b24994644e4b22659f635b590d77ae09c3a0f1419e1b3027d8b8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12000---12830-in.json b/source/parts/detail/c/custom-paper-ring-12000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6934585dbde311d413b511d4b879a326181b0b6 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3abbea39b1a31a81a4a8dfb51aa10472d5ff8ebdb5a82696e4128390e21bfc +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12000---18750-in.json b/source/parts/detail/c/custom-paper-ring-12000---18750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..418a57bcca23d1be8b8c7beed5857dccb3b206fa --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12000---18750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a464416db565862e8ec5e7cec6b5034419fcfe042eae528dbc3b061c86280c4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12000---36550-in.json b/source/parts/detail/c/custom-paper-ring-12000---36550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03fb602e8d41d2573879251ce2b44d97a7a045a5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12000---36550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74edda6b4b1409c2bdc4fe0c28c43f775e365766b2a92952973e68d69c2ab91d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12000---37600-in.json b/source/parts/detail/c/custom-paper-ring-12000---37600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ced412bfe6d39b3afbfbbde470ea31f4a305ca9 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12000---37600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcaee77d2f9c1f6942c6e9bd5c45589218a37fc528163bc6c54096435c306e45 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12000---39000-in.json b/source/parts/detail/c/custom-paper-ring-12000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e5ce3db6e85b70a5aecc5f44646ea0815ac88a0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3754c05959956d1e3ecd12a2445fe3c6ca21e95765cda4be546f3613cf5872 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12100---12700-in.json b/source/parts/detail/c/custom-paper-ring-12100---12700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..572bb02945f127c09c09c48cf9fc7a063055574b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12100---12700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6557896c8ddda7b11c8c9ddb70f77c65fcb0ee92cc06186b583de08895c8b9d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12100---12830-in.json b/source/parts/detail/c/custom-paper-ring-12100---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c0d5d729a45600e0e9ef90115813caaaa89bd8e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12100---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade67491fe63980245d9832b894f90b737591167627846ba2560f73cf7093a88 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12100---13000-in.json b/source/parts/detail/c/custom-paper-ring-12100---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..17331db9af03c50de0b9f557e2f683c5366f2c4f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12100---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d30f510ee62bf77817d2de804fc1ab3b79f310ca0a4d5778dc2cfdfa1c3250 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12100---15000-in.json b/source/parts/detail/c/custom-paper-ring-12100---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab2b756b0accca058e79861b50a413209a615afd --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12100---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71ffcb686cfe94a51f9987c0f781df3b7c90a9efbe199e0e24f4b9bbf1bea7bb +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12100---15200-in.json b/source/parts/detail/c/custom-paper-ring-12100---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a1dd19b2c9afbccb21c62d39457a3bb32510bd3e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12100---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec2338ef4455b65b36812f92179718f080f31c941d88ca9214a954c23ec6f24a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12100---15250-in.json b/source/parts/detail/c/custom-paper-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bfdfc45828274743261d8b2ac6c3cdc28d600b6e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f28416efe3ea0256ed8f8adc5ffea1d596186a31393932a51a567444736123 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12100---25500-in.json b/source/parts/detail/c/custom-paper-ring-12100---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c910544f6b0c5f9efe463d6a5178373f05ee527 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12100---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76eae490ed94564e353fd9e78fec9a8d0bd2b65c9ed381e18fe1e8e32de171b4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12126---12830-in.json b/source/parts/detail/c/custom-paper-ring-12126---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70e2f9ef8b3713ae2b26ddc0edc1d229429b8ac8 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12126---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40286308b004b3ac3299bf942d5c045829bbae909d35ab67bf0a67812ea1f7a4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12200---25600-in.json b/source/parts/detail/c/custom-paper-ring-12200---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..558836815260db865ac7486e472649bd67ca3f79 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12200---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff451ec83611ffd03ffc261049c4d33897ab1ecf60c5ee6c6ba595cba2fd638 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12410---12830-in.json b/source/parts/detail/c/custom-paper-ring-12410---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..25bd00318ef423a1e9e72f42a8815187d8f87ff5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12410---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6739afa16e46c2ea6c1901b4f22f810620b6b7e644995b0bbbf96f3e8ad896bb +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12500---29000-in.json b/source/parts/detail/c/custom-paper-ring-12500---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..421d7eb1e578173405ff84b0c8396a057931511c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12500---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:529121864383eda0a5a4f9e5ff4953df520defd32810a62249f862be363a5523 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12600---13000-in.json b/source/parts/detail/c/custom-paper-ring-12600---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f89960dc01f6244a22faf92e5ba0e73f7499e24c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12600---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0211eb98c00af95908c9d889f6fd028216ba4792e2d3c499f96b27b0d62dd2d9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12600---16000-in.json b/source/parts/detail/c/custom-paper-ring-12600---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb89a591ff184c69d43d6867572598a3c34d3580 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12600---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4666c80074041bb9f11c7678a185307d9004f169adfcdb73d62c7eb7f9df532f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12690---25880-in.json b/source/parts/detail/c/custom-paper-ring-12690---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d407918c4c2f38e4c9c53ca5c912dedcd4961a2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12690---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86cebed42fd913ece8f8fe1d8cc713b205bf962b5e7a8ac4d05ee905f18c45d6 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-12700---30000-in.json b/source/parts/detail/c/custom-paper-ring-12700---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7ca4a591cecf86c9baf686d1fcbb2c3701159de --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-12700---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0875e03b255b6107ca90869430b7f8624cb7535feb5c92ab9ee602b8e4b7ec0f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-13000---18000-in.json b/source/parts/detail/c/custom-paper-ring-13000---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..32a23a7036a800089584358f2ae51ef86e943caa --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-13000---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0653722d89657331dc5548dfabd1041a5b058a06e52762dfb8886594bdd1eb82 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-13174---13315-in.json b/source/parts/detail/c/custom-paper-ring-13174---13315-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba0f6918d129f61a2b37e66fdaf15ca99f0473be --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-13174---13315-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79e484b0165c020b2c05e887336c0701240e52995e8ca61d368c5227536284c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-13200---13380-in.json b/source/parts/detail/c/custom-paper-ring-13200---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca0e2f80b41708943952c7b6b387dac7e803a44b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-13200---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b235c967af96e335ad647aa8b683655aaaa45d0a009f4fc2a2285b4df1fd3157 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-13242---16910-in.json b/source/parts/detail/c/custom-paper-ring-13242---16910-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e8e82bcde0d4462c74c92b1dd4e2eee32884915 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-13242---16910-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d84a0c9dc2285f443b93bc6b00d299af4100f7654126817bcdec01229aeb735 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-13400---13500-in.json b/source/parts/detail/c/custom-paper-ring-13400---13500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c6c19c28a7d412a547697d502b4e02429f59efa --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-13400---13500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:422accd592fa6ac1888eba6754b42f5c5570e3fb7f5f21422efa93a2f88b9dfc +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-14208---15762-in.json b/source/parts/detail/c/custom-paper-ring-14208---15762-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e961a4ff677f04c22f184792692db36b0b60194 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-14208---15762-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f738484dd0fe70bce280352c84f43edc38e8a4137a9fe19d93e76cca36cac5bf +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-14600---15740-in.json b/source/parts/detail/c/custom-paper-ring-14600---15740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..931f720b2f237fd7a4a517f332f3e28542f90deb --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-14600---15740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7217e5e97949bc4aed54f4712c6fd4c70cb4a8363c8eca755e941e9d041d919 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-14800---18900-in.json b/source/parts/detail/c/custom-paper-ring-14800---18900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b6b03b960b8e9acde938f1d824ce51a2d3687c5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-14800---18900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e73bfffea2482b6098044abba210f3373d4aaebcacc268b17f8d6adab754448 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15000---15900-in.json b/source/parts/detail/c/custom-paper-ring-15000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac612c7da8f235a0aa55d8a1bc2c97b2ded81b6d --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8815765ce44592f5eeddbf50528be5eef217fb485a4f5a1174b890fc5e2b199e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15240---15920-in.json b/source/parts/detail/c/custom-paper-ring-15240---15920-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d71cac09750b1e44954308e087da1803dd03774 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15240---15920-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ff2f74e809ef9685efe9952f7a0f5b9c67ab565f2d04d0d0dfef8dab952c86 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15240---15950-in.json b/source/parts/detail/c/custom-paper-ring-15240---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ec97f0d286a8b82c088cc9169a21684fcaf85b2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15240---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad6a988e504d90e6c916f574b8a9591327dc9d87a7d109200e50ce88912577f3 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15250---15930-in.json b/source/parts/detail/c/custom-paper-ring-15250---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95fffea522689a41a4d2f521f32fe80a121d4a7f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15250---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53496be4e12d5c6217c5145a51269aded2bb6bbc5c682f672bcf1923a5910195 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15350---15950-in.json b/source/parts/detail/c/custom-paper-ring-15350---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1a0e4cbd08b902d593ab82568a01f0466a0bff36 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15350---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3dab92d0acef81caf199ff51303eba0f125c57f18216a3503b12a1d843d8b8d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15370---15950-in.json b/source/parts/detail/c/custom-paper-ring-15370---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7db4349ea61b1ab01180dabfa5bddad0bf23281f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15370---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:921dff4a08b6b3641d871a8ff4cf11c560599493490ac79c8d62e285993e0c8b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15370---25880-in.json b/source/parts/detail/c/custom-paper-ring-15370---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e274b63853be73552942d43b0ccf543577c19ff6 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15370---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88680739a17a93871d3e70146d431d4327967dea9433fd1484906e88b0d6a92 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15400---15700-in.json b/source/parts/detail/c/custom-paper-ring-15400---15700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..69eb084f9ce7ad1990c079941ff606e449b7d40c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15400---15700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e73f32f4d395bbb0869ab3830dd9fe3868f36064e9d72312a10513ebd7d05de +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15400---25580-in.json b/source/parts/detail/c/custom-paper-ring-15400---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e596db7249cddfab9d2b05bd013409d4d14dca0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15400---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:433c678f23667fe798be99f6e28c13ce344348cec1233f38441fcf7a5e37f598 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15400---25880-in.json b/source/parts/detail/c/custom-paper-ring-15400---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b653e9ce5c60ba2d6dddac2ec0027aa5b2a1bf50 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15400---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b5d69ba72a2d0eeb44906e84190fefa95c5be14422892e1d0b2a3655459b56 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15465---15950-in.json b/source/parts/detail/c/custom-paper-ring-15465---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0bf39bba22ba71ffe5c7a0e1b10dfd0409344d1c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15465---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f31309fec561bde3bc687f6d15ed7ebf116c90379f4defba0c2738cc6075f135 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15500---15902-in.json b/source/parts/detail/c/custom-paper-ring-15500---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9e8840fdf1f9aed85c999880a98fbd169bfc4d3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15500---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07e373ad3df2aeda37249dd4f49df9327fcbb0b143c4183f9148b53b8d66c46 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15510---15950-in.json b/source/parts/detail/c/custom-paper-ring-15510---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c22bccfec08f254ea78533925ea6eaa23aab8d55 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15510---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1301e88f54a8638d854468a5727c181f1fd1b3a16ad9e6263750924061eca7ec +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15530---15950-in.json b/source/parts/detail/c/custom-paper-ring-15530---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7346292ffe0481f851e8d3ade636e50730c559ed --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15530---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222d000d21d8d872543d1ca3714724e28d1e45a5034d6c1f9e7c91b0ae465c4e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15630---17900-in.json b/source/parts/detail/c/custom-paper-ring-15630---17900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea0b9d632c3e0e0f7b4c9a4173a5226bdd6e040a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15630---17900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1be14ad3b45d35b1f1f301690439d6033477064524cf095b993129e53d2934e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15950---16370-in.json b/source/parts/detail/c/custom-paper-ring-15950---16370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c61df808c87601c7a5a195da575bd2b12748b35 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15950---16370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f714601767551ed7b6b3e4646cbf6f4fa75d3f5a9b6f7471b5286908d954250b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-15950---30000-in.json b/source/parts/detail/c/custom-paper-ring-15950---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af882bed902772b4623f9317fc495d4af4a9f70a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-15950---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b568831bae0d4661da3710f8b83aa4c6a745f12799d54a94662d240119925b2e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16350---24091-in.json b/source/parts/detail/c/custom-paper-ring-16350---24091-in.json new file mode 100644 index 0000000000000000000000000000000000000000..23aa5f75f8ad539deb7efd6f1ea473dc17ea793a --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16350---24091-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3127d826bcc9cf69928b418ba7683f4d33cacb0589ef241605aa6817e9545fcc +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16370---16475-in.json b/source/parts/detail/c/custom-paper-ring-16370---16475-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4c45aacb07bce186bc47a4487ece517228ee9ada --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16370---16475-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4628fdd8910853d1feb268a371c060fda22da27ec4da1bcd92ab11ac9ed9087 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16370---16900-in.json b/source/parts/detail/c/custom-paper-ring-16370---16900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f71c82e323022391ff0a4bd47a25fc2bdb5b9ab2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16370---16900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4385242f50285d597ba22ab85555954e2a936a174d2808023346c1fdc4d96dc7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16370---21750-in.json b/source/parts/detail/c/custom-paper-ring-16370---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f3ac84a54ebc83ebf694df9247298e09d863d50 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16370---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a212f975c5fa8510185a26b2960d0f8dfce6c282ecadfb2b794987ff4a48a2 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16400---16500-in.json b/source/parts/detail/c/custom-paper-ring-16400---16500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1c281525d048b7a02488c6823d2602c0ed2ef38 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16400---16500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd8e4ffc148548e3d8c06de6f8e1ef228a0d78f0738e68469d7add4da56aefc +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16400---16600-in.json b/source/parts/detail/c/custom-paper-ring-16400---16600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b699b236be909c9f0601f401929ebed931f5d5f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16400---16600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3afb08b04ae416b9443b3684c7daf07162888c18897ee2b0965824a07ec8fa8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16400---17500-in.json b/source/parts/detail/c/custom-paper-ring-16400---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ca4cda81753abe9fb5faeb116b93d2e00b08f3e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16400---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:357ea85947579dea59e67747bd806a28967a0f761f60f2d57bc07dcc5c11e6e0 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16400---18500-in.json b/source/parts/detail/c/custom-paper-ring-16400---18500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..735ca6c1d71b9f89e5f906dcf93edd81ab43befb --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16400---18500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e746459265454126306a532b7cdb12558a74953d4e5d69ef21317c5491da9b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16400---25580-in.json b/source/parts/detail/c/custom-paper-ring-16400---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cbcf66d1b1e8ec3cbe7078934bf97efc4ecb38ab --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16400---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05397111119a214e99657e09706d314e36a18a2d379fba9392208a063e1c5e2d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16500---18000-in.json b/source/parts/detail/c/custom-paper-ring-16500---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9aeb730f336616da07700289a1439730335358dc --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16500---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0736d6a2c9b1244938438e91d55027474bfb88651bb98f84cd2f0c788a720cf8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16800---17100-in.json b/source/parts/detail/c/custom-paper-ring-16800---17100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9246f494b93b33ebf954f0a21ad8c57a4fc72723 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16800---17100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b5f380b46932b5c0b700ef06d4358a799a79610336cade127b4980a7a94678 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16850---39960-in.json b/source/parts/detail/c/custom-paper-ring-16850---39960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f43e0bafde4c2fd2966fd71492db8fbf86e6ad05 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16850---39960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24dfe0b5975085da73fd7392914eef40f286f486a92e74c4d09efd22f1e5f1b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-16900---39000-in.json b/source/parts/detail/c/custom-paper-ring-16900---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f801a8703fca33f3e989dc66f934f26b1350e175 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-16900---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5bdef6ea4c5163170fa3fcef413ae7bc9d8d2dd51b4ea703e3de1980d66be7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-17080---27825-in.json b/source/parts/detail/c/custom-paper-ring-17080---27825-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70c5dd6de84ab6882d950a91b78eabc52ffa0999 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-17080---27825-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:265abfab445e01cbc42eddd978721ce7a8f9eba6e2298778f2216c45b5d7b078 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-17500---18000-in.json b/source/parts/detail/c/custom-paper-ring-17500---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1389d39671d2543da1fea251fe36b3a4a13ad4b3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-17500---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c364c6a9ade20b376e82d5a4dbd9af372b309f76b66816b0fba471db3b00985 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-17750---18690-in.json b/source/parts/detail/c/custom-paper-ring-17750---18690-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce31200b6c1addbca3a14c673485be13d0fc8312 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-17750---18690-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e2865eab304a256caea36ec8dbbcde982e8f728283cc1875f573ccb52109c9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-18750---20000-in.json b/source/parts/detail/c/custom-paper-ring-18750---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aba1fbb5a03036cf72c46114ebf8266a2e29820e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-18750---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6af2a91b8b27ab6082b14478859eb217496dbf0dafc5f5501b5d3463b0bb3b4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-19685---20276-in.json b/source/parts/detail/c/custom-paper-ring-19685---20276-in.json new file mode 100644 index 0000000000000000000000000000000000000000..44137d00ae0eb712738437d9aaaaf318298649d4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-19685---20276-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d54a290914df5a1bfb219695a70c56147f6c0253747bbd888d6b7b74c54211c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-20280---21550-in.json b/source/parts/detail/c/custom-paper-ring-20280---21550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..927c26a9d5f15b0ffb23c5cee6585788816bf4f0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-20280---21550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7f0a0d1bb0ae8b5ceb0ed2ce716787a7cee30c46365749a3684ebde7a4bd61 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-20400---21000-in.json b/source/parts/detail/c/custom-paper-ring-20400---21000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e8e3b8f2d5d795db08709e60adb4e39d3ed68f04 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-20400---21000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8007b40dc9ebe7e17b9763558e6c1d3b2fcf4a290deae0b6fbc03c4127907753 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-21250---21330-in.json b/source/parts/detail/c/custom-paper-ring-21250---21330-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ecc5014998eb7ef6113ce18abc464f96057e4c35 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-21250---21330-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066969388b122f308740ef92556239cf5bfd3f91e84a728aad4937d1d5d791b6 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-21250---21400-in.json b/source/parts/detail/c/custom-paper-ring-21250---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b35000192242483f0c4f2b5883edd9a546b4cfe8 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-21250---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af8f7813293a93a193d3e083449fa6aa646f947931281030c115d3c984dc2afe +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-21250---21850-in.json b/source/parts/detail/c/custom-paper-ring-21250---21850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..573ce0c49efda1e9b5bc62e183384ce904d263ec --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-21250---21850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dc9ae8c653dfad556837c9169c5ea8a0739bd804975a112506a077ab368c800 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-21250---21870-in.json b/source/parts/detail/c/custom-paper-ring-21250---21870-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c6c46e71eef1c0d4212a085674999b430c37bf82 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-21250---21870-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af3611e00c9315577524de866589d13454e37210e93a5c60d20f9a270a30af9e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-21400---21800-in.json b/source/parts/detail/c/custom-paper-ring-21400---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..22e123f2ed09ba0b044d6889a8a8745b9a3e1c03 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-21400---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e468b5ce12c83ff594e273b793495195a6749f44058982a5702f7d475f4369d2 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-21414---22500-in.json b/source/parts/detail/c/custom-paper-ring-21414---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20be563ccf16a31484c3c49374b71f44b1b47896 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-21414---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:413377214ddbcc01fea75f357a9df00978b3d0b3271d242d386959787af1f4c7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-22170---29300-in.json b/source/parts/detail/c/custom-paper-ring-22170---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efda9d756ef94caef77e270e271dd1862f7b5869 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-22170---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082fbacf00a9e405f9ca8ac1f3c8a6a3d7fd5bf2adf63830fc223a7fe833b22f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-22280---24750-in.json b/source/parts/detail/c/custom-paper-ring-22280---24750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb04967444e50274a7ace374551bb42220c69be3 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-22280---24750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbfe67d239f06452490646f6b5e2a466ce7b2840f87d33efe03eaa50a6d61e0a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-22470---22770-in.json b/source/parts/detail/c/custom-paper-ring-22470---22770-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e9de36f6d437bb501bd5117834f4dc73643706e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-22470---22770-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f6362ac1b7a974b9e265074d0c1efe502008ccf8ca6554495fb8c2b102fb74 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-22600---23622-in.json b/source/parts/detail/c/custom-paper-ring-22600---23622-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6bc6d11f3d3a391ba3686e5cbf81bbfb2399d61 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-22600---23622-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f18363db08913a60b1b2310743238ca5f0f31a47645fd0505e0fee101dc1307 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-23600---24300-in.json b/source/parts/detail/c/custom-paper-ring-23600---24300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2df4d63ef30365294010d4b3a51c834836c1585f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-23600---24300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fe024ecb2e71beb777db6dfa8ae5e0016bccbf8a6abbad68090c966a40eef7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-23800---24380-in.json b/source/parts/detail/c/custom-paper-ring-23800---24380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab579e6c53452683407c3bfc7f70ab2cd2e92f63 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-23800---24380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa2f5bdb981f26e02eac3cab5507e2aefbc177e61db74356acc10bb6ce3bf23 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-23820---24300-in.json b/source/parts/detail/c/custom-paper-ring-23820---24300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40bef755ce107611fba5b736c9f8087a67766515 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-23820---24300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc898b4bcedf6fee64b3aa54503e48e92a087d1a789ea75abfe4369d9770c23f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-24000---75200-in.json b/source/parts/detail/c/custom-paper-ring-24000---75200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..87e8aeaf42dfc70bf5898f57fee095b523061555 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-24000---75200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb16bd4491737fe89f5c583146d7fe73f38c16303737c21e9729e425e3ecb55 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-24449---24724-in.json b/source/parts/detail/c/custom-paper-ring-24449---24724-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c360ea95a1495e67bed473932d8d6722ff38096 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-24449---24724-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e51d657e85829b91400c0ee5bc2a48e8ac7006f0f641455b4c5b5028c73fb89 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-24470---25600-in.json b/source/parts/detail/c/custom-paper-ring-24470---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ed3685c7f530217ec9aa11e5a8fc1ac5852870f --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-24470---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2648695da8def0b911a9149b6d94bcc6a03daee28c516d2cfe1365e815af376 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-24600---25600-in.json b/source/parts/detail/c/custom-paper-ring-24600---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ef5c8b3e45ef5ffb817f5c7682fca767f610092 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-24600---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab46f5ac985b484f495e61def8a5bb6af60a9ef46391f388d4cecfcd80ce2cb0 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-24700---25880-in.json b/source/parts/detail/c/custom-paper-ring-24700---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..05eec2990bfe0328e9e08fd241ab681ec50f6a7b --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-24700---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ed814b95757eb0c5c51671620d19d3f165e4ad8b746f5516a71c056e7da5cca +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-24800---25880-in.json b/source/parts/detail/c/custom-paper-ring-24800---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..46208f7197ce0695d5f9e5dcb072136f41855f72 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-24800---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3220aaf8185e916cb065d7217b3e6a9f77da73fc5c66f15337cccaa60220c828 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-24900---25600-in.json b/source/parts/detail/c/custom-paper-ring-24900---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e6807352447e86634677ec466655c025f77622c --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-24900---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279aa6b675d50663bca04bcbeab1038eed8702b91ba237ac427ca7c0215e383e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-25000---25550-in.json b/source/parts/detail/c/custom-paper-ring-25000---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9147faf53a058d04aa7feec49ac6201ff19beeb --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-25000---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65f97dfbb2c2f79c3e6a46ecce428397a90792de8068dda4eeef40c622d343f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-25000---25600-in.json b/source/parts/detail/c/custom-paper-ring-25000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..16dbf5f59489338482ca79b183da21d170ef50f0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-25000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184b1752c4aebcd14a555bc23e7eeeb20b89dd61cb1c22ab0b23d050ba5cb41d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-25460---25878-in.json b/source/parts/detail/c/custom-paper-ring-25460---25878-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e80f0769975a9d50bbedee1013f3e24ed9b99b9 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-25460---25878-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb645fd87c163641cbf683dc3a31674c2653fd42e1e3ec73d2064226af77af9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-25460---25880-in.json b/source/parts/detail/c/custom-paper-ring-25460---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ea0a1b68c3c828444a0e1f5d574288a9afdca4e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-25460---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72c7cda64e3ac84dfe4e3988def763628bd8d24858674826119f1235778c619 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-25880---26000-in.json b/source/parts/detail/c/custom-paper-ring-25880---26000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..081f248a37c22d466c590673fdce94a2066158d4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-25880---26000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1040b3f84992ea0f88ff99547839d4b185a6bc144634491fca189c42173f22 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-26000---27000-in.json b/source/parts/detail/c/custom-paper-ring-26000---27000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..454a9297f3865528eade9cb93a93783339e570a1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-26000---27000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d38a2f863d207add3370357f5b8d44925f112121677dfca3ca8d54902699e3 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-26000---39000-in.json b/source/parts/detail/c/custom-paper-ring-26000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ab163c0500f82b5e695868c49aa587cd2a8c964 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-26000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c5ff019e0ca374f7f8d30c4f0b832eb2b431c444edd6c12bfc6e7ee5ef9aeea +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-26100---26600-in.json b/source/parts/detail/c/custom-paper-ring-26100---26600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e82fd1afe5c94d59e79c8fd1662ab3b89d5f4ad2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-26100---26600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4becc11991d257c3bfbd508645420a56d11c0194d2031301a309ee8d80edc25e +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-27760---29000-in.json b/source/parts/detail/c/custom-paper-ring-27760---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b1be9434e2fd99cc37d45c52bf58565aeef9dad --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-27760---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7254421b36b7ab1e5a15fa37fc0d999bbd9913259605e26548c23893459e52c1 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-28900---30000-in.json b/source/parts/detail/c/custom-paper-ring-28900---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e5d50bb02fd00c3d3e5b656ad4f29f44a2a04310 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-28900---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6270aeaf987469d3f05a5a10612efd528cdfc6f66441118e64f3cbb631eef2 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-29000---30000-in.json b/source/parts/detail/c/custom-paper-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58f81423c478256f1a8c0af8a47ab0c7be383b10 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ac1455abd2ca1c30c39661fc2e56208b5372ad4d6323f09f5ed2afa0c50280b +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-30000---30800-in.json b/source/parts/detail/c/custom-paper-ring-30000---30800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c705abf1886f45ffd482f67ac65b83605765fad2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-30000---30800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18bfbd57b22065276788390d589f921a7976f844102f1027601690542fc8651d +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-31000---32000-in.json b/source/parts/detail/c/custom-paper-ring-31000---32000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b04b222d16562c5ed06656ce12f6c2d04231a81 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-31000---32000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f66ef8ba0ad622e2bac7c06660b7c512c892e9e5bac09fce693b627d9e55db94 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-35000---39000-in.json b/source/parts/detail/c/custom-paper-ring-35000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0664e175f6c375e5a5e0a0f89ae313d7cc5437bc --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-35000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc7a4dcb6ccf658488be3d11c34b94b704f7c9b206888c0329acf16d8d5fedae +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-35000---39200-in.json b/source/parts/detail/c/custom-paper-ring-35000---39200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65ed1ecb21ba778b35065f5b6901cc721e72fac1 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-35000---39200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3e8c4b2e9ffb54e1af1bf74d59d60a7cebe18afcc3c337bfed645a2baab58f +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-36000---39000-in.json b/source/parts/detail/c/custom-paper-ring-36000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0051b0f9ea8bf52c1c579076a138acf35ade24cc --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-36000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2dd50c1e98149889ba638e5848627d4b933eb79830a82e692c6599ea7ac9ca +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-36250---36550-in.json b/source/parts/detail/c/custom-paper-ring-36250---36550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a23f0ad885b9f96784411ce8cfd8097614a75a47 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-36250---36550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e28c6b1448f5f4b95e3e229e1481a5e7c7c964e6ae653e54a7baadc40883ac4 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-36300---38700-in.json b/source/parts/detail/c/custom-paper-ring-36300---38700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1eac9461565677c444af488fe96ba5f5eded0d7 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-36300---38700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad219cc222d54f47c3e48e4e6268df8a8b5af63296c6af59ca321086008f203 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-36500---39000-in.json b/source/parts/detail/c/custom-paper-ring-36500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a388fb1038b664012a7cb38ca3dcb058d8585d28 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-36500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b657ee81cb7d0b62b702d90eea0aec9b5f00494b871b091691c685459b7db9 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-37760---38760-in.json b/source/parts/detail/c/custom-paper-ring-37760---38760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac67818ac45fb6aab52347fe9254685cd23164a0 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-37760---38760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026ae8aa24624b739201a149fd7b97ce3e52c37e18011ded81b5ce62a571af71 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-37780---39000-in.json b/source/parts/detail/c/custom-paper-ring-37780---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d5bc955cc1069f30af94365c9d2aa815a6715e65 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-37780---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7092b08a915f5b3517b41543c9796e611b5f0c199579add979cf0d1a0450b6 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-38750---39800-in.json b/source/parts/detail/c/custom-paper-ring-38750---39800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..486a10f3b0cb1e2212a7854813c24fa027210a90 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-38750---39800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a24e7c7d1caa78b8f94f5917f4780529876775e8c2ed593a7358a918cfb91a +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-38800---39000-in.json b/source/parts/detail/c/custom-paper-ring-38800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..330cf168ee23342ea989279b0340e46bfd4f9697 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-38800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69392c1092d391359ad9ab26a13bcc40589e6c46cb6599a3a7a857c5de5f91e7 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-39000---21400-in.json b/source/parts/detail/c/custom-paper-ring-39000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..acf4f0151c3d18b460efdf1ca20d5c40d46099ac --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-39000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6f5705697976fbba2c9b3f8c9247473775f57e70c51119e5323b056c272247 +size 417 diff --git a/source/parts/detail/c/custom-paper-ring-39380---39800-in.json b/source/parts/detail/c/custom-paper-ring-39380---39800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e7d894ee0358b14b5bd7f00a754babe5702ff4fd --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-39380---39800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272bc8386fe1e051e6bff2f263ceeef378c5b404870c5c397ca90803c4146492 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-39400---40000-in.json b/source/parts/detail/c/custom-paper-ring-39400---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b3400ee186b96291ab858b52b13d88da3ca29863 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-39400---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c24f514f47f6526eac3b29464bb48d361ee5f39c6b8475ccfb6884925c02572 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-40000---40120-in.json b/source/parts/detail/c/custom-paper-ring-40000---40120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29d87df60595ed5272cf0b92f5f9d74b2e186f87 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-40000---40120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef9cdc229c72a8c7331b0260f3aac41c256ef08480f3bdd3d322fc4235bb65f5 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-50000---53800-in.json b/source/parts/detail/c/custom-paper-ring-50000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5dca260c6624ce1aa90d12a295102a12dd216138 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-50000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f35e83d6b3c3a6b8bcac6cad03673d18b7f63c0c06256cdc86f9beb58b3621 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-50000---58800-in.json b/source/parts/detail/c/custom-paper-ring-50000---58800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67456d2d12fd9ce1f303fc84e563da285ae916a2 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-50000---58800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676cbf0941ea91f1942524c67f7ac2ad53bd18c9624a1ca93548478a4a63efce +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-51700---53800-in.json b/source/parts/detail/c/custom-paper-ring-51700---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eedf13e2d6936d8d072fb59ea5d0d276647f30f5 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-51700---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d89d1ce0b0753cc85b07630efbaef6c474208b83fbef0bd51efa5a20136cfe +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-52000---53800-in.json b/source/parts/detail/c/custom-paper-ring-52000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..397a410b0eea0bb9cced97cb3d0a17a03ecd7fbf --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-52000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f762f0a852b199e6493d6d02ac51e82ec293a232823a62d3bc20beb151272d6c +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-52200---53800-in.json b/source/parts/detail/c/custom-paper-ring-52200---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab0dfbe013a6237c8998e47778f667a22dd66350 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-52200---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736dcbd5464da81205e563e51344207ff55d4fcdcd898bcaa08cad7003d0c240 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-52500---53800-in.json b/source/parts/detail/c/custom-paper-ring-52500---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b22ae083172c764edc667635478984e97be8ca4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-52500---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f777ab6013e83850fee7f21c1951325100c0509bbb65b0d2952a01408b4626ba +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-53000---53800-in.json b/source/parts/detail/c/custom-paper-ring-53000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4cc908a454da34033162664982e13137fb651dc4 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-53000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a593534e7ff3f75c00eda80e4046a7f3bf478060fa487d994ad10e9c660038cb +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-65000---65090-in.json b/source/parts/detail/c/custom-paper-ring-65000---65090-in.json new file mode 100644 index 0000000000000000000000000000000000000000..076aa215ce52ef6da04b9a022a5cd3c40666cc44 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-65000---65090-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e9a2e6ab6afd990e10b48fc42a0b4a8d2d0bcd4f6003cb9eda9279880edda8 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-74220---76740-in.json b/source/parts/detail/c/custom-paper-ring-74220---76740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d63319e5dae6525c2a7301c5901e2dba7aa4f93e --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-74220---76740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59255406aa7ee8c83a420b3c26a29ed4fec2ed19cda85d42bc3a90706527285 +size 416 diff --git a/source/parts/detail/c/custom-paper-ring-76000---75150-in.json b/source/parts/detail/c/custom-paper-ring-76000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f95506b26b28f5cfa0b118781a2d9809c1f27c77 --- /dev/null +++ b/source/parts/detail/c/custom-paper-ring-76000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370c93f787f33e46d61db766930044df1629dc1adcc4b7fd4fa96f58ca826c1d +size 417 diff --git a/source/parts/detail/c/custom-paper-streamer-00001-in.json b/source/parts/detail/c/custom-paper-streamer-00001-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11a5727fa762dce1f47ad09171384853decc199a --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00001-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2df0c0dcdda33e6644f65fa258fbc50299a7c952a5897a27ce99b6998c6b3d +size 370 diff --git a/source/parts/detail/c/custom-paper-streamer-00004-in.json b/source/parts/detail/c/custom-paper-streamer-00004-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6151723d291cfebb8a51274042e15d34c69244eb --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00004-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf90d947aa65819b520ff889d73fc8854fdce14b7690698445c4b2af31a25c7 +size 370 diff --git a/source/parts/detail/c/custom-paper-streamer-00005-in.json b/source/parts/detail/c/custom-paper-streamer-00005-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26a1aa79edebba0ec98292af6b7fe2b2bab92e6d --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00005-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cff07a822f0fde559d3ce2b8b101abdbda94586e71dfa957505ceec9d1a920d +size 370 diff --git a/source/parts/detail/c/custom-paper-streamer-00010-in.json b/source/parts/detail/c/custom-paper-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb6f1454c58d471805d4755b03952bee7c14f2eb --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b30680c04c28797c2f8ca61b83f78690caac012aea661e356a998aba3abb3fe0 +size 370 diff --git a/source/parts/detail/c/custom-paper-streamer-00012-in.json b/source/parts/detail/c/custom-paper-streamer-00012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b401350af8b657617423f22ca9a2c88d8381f74c --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cbe1f44759e82f5f38389ca3072fd609b13b6dab891c9f2ab43a350a88a40ed +size 370 diff --git a/source/parts/detail/c/custom-paper-streamer-00020-in.json b/source/parts/detail/c/custom-paper-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f03554ac7fa0b5d1c9b6d2af931177b7d2851dc7 --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d460dca585efc969b816d41e29a88ef79d7ac8083dab5e916f68d8482eebe37d +size 370 diff --git a/source/parts/detail/c/custom-paper-streamer-00040-in.json b/source/parts/detail/c/custom-paper-streamer-00040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a0bd10867e234a044a137c06f6a2c5a4ccd8ec6 --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d6c3c234b6136a37cf05bb2ee7ae439a22a869cd740756a047783f5a8d58647 +size 370 diff --git a/source/parts/detail/c/custom-paper-streamer-00100-in.json b/source/parts/detail/c/custom-paper-streamer-00100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ba4f61aec9f7d62e19312be28c1c9ae09240f05 --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:934392d9d22b7b12f39c9f929435d19f3315a7997d5a92009537d3ff88325cc2 +size 370 diff --git a/source/parts/detail/c/custom-paper-streamer-00150-in.json b/source/parts/detail/c/custom-paper-streamer-00150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a154708edc35f1581fee18165036196b5b141bb8 --- /dev/null +++ b/source/parts/detail/c/custom-paper-streamer-00150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34894c4a692b94f363a5602c1842175de65af0d83b6f1f4d572b999dc8f9bfd +size 370 diff --git a/source/parts/detail/c/custom-paper2-ring-00000---07100-in.json b/source/parts/detail/c/custom-paper2-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36a085463c8014ab381ffbd41587d922a6da68b8 --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d310abd8931491add8544d0dd16daefc1ef4f7bb02373a77eaae83e4f173b30d +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-00000---09500-in.json b/source/parts/detail/c/custom-paper2-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d1459d9db31312a913b08cb7f9d261d740e0878 --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57d7a7e3938d1ac0be7aebd0efbb784e2ca2a55fba703b027cf2ceeb8a8e849 +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-00000---11450-in.json b/source/parts/detail/c/custom-paper2-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a49f98c0f44dd5a5b9979cde6abd6ac22c614f7b --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287ac98ebb4ab1c0c1ef3c5ff91d9c6022c677ae76f9dcef08e5b921ad7390db +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-00000---12830-in.json b/source/parts/detail/c/custom-paper2-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae8d36936fb30696f10cdb62a677b5743babd50d --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c9d716ddfbfe47dbfd67d7dbedcf9cd68e765cdd2795176a2ff2ca84494d6e +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-07000---09500-in.json b/source/parts/detail/c/custom-paper2-ring-07000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..44304c1eaed4c2bf01a9ae1f79d9e62c4297b7ca --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-07000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134f26adafc58910b33d95f30e9c6e7e9bb3db989b7e3675683ae32aeb344af3 +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-07000---11417-in.json b/source/parts/detail/c/custom-paper2-ring-07000---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3018a7b0c424328bc1ab4d5c2f073c529e668e93 --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-07000---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc7061d7a3b996dd60ad5df1708b4154be3cab39a8f06ea3ddb61a16bafa5f22 +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-07360---09500-in.json b/source/parts/detail/c/custom-paper2-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..678d6baf364900828def7d328c63b942ee562701 --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f228f108739de939f73cb52cc999d51a358ae6be71e30f8c1b5b9294db064a +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-07400---20000-in.json b/source/parts/detail/c/custom-paper2-ring-07400---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a8a4210db82148fcbb359b1fc9bc67274a6fc1a --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-07400---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65887c1ec4375bffcbe4077e52cbede8587ebf23e6e7b88e4d10e526b722346e +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-09760---15950-in.json b/source/parts/detail/c/custom-paper2-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ce220f08968118c1a373ea976b13afec035d7ea --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7a0a50b9216e7da44a6bb83a6d2d8586bbca0f9b6c375fd02a2282ba2851c6 +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-09800---38960-in.json b/source/parts/detail/c/custom-paper2-ring-09800---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fed2b763d47d63121d65e6d7ae0255d4f41d9699 --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-09800---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e4515b1c0c85196cd4d921151a22feb194af87a94571fc49fa7d2c76f0baac +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-12000---39000-in.json b/source/parts/detail/c/custom-paper2-ring-12000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..087531d87492d82392ed734ea5967854882c6a26 --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-12000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775cd839cb780935080f6810ecf996cb8fc39e497f37724e442d28c126ec064e +size 419 diff --git a/source/parts/detail/c/custom-paper2-ring-22600---35000-in.json b/source/parts/detail/c/custom-paper2-ring-22600---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67830ec2551c5fa9ea887f7cd6caf6aad7c9d646 --- /dev/null +++ b/source/parts/detail/c/custom-paper2-ring-22600---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a88682f4708d225242320642b7ea5de05ee8d46e1734cce4a96a9966d28442 +size 419 diff --git a/source/parts/detail/c/custom-parabolic-transition.json b/source/parts/detail/c/custom-parabolic-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..d8b46b8c09644fb523967815c5e90cf340394839 --- /dev/null +++ b/source/parts/detail/c/custom-parabolic-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:decb1543e3d37c5f15c395f3544107f7771e10c8057f78837a6afe7f68938f13 +size 586 diff --git a/source/parts/detail/c/custom-parabolicseries-transition.json b/source/parts/detail/c/custom-parabolicseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..c946d19a5f92daf14e3c601f0a224f55bc861728 --- /dev/null +++ b/source/parts/detail/c/custom-parabolicseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464165cf389d9ac95baa8b80def2a2c4204e9a74d532eef835e869748c232513 +size 612 diff --git a/source/parts/detail/c/custom-petg-ring-00650---15900-in.json b/source/parts/detail/c/custom-petg-ring-00650---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49366f1fb1ef04ec92157f89920f490a590290eb --- /dev/null +++ b/source/parts/detail/c/custom-petg-ring-00650---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b136e806f7f864a886bff653dce8f4f46f9e9699c878fef8a7680e1cee34bde +size 413 diff --git a/source/parts/detail/c/custom-petg-ring-09800---15900-in.json b/source/parts/detail/c/custom-petg-ring-09800---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0edf17cc36146c4c7d666919c76577311cba334b --- /dev/null +++ b/source/parts/detail/c/custom-petg-ring-09800---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b83073f9cfb497d9c36f4c76a55419ba5a9ffae6e3cefabe8e6e3c48a0ed2e +size 413 diff --git a/source/parts/detail/c/custom-petg-ring-14650---15900-in.json b/source/parts/detail/c/custom-petg-ring-14650---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a02ea49793ec7d2148c195bb90c2e659f6f92d52 --- /dev/null +++ b/source/parts/detail/c/custom-petg-ring-14650---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb443736d1589586ca9a338726c240e9d6a46a204e4a865919ffd1c26acf6326 +size 413 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-00000---15950-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab1635c3f1ca7af72a45ffb13a71f5c0a526404d --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0558430c330c377c24888534850d9a8e1ffcf6945bbbaedd4c6c4c280df0771a +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-00000---39000-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d53a07dfb82ee7e7814251b4bd2b6129eb026433 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f058ef3fdca5ec1d0bc183384c7470f2226e0d617608c616170844d75963940 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-00000---75120-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-00000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..71c47526d4766650ff9e10787db9f56682806b97 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-00000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7017477dca2be67f6429dccc447664f54354f9de7c1381d52e75c05219a4df1d +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-10000---25000-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-10000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..87d17c7a9fde1e9a066db14a3267b2f6560858d1 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-10000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d4ce640e8a9289534e9769ece877e03e1059a19339f0fa0b5d095983ef141e8 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-11811---15950-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-11811---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f5c4574d9d3483d528bcf9e35ed70e9b1c0bcc57 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-11811---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40cc35f74dbaffbf9f5048d02b6f9b319675a9fd18471a35da97d0102e6beb62 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-12098---21402-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-12098---21402-in.json new file mode 100644 index 0000000000000000000000000000000000000000..69e04f0dd6494a474402e109853da51649e91028 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-12098---21402-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67370d6ca17b81643248f3b1644b1da244bcfc3977b8294eed6708701ac17cf2 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-12100---25000-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-12100---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2bb6ee1863493d9e734f86795b507fba52fabdbb --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-12100---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f3c6d6e7fa0c432860f5039763fd41ac3a196ac8b57c0cf0937225d9e883f5 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-12690---25880-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-12690---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2d3ed0037ac35c68fcb77ffbcf76d7a9f3e432b --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-12690---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a02741f540327e3b91bb182886de592c2abc127545dbefb72d4220aaed08f230 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-16350---30000-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-16350---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be058aeee08a9824e042ec3809d089abf7aa69b8 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-16350---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d26c753efbb7421f0c32680a82189be8a24a2c7d4d3a0605079cc808a21a346 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-21600---39000-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48581e0645bdda5172529dcfb0f209dd59ed2892 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22c0989262ac7973dc2e8524ed64209862ca078397ffaab35329acad2645967 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-northern-ring-40000---75120-in.json b/source/parts/detail/c/custom-pine-white-northern-ring-40000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3db6b04912edac8600266cc21a6d79affa9cc482 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-northern-ring-40000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73acfbcdc9f8d2939e6340a71985babe6ff32812f655cf18881e8e946939e133 +size 460 diff --git a/source/parts/detail/c/custom-pine-white-western-ring-00000---07500-in.json b/source/parts/detail/c/custom-pine-white-western-ring-00000---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e47a8471b7a3c9167d1eccd655dab124141450d --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-western-ring-00000---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f464188ed539169fe98df0eed51019501b48ecc363c66ed6838aaf53c81768ae +size 457 diff --git a/source/parts/detail/c/custom-pine-white-western-ring-07360---25880-in.json b/source/parts/detail/c/custom-pine-white-western-ring-07360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..995aa0e580aa76a52eed58e3784310391ba29ead --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-western-ring-07360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36b1fa7ef2050bb636905b6b23337c72b14cde4f14da76b626a371a29c30880 +size 457 diff --git a/source/parts/detail/c/custom-pine-white-western-ring-16350---30000-in.json b/source/parts/detail/c/custom-pine-white-western-ring-16350---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7dffd16382daeab287e26f7a1af352ee498c0c84 --- /dev/null +++ b/source/parts/detail/c/custom-pine-white-western-ring-16350---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cffe47245ed2faf1c0f2e88a2bc64727ab973c1b9a32d309b4a1fb1a117d8d9 +size 457 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-00000---13750-in.json b/source/parts/detail/c/custom-plywood-birch-ring-00000---13750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c80ab9b726d22e221da5f5b486609b5415a582d --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-00000---13750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f83052b25f48ceb98045b041f28be474eb182c427d84807a6fa1692676a40ff +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-00000---30000-in.json b/source/parts/detail/c/custom-plywood-birch-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea2c89627110e3d3d2a476241d4bcd8f4d2eda2f --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49faafd99b7e50398a4952bb820aee05deab7a7f8d1b1b800b04dbc4726d7cb0 +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-00000---38670-in.json b/source/parts/detail/c/custom-plywood-birch-ring-00000---38670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0fa06704e321eed0a32dfa90a03e8bee85e745fc --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-00000---38670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b96d99f845b12026d6ce24b9fcfaa82c5cd03e18d8073e7891c9804d306efa +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-00000---39103-in.json b/source/parts/detail/c/custom-plywood-birch-ring-00000---39103-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c32cdde039973b54de1a555f0699cbd1ec4b6fd --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-00000---39103-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d93e4d8f5c9e36b3e6dfa4aef7ac716f29fde30bf44bf30f9fdf8973838ecc +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-10000---18004-in.json b/source/parts/detail/c/custom-plywood-birch-ring-10000---18004-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9fe48ac6ff049d8af3ce171001d957610fc527a9 --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-10000---18004-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d2bdf3bf134bd76e9bdba1d689565f831d5063c630a96b4305031a66c2256db +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-12080---24300-in.json b/source/parts/detail/c/custom-plywood-birch-ring-12080---24300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66f045db0cdc88aa81ab1c3bb9f744cc1d510b06 --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-12080---24300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1b2b6927bffb71ba04029c146b925011aa9f77ffb417a5f3b91365819e80eb1 +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-12600---21600-in.json b/source/parts/detail/c/custom-plywood-birch-ring-12600---21600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..064e3d9c0f23726286858ed13d55e10592c88416 --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-12600---21600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f629977b4f9ef30b923e4f7a6065a33be4914a71bab49f73ca64794ec6b57d +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-16350---38053-in.json b/source/parts/detail/c/custom-plywood-birch-ring-16350---38053-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90274ca30be75f56e1bc5e714f8a43cc0baad0bd --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-16350---38053-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a612e0a2958c1b14bb453ef7480ccb31102a4be020ddae5c3b20be7db71d23a +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-21260---30020-in.json b/source/parts/detail/c/custom-plywood-birch-ring-21260---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6d05f7bb3e7f0ccec341db48193e2790390e3e33 --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-21260---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5b8701715db001c558fc26d52acea5cdd554c3358846d64a58a2ae0838f98e +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-40200---58270-in.json b/source/parts/detail/c/custom-plywood-birch-ring-40200---58270-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9ec47c5c616d4e53ed5375a900595e5210e98a04 --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-40200---58270-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9369975eb7486bb38f0d49802507ed6b7061a5874e0dabdd6164ef681318131 +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-40200---60000-in.json b/source/parts/detail/c/custom-plywood-birch-ring-40200---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3f0e304bf20d4f432c469a1727c4db3b360f36c --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-40200---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949b7a14a18ebb100d01d473562798d6f0265b1f7b9ccd9d34a6b3432490b2f2 +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-40200---60100-in.json b/source/parts/detail/c/custom-plywood-birch-ring-40200---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c9778531f56308d9877816a42fd2e45863f76cf8 --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-40200---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303340994cab3aef2cafe0aa6dfcf5a708f2fcb43745cdc1046fde3517c4de63 +size 442 diff --git a/source/parts/detail/c/custom-plywood-birch-ring-40240---60000-in.json b/source/parts/detail/c/custom-plywood-birch-ring-40240---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..704454bd758848afe00aa4531f3789b9ccf79ddb --- /dev/null +++ b/source/parts/detail/c/custom-plywood-birch-ring-40240---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a80b3549f49eb0805e45615e5e19f772cb02bb271c66641730c75e04d90885ec +size 442 diff --git a/source/parts/detail/c/custom-plywood-ring-09831---15882-in.json b/source/parts/detail/c/custom-plywood-ring-09831---15882-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b559ccd775a0e39ac4b99d3e728d020a07b70eb --- /dev/null +++ b/source/parts/detail/c/custom-plywood-ring-09831---15882-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91ee3878141c7a42bed1b304622bbf30f23dbce13904490e981b153c8dce19c3 +size 422 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-00000---23750-in.json b/source/parts/detail/c/custom-polycarbonate-ring-00000---23750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89d608539d632ab651c81e0627f974495ca7fb51 --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-00000---23750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded1e8aec704ce7765a93882f0ec59afe396d1ee5a839676339e3f77b4fc6146 +size 440 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-09843---10433-in.json b/source/parts/detail/c/custom-polycarbonate-ring-09843---10433-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a842f1906e65aae81f11117f333469095a98f061 --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-09843---10433-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3fef7b9c0a7674e728a53170aeeb4b29fb1b98bdcaa47d6d34c4a5f9183c5c +size 440 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-09843---32283-in.json b/source/parts/detail/c/custom-polycarbonate-ring-09843---32283-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d04cf4e0a6ecc85cd0db3e0800bb8b7df2b9cd9 --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-09843---32283-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b370d23baf80871c7d68875119b7f3b0ba367983ab1b4e867ce8950888d087fc +size 440 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-11811---39000-in.json b/source/parts/detail/c/custom-polycarbonate-ring-11811---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b30a9dcf5bb7f4959f7120cf7e0e8496b46a4aa --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-11811---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a93dd4c6bcafef213c13eaa1c0a79f48ab3cced45ed35128b5975ddf89ea0b +size 440 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-11900---17500-in.json b/source/parts/detail/c/custom-polycarbonate-ring-11900---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aaedb0623cf803cb4bd29bb85b5790d533f89d1c --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-11900---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d4934ac2524d9939a011ed898c91c584718f15c9bada954577e9971f36a78de +size 440 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-12100---39000-in.json b/source/parts/detail/c/custom-polycarbonate-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57bcc32946e28c973b3d788b3d7a9cf3f26559 --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a690f004d549c1001c069ef5d8bccecd3778070ff170c05aee3485d724af5703 +size 440 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-12500---29000-in.json b/source/parts/detail/c/custom-polycarbonate-ring-12500---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20b4ad6e547057adc13b01c8f926fd24bc8536cd --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-12500---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e706dd91a1ea841ab6134368d530a9cfc137a686def0d8c1243a84c9151488 +size 440 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-13250---14500-in.json b/source/parts/detail/c/custom-polycarbonate-ring-13250---14500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a31188a2453615db052d94b387030ef805fd2ab3 --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-13250---14500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33f104790532c1f10ca10304db474cdb9bc69a8f522e79590c30e0d44efd52b8 +size 440 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-26378---26811-in.json b/source/parts/detail/c/custom-polycarbonate-ring-26378---26811-in.json new file mode 100644 index 0000000000000000000000000000000000000000..746a8a84739fca1f65d950c37ceca1a372e93abf --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-26378---26811-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ec61f738f33ee89f62c91630c0bd013b1fc6aee0491812753ebb3024b5b16e +size 465 diff --git a/source/parts/detail/c/custom-polycarbonate-ring-55400---56000-in.json b/source/parts/detail/c/custom-polycarbonate-ring-55400---56000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b0e4de9634832b279621db6845893d06a6d4a64 --- /dev/null +++ b/source/parts/detail/c/custom-polycarbonate-ring-55400---56000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92656fcecf773cd1dd351a23762eaab055329c776d99c23abd9ac0ffcb7ddd39 +size 440 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-ring-10000---12000-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-ring-10000---12000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54ad10e3025a7ce5d71d4699003d4f415e236fd9 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-ring-10000---12000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ead49087f23603fe440a09625f85f13b157d26b52332ce29c020b3c5f5271d0 +size 440 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-ring-12300---12750-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-ring-12300---12750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7da3f3d441f9c1bcdb1e7f62c7c0887407835372 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-ring-12300---12750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5948f2da0ab0ab54d38dd3c140636257e4ac1f4cef98b31946e96fec3d4aed5d +size 452 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-ring-12300---12800-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-ring-12300---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5cfb71d71a5294cde9311d1c35efb91831d44650 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-ring-12300---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14caf2366699feef20ecc6865ff5e5efd2b9a71b29fcd9cdd1fd2997cb91011 +size 452 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00001-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00001-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59aff03ef2415fcfb039b2642f8321ec680bfb7d --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00001-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:350cff3445209d54ebc85a9af30a54f3810baa09f81bd8a0d9d0cf881e94a3d9 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00005-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00005-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6fefe73a5ae09a383317d8d79ec2b597e9d0ea04 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00005-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def66ff8e51fc8b2b3f77484cd4a5bfd7e4816e0ded2f31421ae39ac566b80ef +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00007-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00007-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2541260af0f00b5ce93d63234075a2bde78dda8 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00007-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396264c07cba3561f018fecf5996762de6a05ef366aa3776ad054783af7690e0 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00010-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4df53c57bb46fd55eac30d9ddffd21f0ba726d90 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533564efe63bf2857c4465acfbb469d72f02c233c14a28413758e47864c825cf +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00011-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00011-in.json new file mode 100644 index 0000000000000000000000000000000000000000..793d61ee524322fe1e6ad1def6e75fa9ba079a87 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00011-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6917377d8bde5c118d0c75f83b2ee17190c2ced250c26f501463c5efc9914e5d +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00012-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b87e990b7de031946d1e334de89d9cfffb06a12 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2619d7bfc205f53965265f7f445494793ae0211a4c4524c557af4c0558f24d +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00015-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00015-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f4842716b25e7c60d59af58d0c3948382dc486c4 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00015-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a06385e8513b447f14afa17e1a7d9e2090617e1346ca7740a2ef64cbdde0b2 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00020-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..deebbb9c69f44d54e7fd0eea2a61a96f19af29c1 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98e07c9c2227ade4a2331eaf404a4211c7849fc5765828650c908f22f9c9540 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00024-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00024-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58fb77442452f28c342bb2061eb6dba66e5105e9 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00024-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2ced3124a18f16dea609943032e8c3b97791b9407a9c2a187a83dc575326a3 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00030-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e28a8e38328cac07baafc7423170da9763e0ba66 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e41b7ffae9164139fc41bd39b447cf882cb556c2f4da860b194682487c64dec5 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00043-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00043-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bfbb5bdca175723e67f5a0c5ea848c1d4e2cdfce --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00043-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949bde64fd3e89b3e874f93d93bade4c5400782454cb6478a037ac3bca82d534 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00045-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00045-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ddf8aadfd4e7068d77ff31ef412a322ddeabc57 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00045-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00b9454940089eb32725789423596889436e11538bd34ae67eb20aecf649db79 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00050-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..114d91d295f502565b5dab7a656230cba2bc14d6 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4b0cf02ef28c79ff1bf1e8ed05e0d5e046f29a5dffb3cdc13b1c4c18e01406 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00060-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00060-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d21ee9650285eb918682974a7bf624fc4a3ccbbf --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00060-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c7b4d18f8b5bc258751e5e37d62f8339c304c175bb7364b3d8aa7c3840b6bb +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00067-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00067-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3fc39f11e0817b90716cbc22ef24594e91952795 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00067-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ba43d8bb4f5e332eef31e1986a33a9c1844b51f4c2789272e19e383ef6aa09 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00100-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b5d33a6783c069fbe17c8f4df43c3805784ff8f --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:397bd102d1b5fe0d353b5c3564fabfe6aaea0a8d600888d314e974cd3b4ec954 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00118-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00118-in.json new file mode 100644 index 0000000000000000000000000000000000000000..19a5e4131992144607d48c35b856f6b4c3027ee7 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00118-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e31a1dcbb96bde445e913b3bddb739377b09f27586cc58535fc84401f4335f9 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00150-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9ecf6c7bb5a425e46a95980609fadf4d218ef5ba --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0ab2923d3a7a294364e467a9f727580a2386eecdf063bbd2a0e730ac1a75dc +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00200-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b0346d9197f1ce26aad21748cce4af56c9841f14 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b024dba9914bc9bf550bbbf3c6d62c2dce3bd28a689997800d759995b83893 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00250-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca696c1c33660926a6ffe6bda36d08af7a7bcc51 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:354c560d79fb1c536c82de0ab8f2bdbfc90e2eca7a0789670e4cb92660956af9 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00300-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8b56b61789b9ed6b6a87f1c791a9ba3486247d7 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be96a1490c48c17049b68b0b3c1ec6f47856d03d4d71a964dd1134d8aa1df743 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00600-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1facc60fe4bb9d5ca718ebe5b2526078d04708ad --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b8793942dd7f0974af8f90bcbe86bb8211b84f53f70a903464470f86fa9c61 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00800-in.json b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5aad751d110035107db9b7226676f8c6b1fb4b8a --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ldpe-streamer-00800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0019a6adb2bd28b5598db26244685b633eca74e759bf2e02ee2aa5f4a7c2b54 +size 418 diff --git a/source/parts/detail/c/custom-polyethylene-ring-00000---87500-in.json b/source/parts/detail/c/custom-polyethylene-ring-00000---87500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a95a4b7c5421dc14f33c7483d99955f202bb9ce --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ring-00000---87500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8c9f0a85bf23004f3739012b406f5280a695c2f603d7dc80c345fae545b7bdd +size 437 diff --git a/source/parts/detail/c/custom-polyethylene-ring-30000---65000-in.json b/source/parts/detail/c/custom-polyethylene-ring-30000---65000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6755147c8d28dc37e800e8d0016c31cf22710028 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ring-30000---65000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709672b7a922608516b0cc4c1a9bcfeb753aa631f3b84c9233c52fb2b0de6309 +size 437 diff --git a/source/parts/detail/c/custom-polyethylene-ring-40240---87500-in.json b/source/parts/detail/c/custom-polyethylene-ring-40240---87500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a14e95b5504c593987425157af79751ea4775aa1 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ring-40240---87500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9ffede952639d40e7a2b29f3c5aa7bf972b3347b00dab0aaf1c5570ab87e5c0 +size 437 diff --git a/source/parts/detail/c/custom-polyethylene-ring-41250---87500-in.json b/source/parts/detail/c/custom-polyethylene-ring-41250---87500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5fe7797768493f4ac551054ff00ee692e2a07074 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ring-41250---87500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6fe3b4c6955bcdf7f862ff97103ec4f8b4e005d22c9d88b55ddca7981482bb1 +size 437 diff --git a/source/parts/detail/c/custom-polyethylene-ring-60000---87500-in.json b/source/parts/detail/c/custom-polyethylene-ring-60000---87500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..98258d8b2567b63e0c7a99c773058a8ca004182a --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ring-60000---87500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db83b3c80ef5ba390c610a2e8bc494333e82e0e1552c981ffc3d0330d8f4ee25 +size 437 diff --git a/source/parts/detail/c/custom-polyethylene-ring-65000---70000-in.json b/source/parts/detail/c/custom-polyethylene-ring-65000---70000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eba033975127b2483ec32a83667a87f1c002e1c2 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ring-65000---70000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e7749b4ec5ebdf287bc925dc969d1571a8ff88f7d785fc28e30d95e6ddf23da +size 437 diff --git a/source/parts/detail/c/custom-polyethylene-ring-82500---87500-in.json b/source/parts/detail/c/custom-polyethylene-ring-82500---87500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f87f226ce78ae5409e0b6228c5ea7c630824122 --- /dev/null +++ b/source/parts/detail/c/custom-polyethylene-ring-82500---87500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c5128b61782039ae9deba711ee41e24e70cbbe794b3b33218e7b6d9cba13f2 +size 437 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---00000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a1bef864a3b9ea4a6061bd5179eac154459c361 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f1ded1f05437d9a6257f11cba72b5cf7145014e61d2db60cc9fb4d86d5a99a1 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---01875-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---01875-in.json new file mode 100644 index 0000000000000000000000000000000000000000..43f8a544cd421ad3e48012636c21987a3e918268 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---01875-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:928f272334294c5e39f4a22580f158ac6c54d86bcdcbc8b4a29820bcc50006e4 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---05800-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---05800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2aee9df47431c16e5cefb7e2882fa4160268dd0e --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---05800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc61d60239a8da8329fc0bad0adaecf31e2a179883c9d5042dfb49c24bcd65e5 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---07100-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..169a643f36ad99109edb292bc28efa98f0f6b5d3 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27bf61e27d3b8aa9f1a48cf7caadd62ad7b1f7530db8adee6e4df6870385f731 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---07380-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---07380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..02804888b9cbea292944c4d7cf5533f7866c6d75 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---07380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12168cd3c8a14dfe7bf2ecad15e20a6b9176ba88d1d2af279fa26e08c7618707 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---09400-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---09400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..97041110c87ea2a0c0650541e8a1b77f0854f41a --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---09400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2b5952bd392bc6d31d4e327125e86027cbe548540c4f20936bb6fe92c696d96 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..68eb83648f0857e322eff1609f5383c9532e3e2c --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e857c203c95adaf327e7bd92acf3f5b941af2c3516c7d97a7d9f066d55add1 +size 448 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---11420-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---11420-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2c2e9f216a58b3e21588c470fd07c864a03b81b1 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---11420-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd0bb1837fe2a7f9344881da17b1744c5428fb983eb6e8144d5044e2056a1a8 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---12820-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---12820-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ded71fb18efcda989bedcb62947ecfdb603ad086 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---12820-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1df8d0986ffa48159a6cd25a199c66eb807131b60a5f012e507f07a8652c994 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---12830-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..deb092026ad4e023b693f45f5bf83f552cd5502b --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537fe1cbd4bb0eb4d3df15e5a873ad7999fe47732a1a911b02b26c74367b0a86 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---14020-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---14020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dec61bed4580c8081458159b6412dfa20f944384 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---14020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5f756cde3c3820fd304f60d766bcf6e5241528d0abf4d3e1047b9d4a47ae2e +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---17400-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---17400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aba7524ee283ffbb5e3e74a312b50dbf2651c5c4 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---17400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017a5188346f5c098a8d8dba4c405d253fdb8b090234729cc5a365c945452f5d +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---25880-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f52870e7e48b34c14b6d3789629d528b25471746 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee78b79ae4b418ce2f4deae0f417715fd0e00a0471e9d2f68f6f5a53fae2d4cd +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-00000---40000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..63c7b63a01fa2149387f41cf1320da9d8e30dc77 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-00000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e1965eeea4affa615b1f9855ad5dc659a0326b0196df303fca79316bdcceba +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-03382---06437-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-03382---06437-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01340d5267d63cf16325035517fb0c91584c6a03 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-03382---06437-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad9a439d44659c94a2fe775a503ce564340a018dfd015b9a053508728323be1 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-03740---16339-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-03740---16339-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11a13c0f440b9cf0ac5626ca147b5fe52e9c700e --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-03740---16339-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77028534f925d373fddae5072435b1666129a1c9249c4e47caf1ac6733d7539c +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-04460---07100-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-04460---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0fc1954a6fcea939a8de3e1a4530749d408f57c7 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-04460---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05390ff1471c9ceee83278ba18bd0d2fa831ab152fdecd5dbcb6fc0e74081b74 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-05400---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-05400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad1b67b58370ab6f40fecb041256a943bb2c511e --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-05400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ebba99c028f67753d5eee5935451f499d6f6e85eae10e167067cad3f157da09 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-05400---09800-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-05400---09800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d1584d7333a4f94e557e800ed720fc7cf6c3b53d --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-05400---09800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a38eb85042194766d44df8094de482bf8c5c395e9d07f0739ca52b25b34919e +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-05440---06660-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-05440---06660-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b59a9471423f9073804c4050f751bdd40850fb8c --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-05440---06660-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58e4f415123afc8d1ac11632493b5295424f055bd92c4db8ede2ec88f03db269 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-05512---09055-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-05512---09055-in.json new file mode 100644 index 0000000000000000000000000000000000000000..baea26f9295c4c98c202a6921212630bad6999cc --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-05512---09055-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b302749fdbd7728c1fba12f0c68d67d15b86fdc50d4e4fcf58209382749d00b +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-05850---07100-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-05850---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6ad9098236d07ceb7d603dac6139b91f78bd08c --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-05850---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f0026e1f53b362d1b89ad23a26ada125d1116cf0fdc6b3c1eba17388710868 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-05961---07098-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-05961---07098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0d55bf2af6f6a1b32e7fbb75cee29601382a3fd8 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-05961---07098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53b072e569d78a4fab97910286a65136a441975349a4d922887c6d5b9709bab8 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-06300---07050-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-06300---07050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be70ef92be830002c84d1a25d642cc751eb60eb9 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-06300---07050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751550f3b8cbcfc94c76e7c38a23ca942ac409b2ec7a2ebd9955349af9cc3835 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-06693---07087-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-06693---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2296293a3c9fb73e8461eb1fe76901a219b2aa43 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-06693---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a836cc4155cc52dab543371155fc2076a8511aee0e2bd6ad0ab3396b08410916 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-06900---12300-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-06900---12300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78f0933c00f10c7532e4eddd903c9245a2bc0e50 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-06900---12300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294cd5461fd99f7d8c83eaa5fa027a72d5531413f1624767c0399b9287ee48ca +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-06913---13040-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-06913---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..431a6d27385f43e4afdad2e4d99c798239a6bd6c --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-06913---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c43a57a362cb93e8cc013358778480e6487195c13eafd4c36fe68709d7109a +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07000---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c8ab04ff239d40c3105062db49f845ea0897bb0 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ee65bc30323fb4b3015ece3dd80af443afdb29ec6ef60c0cffad32418edd1a +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07200---19800-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07200---19800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b1951c97b1b5e1956fad4bf94fd83f119922333 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07200---19800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb1db3a27a058ba9148cf4c2e1bb4700ba9725a73642be7ec1fdd2c1d4fe0cc +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07200---33600-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07200---33600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..331c69a033e8656c0d72c4e2cdf809aafefdfced --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07200---33600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14e3e68a0a24cb8bffd666710e3cb70a78252fe5486e755a4eb04ea94bfcc650 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07299---10236-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07299---10236-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3afa71af6810391070bb378b691fb5184b56b784 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07299---10236-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94a06736ef956f637b2c6f25a4270d321b1809207d346c6a7c9d26fd41fb08e +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07350---12820-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07350---12820-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a27ccc08db39fc9b44c0f9524c8388dda6fb3cbb --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07350---12820-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a3a39c6a71f84011c0a5199ef318759674febc27f7fbdb872f9d71c88bbb4ca +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..623a004433e69b7c03ee489e1119fff7e7c42e72 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d84c43122f6314f8db1d0adc4a70ea50eefbe16b0b2fddcf73cad5c99126f6cf +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d703415a4010b225b9452ed5f84b4b7433cc5ce2 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dff2115fddf3553ba616bcad9ffc8a45ba01fb7d8b27870d002f87ce78d4678 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10177-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10177-in.json new file mode 100644 index 0000000000000000000000000000000000000000..143c4fe8739657749a35aad04168f8d4676d26ed --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10177-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1ed0912ab6315d861f68cc616bd372de9a5069970c0327f1e581c47497ae78 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10310-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10310-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5aea2407360a6119cc2f6a9f1ae5be302c819c85 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10310-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24369b22de5664bb76500c43de69a3f99a2da17c47dfc3afae56efc88cf03556 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10400-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27af50510695fc9a56be4092b5126ebb27e1a771 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca89c3bf0510a7ab986427180c57a71ae7228f37d43cd0d83f4762d69e6ef334 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10430-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10430-in.json new file mode 100644 index 0000000000000000000000000000000000000000..478d33dbde997f43fc7151adaeeeea10a7f51085 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---10430-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56c51c7afd5858c3a8b1fc0afcf018b54cf1eec02aeefee63d3496ea9d3c291 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---11024-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---11024-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75c06d27167568248026df3dd1b53f57fd5dbc5a --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---11024-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcfb368ef23711bd1a7e019e1e29bcbfff1fa835b23b4907cf862057185d6839 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---12820-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---12820-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ccbd55a9b8560755072e7cad9812c29b7e5457dd --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---12820-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61c7075d497c1076a77005daf2c0cf84d810bbddb7cd2bf1b496da0504f382b +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07360---13380-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74dddaaa62310a70788e059d65a193056111b2b1 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07360---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c89176e29a60043fdf93b4dd53d69c80de94f234d0289241a8539c2de066c4d7 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07362---10400-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07362---10400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..206a8522887f66997272c4fb27bccffb91fd84a3 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07362---10400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7da352c1e71aca3c100c8bbd88264f62179093980255eb807425056946d719 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07362---10900-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07362---10900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f805037894e7f969033de3af6d6d92bdf93e9a7 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07362---10900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e0678883af9a2497417178b4d0b0aac7bddf62ac35580e3216b7c7e1393b50 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07400---10410-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07400---10410-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45c3eefad2ae9a7fc5d7c6c188305bd2fdf27d0a --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07400---10410-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0fda3c3fd15ef6cc69287a774cd6ebcb7970d30eda6ab6a57c7f3a202db1fd +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07400---15900-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d690c4a3c087f77eaec6c359cab38f3ea2915a8f --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58a2fe95f788bda72b87f509ddd1aa5615e7df571f04e4b7dce0325b63c94642 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07402---13780-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07402---13780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..246abacadbe19ca63b9544730d897aedfbb01613 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07402---13780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e303afdfd94aa185fc97f61a80d5f5cf819488eb95b54f8fa9e02d9dcf9900 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07500---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b73960e8619caf5072e0677b65178f6444e74335 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb55b652cd6703abef839288aad676b52faf968045dbc1cb22dc9d6f335ea595 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07570---14020-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07570---14020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b7910ff6ea944d5f394a70b276fe5c4dfa150c9 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07570---14020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d014e5a3a0767dcd2bac7310fca0644ca05be84984b35d5356aadbd5d5ce218 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07590---08650-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07590---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3530b838be022df8bb192b509e08f6b76f901828 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07590---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b6e80a89fd09c1a877b6692a4b31e1c30a3a1919016bea82fb071cb1bfbc64 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-07870---13380-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-07870---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..177cb390cd92be484ea7e2f8cdae817cf4effeb7 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-07870---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008884f0fe6ba204f04d4a9abe912ff5cade95f55c101e571532b709f3d2aa34 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08000---08800-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08000---08800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83116f052aae01811d704e9284549fdde52a3def --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08000---08800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55f9a62fbc046b7a51c045a58e6fe59306232dc4094f0af35818478dbb26c9af +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08189---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08189---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb054bbb47b2e6a4eff4b3044fa29133af09e14d --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08189---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67cbd570b9f1e5c4929c8702419880015dd2c6cee53885c4b3f7cfadc2a163fd +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08230---08650-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08230---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c90146081fb7754380f90a9bab1203af3bc2b4df --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08230---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b724a245c68f28c09a73b359b9d6ec75c8091c77b625f76dd15d8dcb66816f31 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08250---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08250---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a1ae32fa08119396a174cc97e0740d1c14ae877 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08250---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2946785cb01d4c158ba39e8e26b3051ea7e122be0d72b7f2110993321bc5197 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08346---11024-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08346---11024-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a76fc938295e35e08099bc38ff8361e14fe5478e --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08346---11024-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c5ab6f31844f79ffddc38843bc64b7b207ce531ad86e53880e06fd04bee591f +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08425---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08425---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e6711db9142080922cb4e8eea1efd1326fd5eb0 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08425---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c339c4380843a531d4c68682dd4fb3e4cf1201f9fee4a4842ad519df3408c833 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08640---09440-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08640---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..05f82dac8a72d098ad9dad47875ebbc5f2c085ca --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08640---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26dbd9b4ad58d8197645991b84bbb9eae35ec2c18c92d97c7c0aa92bc87dd98e +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08700---10000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08700---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa23d4b52632da3302a3e64fc9be7e0dd911d5ab --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08700---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10efac258da06a00ec5801e63320d7401e248333636cf6a685c04c53e4a341b8 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08850---09450-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08850---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50aeda36d4a7837d9320100ffcd344090ec74948 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08850---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d454628f2a92deb7b352338006cbfd4d5884dcde33d7b86d56dcabb37573a6c +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-08900---09450-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-08900---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a941b0a258248c8b882f410c1f5b58ae388b345d --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-08900---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea609434dd41fd558e635bff881ce1cec92a467acf46184cd043a732c55b5b0f +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09000---09440-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09000---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd215115e8c7e73613a8cf338bfbf3a0bfbd6d92 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09000---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084c893a5820bd7ff7201fdc3770bdfc1c7aa2af3d4931fda49989b6444b0da0 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09000---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49e685e6e9a4cc7a5d40d4b784444640d7f7ac10 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6733240d758cbf519fc26f071493b4c68336fed5838be5231a8412b4594fc491 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09000---10350-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09000---10350-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbdf5cf00b04cd09517755943e7818ffc1651d19 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09000---10350-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85bf19a65a58ebc08a9f84c8244da389def19f46a6c969e6e28f966355d23e7 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09000---12300-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09000---12300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f5103a85a83f931ac7d3b73d9900b8694bd4cd14 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09000---12300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a821d7b73f82f59219b7b70414ca8ad0bd3d46032937fc643450f3a478df29f +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09200---09500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09200---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6051154a4051e7301a8f588538bf05bbd787ece1 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09200---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23abf1f85ecd712a29a47088f298497800603e23108dd3ea0719eea9f12a8d17 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09449---13386-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09449---13386-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba68b4c495a3045c50b9f60fcc566613877adc1b --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09449---13386-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3173cecd03409e8dc26d8edd1c9d9f4dcf289bbe39a35e8875fcb3cab5742eb4 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09606---10433-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09606---10433-in.json new file mode 100644 index 0000000000000000000000000000000000000000..402f4700b566cf9d5827d42b732a547e3dfdbe1b --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09606---10433-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8073639158176610bb163f05536e0dc074562a473c208809610bc7747f28cad +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09680---10310-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09680---10310-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94a7e295fb543aa37c5fd04498bd75f358d76df4 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09680---10310-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5c223d13c05ab0ac4a2c77ba4e1bc2a4d075444f86b516f5e8b61bc43335e85 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09700---10500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09700---10500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..63a898f47ce5217585914f661b9a23bce9062a63 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09700---10500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81140169c61ec31aa068e635084b7056e2b5adc9365d44dadcacc5f02289a377 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09760---11010-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09760---11010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6e0682d8d7dff6c7d1ee53051dea1bca4ab0aaf --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09760---11010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f9df1688fdb12cc407b92de9a5cc470a0baf3bbc946969812765aa5646930d +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09760---14840-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09760---14840-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e44364bb4e9c1b9e73a5eceb10243073423e6f07 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09760---14840-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:509606345cf250a5c423eb55f1963b9119de6bee9638aa630da4f34b99dc8718 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09799---10591-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09799---10591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a1dfebb3fff32530f104d7a5c458c831443b2541 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09799---10591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7feabaab1b1f73a4031958042e4dbe601abd6d4e3af69b8488f9fd936d0e41 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09799---12693-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09799---12693-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03f9eb5bc7d5821f426226232124d24dba9cb4d6 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09799---12693-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec242747cdecba08e6a6f52f5e2cec70e88991c61aad5e85b8111decf07bbc80 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09800---10800-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09800---10800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc7cfd0079b4022d9f0639d434daa7b546fa0742 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09800---10800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:529b72082987378e874a531ed7c30ad8d282808211840c0be2bd5aaeb284fbba +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09800---11400-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09800---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8606fa25134f27895a24c03f243d0e3ac711dd5c --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09800---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f47259fb19fe76cc555bd45bdc6b754f940dc5f2dfea220f22e3a01b01889fb +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-09843---10236-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-09843---10236-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d5ec1922b624910e93775565b4e6cd008c6367e4 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-09843---10236-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28be8026ce2d25506c97a4e9e84ad1487f281e21dfa398c981d725efb52de77c +size 500 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-10000---10500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-10000---10500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6085bd93c34aa758dbfdf357f4d957bef37f15b6 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-10000---10500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:867ba10bc6bc482efcdf3bc8caad25dbb2f83dc02536766147bdc6ea03c305b3 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-10236---11811-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-10236---11811-in.json new file mode 100644 index 0000000000000000000000000000000000000000..722b9a08507fe6f7ef0835e6912b7aa0eb878b14 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-10236---11811-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5b2c5de869693d003b7ea273c2c42ae7c556d2ccb54e9181e86133538244a0 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-10496---11024-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-10496---11024-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e28c782d008f6ab71854ff1746f3aebcef0b9060 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-10496---11024-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8066928005a2dd4fa2f6cc953ba9feb1002ead8f119b9ded826cda98309c2f0d +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-11024---11535-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-11024---11535-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d91d81d5b4a35c0a89a58f2552613e45405b632 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-11024---11535-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c619fd12fcb2dbd9523f31f7a65bd4fc0789ee7fe3cefa1861348fb9aa46264a +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-11545---13200-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-11545---13200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..296167ebba4feb6c68be1981291fdd44035ef18a --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-11545---13200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27cc60eb5954789522a5db60273734dd7eede8244098aff62d00591da76ec3cf +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-11772---12205-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-11772---12205-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9c04d266c21db7dc547c7ab85f55351d8ab943e --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-11772---12205-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f958ae99b3daf17e874b7b2b40998730c6137e05360b5d4709d84a286675cc1 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-11850---19400-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-11850---19400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c1b4fdd5be30f71c308096cb1220429fcdd6d237 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-11850---19400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc22567c3db8914df1a566537b3b9b57720a848b5dea91489a532b18a98a9f83 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-11870---13200-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-11870---13200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e76e155dc8f9588b34536bcc5908dbb4cc8cee63 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-11870---13200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a390aa87bdbd6b8447078cdfbba3801187b9298a4fb4cb8e9cb63ad4a31a49d4 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-11890---12799-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-11890---12799-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7737590d696c223b67e636b51d8f244251c738b6 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-11890---12799-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dab27cf14a72c8bc2c2c3fd47f6019f5f85176fac4aaf97a7452edc6981247c +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-11900---19500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-11900---19500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82fabb36a61c22413b34a2253e4d987e3129ed3f --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-11900---19500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d709f3c1288354a24d3a5d496379b41cef5358dafa37a290beb806b2c454fc +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12000---12500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12000---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e610ccdae69f2b67d97eb5dfdf31cc0e0092cca --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12000---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6493a247f70a538f5057725b94b5709ac8594075b63a0051a80604fdbbc25a30 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12100---13750-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12100---13750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78fafe0afdd085a483c88719a84139c8f5cce99c --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12100---13750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15933782c0d0b7985d4028f70040f4dcd17aed312d76d1ed91c611f19535eaa7 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12100---17900-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12100---17900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2459407512beec3948e7f23ef568c7e13be56ad7 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12100---17900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0126ecd0f7861bb6666ed302d1a350115c7cb971a712b91f659282a01399e2a7 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12100---29000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12100---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94a2ee157a6c8869da30521e2d810937387fa0fd --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12100---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6742bd403771c847cf6e769c727a152a59f2f479b31a9f67d1f9a9f12f6b306 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12100---39000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1e2eb07cbed409c6e0dfda701f3335556f96446 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc70c762491af80e3c6ef9d874663a5f45a3e78bb48daab47ab83fc82406b34a +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12160---12830-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12160---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..671fb8f0b35b56991dd57febd8b01122bb8cbfc4 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12160---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:042b599ca37dd7b77354db3e33a3facca450b950a97770f85274848e0faa91bb +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12200---12750-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12200---12750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..98c897796ecd8aef6a30466e804deede699e3197 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12200---12750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee3d0f7f974d0ae6d272d8a17591ea32be4df5b587be59a1a900cf001e87549 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12200---12800-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12200---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b8d31ff72ba0a0ea80e422ef30f9a62599a8b5f --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12200---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6002a2b7e7970c84ad483eca17fefec7fc770b8d3cd3ab7dbbbd50d28c259649 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12200---17500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12200---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b22e3bbbd225881ea1b11f549a7d00587565ba5 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12200---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07233b8be4979c9e329d273c310008629b7adece6d8a4df4673b7ad46bc654ea +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12205---12799-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12205---12799-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36cfafc099238d617473af3286c18271a0f87021 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12205---12799-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40781fe6d2099efdc1ac9c516510e6426e35b6086e623bc83edeac04cd6f7a42 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12205---13000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12205---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1bb37eba4a4b22b2de97f2d16719bc9ca8a406d4 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12205---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044a710adfb6d713afc969a29208532de2faca14d0190da941ab2f3241f65d8a +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12205---15354-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12205---15354-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79b17f5a68cb99bcdfa2afd8e2f1696c7b211074 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12205---15354-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb5d5a11df65b4d1ba5841ab2f90130c7f652b4c4cb1bd876bf1eb2ad1238b2 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12244---12598-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12244---12598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddf56057b9d325a1a6c521a108f0b73fb14ea6f1 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12244---12598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d48d6b9ea8a2c53c8b67c2450c1aa1015777960e072337d014dfb639e378c7 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12445---13380-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12445---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ffd8fd84a901fc96ef1ce914dcbe5ef225dc1465 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12445---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35403fc08d8790d7aa08fd92438ca2a2e8eeecbd05f46c16956e50fb32dbcfcb +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12500---13100-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12500---13100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fd5095c2fd5e56b396e6c4617d2fc4de4d6b9f55 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12500---13100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44946b4c33fbb323afa1243b657b22c5ad217a87a20fb396d24fd3b669c24140 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12598---13039-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12598---13039-in.json new file mode 100644 index 0000000000000000000000000000000000000000..acfa6a03946415d5bac28a1e1c7c5d7730df727b --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12598---13039-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09db3b4a149fa33cdbc7cfe0b2df2189cb04401cc4e807d5c86a368171b44ec +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-12690---15000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-12690---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..940f4108cfd4f3f9da357ab01d018466ab4e5421 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-12690---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e0a63836b1809df60b3d777b40d70918c2318eab9cd8a841dc51fc290d06342 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-13031---13039-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-13031---13039-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7968573cfd81c82c5d6dcad96b502ebe23a0b6a1 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-13031---13039-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d857727d2cdad6aa770d2b0c6090444662eee7499fb53eae34fc806ab3b9ff7 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-13110---14020-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-13110---14020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37fe50f721022189433bb1113b3263685def315c --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-13110---14020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28d790eb5ab26baafb65beaee0b7da0e6a8e3d08a5d3a0a812ddc9dea7c1507c +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-13460---14248-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-13460---14248-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d10acf0c1e1625b905f805debc65f63b0f3c60c6 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-13460---14248-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b531716d0addcde38b00e2b8d1be2276ccbe9aad15b8c9b5df3f2531e2296086 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-13900---14600-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-13900---14600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a74fcff1d446837f62b1a5b7e166734a62744217 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-13900---14600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98a93e93c8ff7f9a4cb6fc9f7f8dee5253279719fe1ecfef1454dfe9cb7d9c0a +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-14100---15900-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-14100---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..47a2909c2fa0d85b44a94abd6005aea507d60e56 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-14100---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0b7f292c7edd6eb6c17c1a938d1f71429db332647e6c2f75ac952fe5ca0b92f +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-14150---15950-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-14150---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..751d1e274dda0876d7d5de1c7e18303aa17e5d36 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-14150---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9ab476b231ae9a6b838da8e6a095627d1e60bdd52ee5aa4affc8a0321f8957e +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-14250---15950-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-14250---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2181f7fb2a3aa4a75d8165fa462303da9795aec5 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-14250---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a6bb8a6be2ae0e00aa9b95ab7f8a09fa6c38a1c16863d037ebc056ace31725 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-14810---15950-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-14810---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..68326c9969c0df06f5df62ec0c72200d5d727631 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-14810---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2cc4d0bccc317ba21cfea4f7af6bebde3674b30f72a7f04a30d4479d8d68a9 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-16200---17100-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-16200---17100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..446932c5111676b55bfe4d50fabd1a7132355908 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-16200---17100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9b588f722d93bfcb00146cc62189d542c55d8cf7561a2b2393387df645f756 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-16490---21520-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-16490---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..acca67557bbe83fbafd50937fbae4514a8937ce7 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-16490---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a21d250069b2e8e703be338968fe01552655232a7706da9b3dc8e107b0f0a3 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-16500---17000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-16500---17000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a9bb0d0ff4acff2af9fe3ec0b5560d1fb782b479 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-16500---17000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c5f1e577b3934fd70551a0dade79bbadb23fa7766ccefe00d228f9a3dc4aea +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-16500---17300-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-16500---17300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2945a3faf9c22f22d7c4d72a38daf4649e4d816d --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-16500---17300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ca8b38ebe9db17eae30754d97b370019c34e089b5b57cdcc788ca1d763600d +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-17500---18000-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-17500---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f43c7c0c250526ae783e39165917dbd7e004c65 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-17500---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a8b3763dd3ef35f2efdbb5460b3e8e7aef95d15c348e66ea550d8f558436d7 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-18880---19800-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-18880---19800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77a153270d2735226dacd7fffe40b88d0d8a61a1 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-18880---19800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccdc5cc210258163447a12b002f49986f1fc924a9cb03c76cba641761dbf4a62 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-21000---99760-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-21000---99760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..127d249598c29f39cd24871fab855c98881bdb5e --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-21000---99760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f38d4d0998cb6b34a57d42c3eca7e37c72b3f8dac2f7245ce61fb7952d2beea +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-23031---38640-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-23031---38640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8a43762761ef0fe7942767768293b991b3139a4 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-23031---38640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c465ab4a6aed664fc4c915a7c4105e112292de4231b1cbfebc6f82f831a4c20c +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-24860---25540-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-24860---25540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e82bc52dc768769ce2900c0c9addbcf0b40a07c --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-24860---25540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301cc0cf45f563fb5eaab6e9fe1a03c739cf60ebe668abd4face665745936cba +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-25175---25880-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-25175---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..30c7ff8e06aef3e43027c6f5f07715e15d7f55c1 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-25175---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b6206fe6964a9756c7acaec268e800c9387397be0ff8776c61a047368c5993 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-30000---31200-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-30000---31200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be670a6b3f78258b7ac4ae32bcf74235054c4365 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-30000---31200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e56478a76affc11b2728547338483903ad92a31e48a3f1272a9fe9969261161 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-39200---39400-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-39200---39400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a445d35bd4f739e01adda573887928e4b075eff --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-39200---39400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455bdcf47f5caea718126a6176c6f2f6c680d2a6f6744bccd722465c3fdb9d31 +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-39380---41250-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-39380---41250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ecbd04273e21ab9aed6564bcde0c975f2defeb3 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-39380---41250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142def85aa682e18321d5f900f66ab3e8a0034730ba6cbbf2b195b455c47516b +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-40000---42500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-40000---42500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c29ccbe78c6576a247d8c6391c04685ccf4be147 --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-40000---42500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd988aba4ec62d95a807eb2c1219ab50bd176994e7eb819378c0c2f4f8c6e9d +size 443 diff --git a/source/parts/detail/c/custom-polystyrene-ps-ring-52500---57500-in.json b/source/parts/detail/c/custom-polystyrene-ps-ring-52500---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6363bf484cc487cc7d28802c999547e60abbb9fa --- /dev/null +++ b/source/parts/detail/c/custom-polystyrene-ps-ring-52500---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8848523a2e92095c91258da43462281fc6a5e87a8009916510c4013f9b8d4a26 +size 443 diff --git a/source/parts/detail/c/custom-powerseries-transition.json b/source/parts/detail/c/custom-powerseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..ae984961a2993284ad33bfccd33871cb7e56dfd5 --- /dev/null +++ b/source/parts/detail/c/custom-powerseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b12460d9df2279d034d161ba06e9782577e7ff97eeca28c7ab6dee40a4c09eef +size 596 diff --git a/source/parts/detail/c/custom-pvc-ring-00000---18000-in.json b/source/parts/detail/c/custom-pvc-ring-00000---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9286d9f8f2c39c40938d3957f110619539ece78b --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-00000---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e60acf041f249391879b6b1f88a180e23574a7db74eeef5537cc1feb4909f5f +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-09950---16660-in.json b/source/parts/detail/c/custom-pvc-ring-09950---16660-in.json new file mode 100644 index 0000000000000000000000000000000000000000..074d6624abb1968f1dfdf4d23bcf4fe2ca3b9150 --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-09950---16660-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1463a2a4d0dd766ec2551f2205821203a1c2e1a1ad320dc5b317c02b9b9bd277 +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-10000---39000-in.json b/source/parts/detail/c/custom-pvc-ring-10000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f80291e7ff070045aae5dc4dc7628ccd1e460b2 --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-10000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578b5360f8b8e636b7e9172bb13316dbf084cd2ea1ebba41bc5ddb8a13094f00 +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-11440---14560-in.json b/source/parts/detail/c/custom-pvc-ring-11440---14560-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddb17e103985b0eef0795c08c093a573c7ab4e0d --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-11440---14560-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e362119c686f689e8090d9af86e5996486e331c7d7bf86e34652a19b3bb1a6 +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-13000---15000-in.json b/source/parts/detail/c/custom-pvc-ring-13000---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83b0df3a8d282c0bc8c5b75ded3fd5e3833b0476 --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-13000---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0214ca514bfd0b22e097cdcb12394c65c0c42fe2c7e493ea2ea470f61973df +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-19970---21339-in.json b/source/parts/detail/c/custom-pvc-ring-19970---21339-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7bedb87be4f274cd85596777e64170b866106c8 --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-19970---21339-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e94115cee95bfdd1cdb416e59793ca48b1331bf9db70d3d4c314386952e457 +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-22047---22500-in.json b/source/parts/detail/c/custom-pvc-ring-22047---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..21e54c3073dc9fbca0b5f50bbd7f507f45f96d26 --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-22047---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c25ec52143470c2494490689e20f2f1cbc51a216100d31bdaedcdd45fa5af3e +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-34000---38820-in.json b/source/parts/detail/c/custom-pvc-ring-34000---38820-in.json new file mode 100644 index 0000000000000000000000000000000000000000..674ac52518fd48d7b79679e62eeb5ecf405df1d4 --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-34000---38820-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5151ec524cc115ffef6039a39263814d68fd9c692959bbfffff8f1ee62d925 +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-40000---52500-in.json b/source/parts/detail/c/custom-pvc-ring-40000---52500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d723c576b1dd38707c6dbdc3ac1798da1940dfed --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-40000---52500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37957ba7fd4c9c07e5d35124a496070ccc7e2384422595cb069e0c1504067ca4 +size 410 diff --git a/source/parts/detail/c/custom-pvc-ring-73750---75150-in.json b/source/parts/detail/c/custom-pvc-ring-73750---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aabb7fdd46c8591c89b06b5e9384d1560f66c60c --- /dev/null +++ b/source/parts/detail/c/custom-pvc-ring-73750---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0bacfde56550daf332821319ffabe9562be3fce53fd478297223e48399264b +size 410 diff --git a/source/parts/detail/c/custom-qlss18-quick-link-ss-18.json b/source/parts/detail/c/custom-qlss18-quick-link-ss-18.json new file mode 100644 index 0000000000000000000000000000000000000000..bfc61230dad7db4364b69f072450a096eda8e921 --- /dev/null +++ b/source/parts/detail/c/custom-qlss18-quick-link-ss-18.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:770ed4029e38468bac3b4e950a80adcf5f6620fd48cc61e583e8eb0232a4877d +size 393 diff --git a/source/parts/detail/c/custom-quantum-tubing-ring-97500---100000-in.json b/source/parts/detail/c/custom-quantum-tubing-ring-97500---100000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6dd694fc98a083ce2635c20f21d744d4561b255c --- /dev/null +++ b/source/parts/detail/c/custom-quantum-tubing-ring-97500---100000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533204ba3d381203a8954020ece6726791d859e8d3bfde121cc4b35759364cea +size 446 diff --git a/source/parts/detail/c/custom-quicklink-225-quicklink-225.json b/source/parts/detail/c/custom-quicklink-225-quicklink-225.json new file mode 100644 index 0000000000000000000000000000000000000000..73539e262a916dde0c2faa4b7502ac0ee4abba4d --- /dev/null +++ b/source/parts/detail/c/custom-quicklink-225-quicklink-225.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b8df24dece0ecbe6fbc9324d77e2ce8edb50576bdb8f851a1de2000d4fbe34 +size 417 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00000-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5ccba479a3df1623abd2477233048b0cce7ac27 --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76a0cc577a4ede3d549a8dfd49074bc22d589eb1cfc92f1c4f6aa681ca009398 +size 406 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00005-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00005-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba7f459654acf4879a31ac43ca4beed23d63e976 --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00005-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e09a65c6e893e254cc5dfd5ec8926a063267141d235a8474636ca26d68b87b +size 406 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00010-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f90c266a4d427893f8805bcc4508991c49ff8ce --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8bae6549dd5cb854714222a97ab93f2c990025b8d44c38cf4bb85b24ed2fb9f +size 406 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00015-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00015-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bffcba448d84194092d3e1edd7c35dce890af698 --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00015-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:682bea2b82e91162d6becff803afc8a48bf7587a00f34c0d4cc4026c702097bd +size 406 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00020-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef7d601d776b767b6277dc6ce448f133d97e8a4e --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1a10d36d99e75dcc94dd7754cd1f1ac2b52353b7c592d79b982c44caa303d1 +size 406 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00030-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c95f719fe2597c8e3cf66196705d9aa8b93b7aa --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e447f7bb62e458316b3820cda8d6b753439f4dd3ae487adc0953b30f95d5b62b +size 406 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00040-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06cc7f9aa0c70e694363ebdf127b8856c9cd72de --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e6056afbbb8b10d136b82b5ef9f57e4a477fdb5ba134182d90218c9ee0eeac +size 406 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00100-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8c2c377cded1229eb20aa26f73b2f9047d99d6e --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6122794de48a3f54a6ca53d66cd58241a928fd8f5ce1876fa01a3f21cb722bb +size 406 diff --git a/source/parts/detail/c/custom-rip-stop-nylon-streamer-00150-in.json b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5062cfdc12c46db440dbb0da31a87ce4917be543 --- /dev/null +++ b/source/parts/detail/c/custom-rip-stop-nylon-streamer-00150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4aecddec0b2121ea6232cb135d9fd5a5676ec7d070de340195c588f2645db6 +size 406 diff --git a/source/parts/detail/c/custom-rockets-cardboard-ring-07360---22300-in.json b/source/parts/detail/c/custom-rockets-cardboard-ring-07360---22300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8d38ba8d817218615854e5608f2e09c3aa02ddf --- /dev/null +++ b/source/parts/detail/c/custom-rockets-cardboard-ring-07360---22300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e18b044bd652c5be2e528cd6fee40c993c7aa3d055f279f7479e647619415f +size 444 diff --git a/source/parts/detail/c/custom-rockets-paper-ring-05850---07100-in.json b/source/parts/detail/c/custom-rockets-paper-ring-05850---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74522ecf1ecdc8add8eb735f2bbb80d92985d132 --- /dev/null +++ b/source/parts/detail/c/custom-rockets-paper-ring-05850---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f44507a3d048a91b3de5259eca3ad2d88d090401f01592985cb8eace4320d0a +size 480 diff --git a/source/parts/detail/c/custom-rockets-paper-ring-07360---09350-in.json b/source/parts/detail/c/custom-rockets-paper-ring-07360---09350-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cfabcc687e8146f13e18dd52cec210e232a6a4ed --- /dev/null +++ b/source/parts/detail/c/custom-rockets-paper-ring-07360---09350-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac84c1d1930c7daf4133ba48283de0f3bad5e87db8c48e17f84ff9ee8d437c89 +size 432 diff --git a/source/parts/detail/c/custom-rockets-pvc-ring-12500---13750-in.json b/source/parts/detail/c/custom-rockets-pvc-ring-12500---13750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55c96ee921359557141d731b120a46fa7fd9602e --- /dev/null +++ b/source/parts/detail/c/custom-rockets-pvc-ring-12500---13750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29614be6433bb8aab0439851572e04ed628c41185138a5b51ca4bf0ffb3b5d34 +size 451 diff --git a/source/parts/detail/c/custom-rockets-pvc-ring-13750---18000-in.json b/source/parts/detail/c/custom-rockets-pvc-ring-13750---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f700773f35daeb0a7d9b2d61b25f152cc55f165d --- /dev/null +++ b/source/parts/detail/c/custom-rockets-pvc-ring-13750---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81b271f21deefcd8999e7277eebafa42d26d023cfcdfa31e1670798dd48341d9 +size 451 diff --git a/source/parts/detail/c/custom-rocketwood-ring-00000---18000-in.json b/source/parts/detail/c/custom-rocketwood-ring-00000---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d040e88569bb80e01b97d04ba76f608c39b8c8f --- /dev/null +++ b/source/parts/detail/c/custom-rocketwood-ring-00000---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1badd3259dcdede42cd6d57d2fb12a7c3a178eb21b2aef9bb54f366268153df +size 431 diff --git a/source/parts/detail/c/custom-rocketwood-ring-00000---30000-in.json b/source/parts/detail/c/custom-rocketwood-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..368ae40028e6e563ae7a1ef79cad7e4e51c1d76d --- /dev/null +++ b/source/parts/detail/c/custom-rocketwood-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f974e1b713043f467dbd9d0e9c9319f8988745d265687f420cd0b85c137bc2 +size 431 diff --git a/source/parts/detail/c/custom-rocketwood-ring-00000---39000-in.json b/source/parts/detail/c/custom-rocketwood-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb5c5a0b0555421f010700ed5720eb748d52854e --- /dev/null +++ b/source/parts/detail/c/custom-rocketwood-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0791e26a6003ee5ac7172230bc660da53f789b2e43383c03b83f457fbb4a8d +size 431 diff --git a/source/parts/detail/c/custom-rocketwood-ring-07360---15950-in.json b/source/parts/detail/c/custom-rocketwood-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fae5218f6c06cbefef52256dcde7fce58400db62 --- /dev/null +++ b/source/parts/detail/c/custom-rocketwood-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:188f4db5cda75d1523ea73af68174e96f4f43493b727e581b97a15e08bc8b090 +size 431 diff --git a/source/parts/detail/c/custom-rocketwood-ring-11800---22500-in.json b/source/parts/detail/c/custom-rocketwood-ring-11800---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e0e7a29234b4d1dcfbfefb78e06681060e64752 --- /dev/null +++ b/source/parts/detail/c/custom-rocketwood-ring-11800---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef86ddfce85bbd83b7fc2a326a9fffbc84aa88b377074f3c2bfac775c1659ac9 +size 431 diff --git a/source/parts/detail/c/custom-rocketwood-ring-12500---25600-in.json b/source/parts/detail/c/custom-rocketwood-ring-12500---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..413875b93985857df39af24b3efb3deeaacf7372 --- /dev/null +++ b/source/parts/detail/c/custom-rocketwood-ring-12500---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0878db4ec2541f8fe9c7390a8e5a4c9dcb49b84642c0e7fbaae9ed3169bda3ea +size 431 diff --git a/source/parts/detail/c/custom-rocketwood-ring-16350---30000-in.json b/source/parts/detail/c/custom-rocketwood-ring-16350---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d1f2b8733e9cc86d1aa923a10ee7ba030a15847 --- /dev/null +++ b/source/parts/detail/c/custom-rocketwood-ring-16350---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5145be6b7f1bca63a4b8fb2a3bd03f23c0b0a6216d5d526955838cd6178ff51b +size 431 diff --git a/source/parts/detail/c/custom-rocketwood-ring-16402---17323-in.json b/source/parts/detail/c/custom-rocketwood-ring-16402---17323-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48615788b4efdb6707d34c5168cd94fea0b534f9 --- /dev/null +++ b/source/parts/detail/c/custom-rocketwood-ring-16402---17323-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feacbaa88a89fc852c4001f69fc02f00fb5020b8dc5d4a90003c744a0b128755 +size 431 diff --git a/source/parts/detail/c/custom-russian-18-ply-ring-12100---18000-in.json b/source/parts/detail/c/custom-russian-18-ply-ring-12100---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9472ee2ef98b62c328765feb4fcc8e8586c3c55a --- /dev/null +++ b/source/parts/detail/c/custom-russian-18-ply-ring-12100---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786a05bed161096c65a28dc622eda82e101fe126c142340a99d828af503492b9 +size 446 diff --git a/source/parts/detail/c/custom-russian-18-ply-ring-12150---25580-in.json b/source/parts/detail/c/custom-russian-18-ply-ring-12150---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a9d01c742d3d3a3c667985c335ca500a1fbe053f --- /dev/null +++ b/source/parts/detail/c/custom-russian-18-ply-ring-12150---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dcdbb58c709dbbe9b04c8d6111a14d6aa68bae91196c565c67a9dffda77ccea +size 446 diff --git a/source/parts/detail/c/custom-se-1.json b/source/parts/detail/c/custom-se-1.json new file mode 100644 index 0000000000000000000000000000000000000000..23ac46cae0ec0e3eb584c1da03f9eb79ede6d4e7 --- /dev/null +++ b/source/parts/detail/c/custom-se-1.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a146bcff9fe9ce5cbc4ccb23b131512df0c1f573d36f6694899f4421b2057665 +size 293 diff --git a/source/parts/detail/c/custom-special-plywood-ring-00000---09200-in.json b/source/parts/detail/c/custom-special-plywood-ring-00000---09200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18a1e823b0683bc41aed9a8dc23cc3e270662816 --- /dev/null +++ b/source/parts/detail/c/custom-special-plywood-ring-00000---09200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51936d383774792302050988a5e8456237c60e011fff85da781e7dc663f09f60 +size 446 diff --git a/source/parts/detail/c/custom-special-plywood-ring-00000---30000-in.json b/source/parts/detail/c/custom-special-plywood-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09ec242353ea1f12a9e86be27273d5f0e808f891 --- /dev/null +++ b/source/parts/detail/c/custom-special-plywood-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc1517cd432875bfda45fc67af1ed96333654965f44392b29a773784dc2c8d4 +size 446 diff --git a/source/parts/detail/c/custom-special-plywood-ring-00000---51300-in.json b/source/parts/detail/c/custom-special-plywood-ring-00000---51300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c0ce05ec85b7cf6c15f9bb579bdad9a50c18ce3 --- /dev/null +++ b/source/parts/detail/c/custom-special-plywood-ring-00000---51300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c102517902cd5d611f3578fcee751c253eeccecb1b4ddd122ee848ab1e9d699a +size 446 diff --git a/source/parts/detail/c/custom-special-plywood-ring-30000---55000-in.json b/source/parts/detail/c/custom-special-plywood-ring-30000---55000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6035955e97d3db447522f14c8514fd0352c3ac8d --- /dev/null +++ b/source/parts/detail/c/custom-special-plywood-ring-30000---55000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24e475eaa90d09e1556f0675ef1d1a406eb336db17652cc060ca384dfbc2884 +size 446 diff --git a/source/parts/detail/c/custom-special-plywood-ring-31000---53800-in.json b/source/parts/detail/c/custom-special-plywood-ring-31000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76604eac89dd9f3ab105e808a5f13b9b20eaa3df --- /dev/null +++ b/source/parts/detail/c/custom-special-plywood-ring-31000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ff5480f25467e8c4382dcb144c5ed5259dacf4ad3ae4984661ce7b719ff47a +size 446 diff --git a/source/parts/detail/c/custom-special-plywood-ring-31240---53800-in.json b/source/parts/detail/c/custom-special-plywood-ring-31240---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee0de7345505469944c894b25b94f03872fb5277 --- /dev/null +++ b/source/parts/detail/c/custom-special-plywood-ring-31240---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20522674c608278b56f2810a77eadc345b2dce3e81ad52cb0eb97e07504c07ba +size 446 diff --git a/source/parts/detail/c/custom-spiralglassine-ring-09760---10625-in.json b/source/parts/detail/c/custom-spiralglassine-ring-09760---10625-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77e1fa12f9b2404d30ea135864b73a04141f2f06 --- /dev/null +++ b/source/parts/detail/c/custom-spiralglassine-ring-09760---10625-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:640d2b4d3231f2ac9952a1f39c54e15d0de4bf748387f19dce487ca46008023a +size 444 diff --git a/source/parts/detail/c/custom-spiralglassine-ring-10000---11400-in.json b/source/parts/detail/c/custom-spiralglassine-ring-10000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01597cbd77975d0891e0e78fe440eb210a6d88c0 --- /dev/null +++ b/source/parts/detail/c/custom-spiralglassine-ring-10000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac02f7f4609d84ef22bd84879fc33ed033ec2f669f7e80c62cdef04da4741be +size 478 diff --git a/source/parts/detail/c/custom-spiralglassine-ring-20400---20600-in.json b/source/parts/detail/c/custom-spiralglassine-ring-20400---20600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0cce4faffdfa17712a767ceecba6071deed06c9d --- /dev/null +++ b/source/parts/detail/c/custom-spiralglassine-ring-20400---20600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb88299fb6de8ecd9a356a7bd6a910aec522b46bba15c95df6116d9838cfafcb +size 444 diff --git a/source/parts/detail/c/custom-spiralglassine-ring-24700---25880-in.json b/source/parts/detail/c/custom-spiralglassine-ring-24700---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f35d60edf5170d7f5019c4d86a1d87e81ae86d13 --- /dev/null +++ b/source/parts/detail/c/custom-spiralglassine-ring-24700---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162632d0c300b4c0b498c24b9485a914c2289ea8b24b5fa132563a9d203bb5fe +size 444 diff --git a/source/parts/detail/c/custom-spruce-ring-00000---09500-in.json b/source/parts/detail/c/custom-spruce-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..47565256c3efe96cb79737f603b4c4a4747ab589 --- /dev/null +++ b/source/parts/detail/c/custom-spruce-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ccc145231b4bf26e509922ca027c4e3be2aae41925c9632e0fd6bff92010d9 +size 419 diff --git a/source/parts/detail/c/custom-spruce-ring-00000---37500-in.json b/source/parts/detail/c/custom-spruce-ring-00000---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58c380c1755c7839890f5914b2a254930444cb16 --- /dev/null +++ b/source/parts/detail/c/custom-spruce-ring-00000---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3f6c39881d7875c9f7b03acb85630f7667780b653e73a5cc25a805db620391e +size 419 diff --git a/source/parts/detail/c/custom-spruce-ring-00000---65000-in.json b/source/parts/detail/c/custom-spruce-ring-00000---65000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..23ad34b1684297abf8403a4fbec1475e56172bd3 --- /dev/null +++ b/source/parts/detail/c/custom-spruce-ring-00000---65000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e47f53e365f4122f59b2be6012320b3b8d8470c5395ed7d5da47f9d14747521 +size 419 diff --git a/source/parts/detail/c/custom-spruce-ring-12100---37500-in.json b/source/parts/detail/c/custom-spruce-ring-12100---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c525771efdc603c1f7d4bd380d2424acc081a40d --- /dev/null +++ b/source/parts/detail/c/custom-spruce-ring-12100---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5584ad1508523772e2ebb45a6e0ed368edb2abb2bde556bedb628986cb289f2 +size 419 diff --git a/source/parts/detail/c/custom-spruce-ring-31000---39000-in.json b/source/parts/detail/c/custom-spruce-ring-31000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7df326c31e724e088ee9dcdb8e614a5945a50170 --- /dev/null +++ b/source/parts/detail/c/custom-spruce-ring-31000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66aab18a0ffc098757c91879073767ae99b1a9f0329ebe914869ba4b078f46ff +size 419 diff --git a/source/parts/detail/c/custom-spruce-ring-40000---65000-in.json b/source/parts/detail/c/custom-spruce-ring-40000---65000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..69ce9cdd23ee8fe527deb36d3f4febb6d932e9e9 --- /dev/null +++ b/source/parts/detail/c/custom-spruce-ring-40000---65000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:286e6b890a2d357c7a6059fc168224008b400cc55001e9a2ee68898e9d3568a7 +size 419 diff --git a/source/parts/detail/c/custom-steel-ring-25000---40000-in.json b/source/parts/detail/c/custom-steel-ring-25000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d247a05ad711571a5f66afecca828ba09e07c864 --- /dev/null +++ b/source/parts/detail/c/custom-steel-ring-25000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6490ebb3dde947f32a32ddfa522809e70aa20aaa09236ec2bc10cd7924dca4b9 +size 416 diff --git a/source/parts/detail/c/custom-steel-ring-55000---55500-in.json b/source/parts/detail/c/custom-steel-ring-55000---55500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb6172595cad369b4a9308c8dee2daf21447af47 --- /dev/null +++ b/source/parts/detail/c/custom-steel-ring-55000---55500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:290c50f1166555d2f4ec54cdbdd5530c73397feda5ad21637d750db8c6cabaaa +size 416 diff --git a/source/parts/detail/c/custom-tail-cone-parabolic-transition.json b/source/parts/detail/c/custom-tail-cone-parabolic-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..e9588381cacb706989677b30430a371a7c4b4dc5 --- /dev/null +++ b/source/parts/detail/c/custom-tail-cone-parabolic-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cdacd8fdfd3f671267815e3d041033a754c785c035e9aa78a6cc638c5a08ed2 +size 654 diff --git a/source/parts/detail/c/custom-threaded-steel-rod---14-threaded-steel-rod---14.json b/source/parts/detail/c/custom-threaded-steel-rod---14-threaded-steel-rod---14.json new file mode 100644 index 0000000000000000000000000000000000000000..8c6b1a3dfe0c50faa41b5a969f214a53bd26e532 --- /dev/null +++ b/source/parts/detail/c/custom-threaded-steel-rod---14-threaded-steel-rod---14.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2454fa592e9875ed7a6ad608dc5c5f41c05e9dea5e5384180983c5f283bf7296 +size 497 diff --git a/source/parts/detail/c/custom-tnct-titanium-nocsecone-tip-and-screw.json b/source/parts/detail/c/custom-tnct-titanium-nocsecone-tip-and-screw.json new file mode 100644 index 0000000000000000000000000000000000000000..413c827f723088e874bc4a1286de4cac6607a7f3 --- /dev/null +++ b/source/parts/detail/c/custom-tnct-titanium-nocsecone-tip-and-screw.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32bde500f6607bf6e330fd90421b296566734ec1e6b71fa824a0939808ced8d9 +size 445 diff --git a/source/parts/detail/c/custom-transition.json b/source/parts/detail/c/custom-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..87416747d134b09c68513d3c315a5eb133b69e67 --- /dev/null +++ b/source/parts/detail/c/custom-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:607ef1153ac015fcf1c4490d3f3a4f3edf89336de71053a6cbca0cda01f99927 +size 557 diff --git a/source/parts/detail/c/custom-tubular-nylon-38x12-tubular-nylon-38x12.json b/source/parts/detail/c/custom-tubular-nylon-38x12-tubular-nylon-38x12.json new file mode 100644 index 0000000000000000000000000000000000000000..82629ad91a9c4c9f348b4f26bb01bc25e7b1076a --- /dev/null +++ b/source/parts/detail/c/custom-tubular-nylon-38x12-tubular-nylon-38x12.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a00b8e779e5e70bd4065aae20d80c8959a74d31c7714da56e1dc8e466d4e508f +size 469 diff --git a/source/parts/detail/c/custom-ubolt-12-ubolt-12-with-backing-platenutswashers.json b/source/parts/detail/c/custom-ubolt-12-ubolt-12-with-backing-platenutswashers.json new file mode 100644 index 0000000000000000000000000000000000000000..434d348888c68649024084393e90d4b8abbf9d91 --- /dev/null +++ b/source/parts/detail/c/custom-ubolt-12-ubolt-12-with-backing-platenutswashers.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:586d7f85271c3fed37bb890d1172decc3b5ee4543a6f2aa67932e7a56e03247d +size 501 diff --git a/source/parts/detail/c/custom-vac-form-plastic-ring-26000---27000-in.json b/source/parts/detail/c/custom-vac-form-plastic-ring-26000---27000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0d6c17b818c098f8e8e0f64b5e32116abce54e7c --- /dev/null +++ b/source/parts/detail/c/custom-vac-form-plastic-ring-26000---27000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b752b9cbb33a5cc42df9f65548d646ceba6e455cf64a8a0f9e856f7e92dff954 +size 449 diff --git a/source/parts/detail/c/custom-vac-form-plastic-ring-26950---27000-in.json b/source/parts/detail/c/custom-vac-form-plastic-ring-26950---27000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b1f1a7a49b31acdf8e595551633e76f34204a76 --- /dev/null +++ b/source/parts/detail/c/custom-vac-form-plastic-ring-26950---27000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ad592681386c3205d4f4b299491127fede49e9fe8e10a8b00df3e01ffa637b7 +size 449 diff --git a/source/parts/detail/c/custom-vac-form-plastic-ring-39380---40380-in.json b/source/parts/detail/c/custom-vac-form-plastic-ring-39380---40380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afedc2a4583e55cdbb6edf3673484546b5de78fb --- /dev/null +++ b/source/parts/detail/c/custom-vac-form-plastic-ring-39380---40380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e138948a8d838899f2ddbe62565a01eb50e4a877a107c2f2167b502550cc088c +size 449 diff --git a/source/parts/detail/c/custom-vac-form-plastic-ring-39400---40380-in.json b/source/parts/detail/c/custom-vac-form-plastic-ring-39400---40380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8281f4cfaa54c34daa8a58230361dd796b7db28e --- /dev/null +++ b/source/parts/detail/c/custom-vac-form-plastic-ring-39400---40380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2cf07b31c68d751e637999240803f264c5c99b120122bb0695a36d416ef73ca +size 449 diff --git a/source/parts/detail/c/custom-vac-form-plastic-ring-40300---40380-in.json b/source/parts/detail/c/custom-vac-form-plastic-ring-40300---40380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8aac5751800c41ad95b93ca8750d0d091588461a --- /dev/null +++ b/source/parts/detail/c/custom-vac-form-plastic-ring-40300---40380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:703da5e8d3a233b277246229fda9a074ed0914a12a3d4ee8c34819a9750f9510 +size 449 diff --git a/source/parts/detail/c/custom-vulcanized-fiber-ring-58270---59730-in.json b/source/parts/detail/c/custom-vulcanized-fiber-ring-58270---59730-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a3f5325d30f06ace9ff4c2c5ce90fe587004d96 --- /dev/null +++ b/source/parts/detail/c/custom-vulcanized-fiber-ring-58270---59730-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8569fed22d799e4a18f4706140c300068ed8440c23cae3742b5495e80cc24eb4 +size 449 diff --git a/source/parts/detail/c/custom.json b/source/parts/detail/c/custom.json new file mode 100644 index 0000000000000000000000000000000000000000..8809b089c5e3f938d4aef514913e12df6c461067 --- /dev/null +++ b/source/parts/detail/c/custom.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a844da6b53aa722914b141ad8d5a75dcca39ef4fd68b5613e0b564ee017386 +size 256 diff --git a/source/parts/detail/d/daves-roketwerks-phenolicmetal-ring-37760---39000-in.json b/source/parts/detail/d/daves-roketwerks-phenolicmetal-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3194ddaea18be554e1e2e7e6effc83270803db83 --- /dev/null +++ b/source/parts/detail/d/daves-roketwerks-phenolicmetal-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1421dcda762a5aa4055c62b9a73fae349acdd078d9df521622be0d5b6c7e57a +size 527 diff --git a/source/parts/detail/d/diy--18-quick-link.json b/source/parts/detail/d/diy--18-quick-link.json new file mode 100644 index 0000000000000000000000000000000000000000..cbbe6d41fab2a46049cc152629ade14c52a0d804 --- /dev/null +++ b/source/parts/detail/d/diy--18-quick-link.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d714a619ab52a720404c91e00e8d7fa71dfed48375d9e07b1ec913f1c48648a7 +size 325 diff --git a/source/parts/detail/d/diy--20mm-steel-fender-washer.json b/source/parts/detail/d/diy--20mm-steel-fender-washer.json new file mode 100644 index 0000000000000000000000000000000000000000..3d5e757f0edd0deb0c8c18b8f34dd23c8de77567 --- /dev/null +++ b/source/parts/detail/d/diy--20mm-steel-fender-washer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8eb660da272aeeb69cd84d495b60b88120df9b0d7302bdb256a5035ff4faf7 +size 363 diff --git a/source/parts/detail/d/diy--4.json b/source/parts/detail/d/diy--4.json new file mode 100644 index 0000000000000000000000000000000000000000..5f1ebc783c0d40a808eecd20f5a91598ed6e5142 --- /dev/null +++ b/source/parts/detail/d/diy--4.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:097288b9f7e8514d75765ca2a3b849cb37e1136a5bc2a7c9a3b7bf5b4b54d086 +size 353 diff --git a/source/parts/detail/d/diy--copper-bb.json b/source/parts/detail/d/diy--copper-bb.json new file mode 100644 index 0000000000000000000000000000000000000000..98846f23a86ca005a9f8924b69811c1d25701bb4 --- /dev/null +++ b/source/parts/detail/d/diy--copper-bb.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91b3c1475fa7e44473824cd0c34bc54040c4f2f1e536d66eafa2a5bd0ae4cbb8 +size 303 diff --git a/source/parts/detail/d/diy--eye-bolt-with-2-hex-nuts.json b/source/parts/detail/d/diy--eye-bolt-with-2-hex-nuts.json new file mode 100644 index 0000000000000000000000000000000000000000..5161242aaf5b60d970e2ac6d149004631a1a70a1 --- /dev/null +++ b/source/parts/detail/d/diy--eye-bolt-with-2-hex-nuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b4c524a850cd455ebc232b9e6a3e6246617db41b98f19091a441065473fb372 +size 363 diff --git a/source/parts/detail/d/diy--kevlar-shock-cord-anchor.json b/source/parts/detail/d/diy--kevlar-shock-cord-anchor.json new file mode 100644 index 0000000000000000000000000000000000000000..2f6b7a125d836945e00b1b50a762c3f8bed392ad --- /dev/null +++ b/source/parts/detail/d/diy--kevlar-shock-cord-anchor.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc71d3b988194f73e0aaf1f70b1b8a7eab9ff13f7820abed22264bcf0694da0 +size 363 diff --git a/source/parts/detail/d/diy--micro-screw-eye.json b/source/parts/detail/d/diy--micro-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..029e9cc2e2b3750f19df9e3e989ce3120b9a294d --- /dev/null +++ b/source/parts/detail/d/diy--micro-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef30d00b0dd8526cb3565d625d8a0270f49428b5973beb10f3e7aeda7eec002a +size 327 diff --git a/source/parts/detail/d/diy-14-20-eye--whs--nut.json b/source/parts/detail/d/diy-14-20-eye--whs--nut.json new file mode 100644 index 0000000000000000000000000000000000000000..7806ade660bc4753afbb0bf1046dcc7ff6d98687 --- /dev/null +++ b/source/parts/detail/d/diy-14-20-eye--whs--nut.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccaef144d3931600079bbc6f6f9c494fb7d5c65a334fc8020b28afc41a7d0232 +size 363 diff --git a/source/parts/detail/d/diy-14-aircraft-plywood-ring-02500---22500-in.json b/source/parts/detail/d/diy-14-aircraft-plywood-ring-02500---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0927fffef5a56978efbc6d170c7cca3711c464af --- /dev/null +++ b/source/parts/detail/d/diy-14-aircraft-plywood-ring-02500---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da24f719fea4fb2caa1baba2c4f7ad045ce1f0c959de2637c26db8801c94fc1 +size 523 diff --git a/source/parts/detail/d/diy-25-oz-nose-weight.json b/source/parts/detail/d/diy-25-oz-nose-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..ebad7a64fd1cbdd44130329d07c07e947663e462 --- /dev/null +++ b/source/parts/detail/d/diy-25-oz-nose-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7977ae822d60e7b351a8df89af76cec078cc0ac22276cd13142b3978147a361 +size 357 diff --git a/source/parts/detail/d/diy-5-oz-nose-weight.json b/source/parts/detail/d/diy-5-oz-nose-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..bff6f24a6964bac84767ebe3d98dfe62bd497efd --- /dev/null +++ b/source/parts/detail/d/diy-5-oz-nose-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d139aa4aa6bf680fe2f6e76259f64a29ab81121e8b06d5dd56175147396335c2 +size 353 diff --git a/source/parts/detail/d/diy-aircraft-plywood-birch-ring-00000---21250-in.json b/source/parts/detail/d/diy-aircraft-plywood-birch-ring-00000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..496d04f2c43c13f8397d285cfe7d1159cae33f6b --- /dev/null +++ b/source/parts/detail/d/diy-aircraft-plywood-birch-ring-00000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44989213c9d697900f9f317a32f2c5062899709b53cbff17e4b37d866c17462a +size 457 diff --git a/source/parts/detail/d/diy-balsa-ring-00000---21750-in.json b/source/parts/detail/d/diy-balsa-ring-00000---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b216392dabc07a28e08762de99974c3e5611bcb --- /dev/null +++ b/source/parts/detail/d/diy-balsa-ring-00000---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5bd6ffe1806ec40358e6c5f56feee796089cb31560198120e120b012540ff0 +size 436 diff --git a/source/parts/detail/d/diy-balsa-ring-07500---21750-in.json b/source/parts/detail/d/diy-balsa-ring-07500---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..189d1326fc558d07d126a9ce1d95909a4f4d5206 --- /dev/null +++ b/source/parts/detail/d/diy-balsa-ring-07500---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909ff6aff1359bd85253b12bab66d73aedf9221f9f4ca5d762516727d87408b1 +size 436 diff --git a/source/parts/detail/d/diy-conical-transition.json b/source/parts/detail/d/diy-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..a71a6540a94d597c97d06730862917dc26fb5259 --- /dev/null +++ b/source/parts/detail/d/diy-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fa3a3e7d55c713fa05233093865e989b6ce969dfb1f420ce79ffb62feccc82 +size 593 diff --git a/source/parts/detail/d/diy-dura-lar-streamer--mylar-streamer-00020-in.json b/source/parts/detail/d/diy-dura-lar-streamer--mylar-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..25bf5fa950442ca870525ba5643cbad71a2b7c70 --- /dev/null +++ b/source/parts/detail/d/diy-dura-lar-streamer--mylar-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24bf883032deed5c7942f92707b6cf37ffcabdfba94d3d041a68a43d6fac3a7 +size 433 diff --git a/source/parts/detail/d/diy-eye-hook-4.json b/source/parts/detail/d/diy-eye-hook-4.json new file mode 100644 index 0000000000000000000000000000000000000000..d80b94978d9333376087b62d621aca0545eb4a0a --- /dev/null +++ b/source/parts/detail/d/diy-eye-hook-4.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7c568c000c2ea832c91eb2a14473275ca972e7a553b7d451a85e826d9893105 +size 327 diff --git a/source/parts/detail/d/diy-hardwood-tube-coupler-maple-hard-ring-00000---11400-in.json b/source/parts/detail/d/diy-hardwood-tube-coupler-maple-hard-ring-00000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e68811b806a38129ecfebf329985e0074797a3eb --- /dev/null +++ b/source/parts/detail/d/diy-hardwood-tube-coupler-maple-hard-ring-00000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e763a10cd107e37c996dc1433c5423bad664060c6f087bb8d7edce6f8c732ff6 +size 544 diff --git a/source/parts/detail/d/diy-hex-bolt-025-in-x-40-in.json b/source/parts/detail/d/diy-hex-bolt-025-in-x-40-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ccb1a5eb3d59e1ec5fd3abe55de03f5c23982a65 --- /dev/null +++ b/source/parts/detail/d/diy-hex-bolt-025-in-x-40-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361346f049691b9964d47e70df0bb7fdf92ac5e7653f1748cb535874d3a253ce +size 385 diff --git a/source/parts/detail/d/diy-nose-cone-base-with-wood-screws-116-ply-with-3-round-head-wood-screws.json b/source/parts/detail/d/diy-nose-cone-base-with-wood-screws-116-ply-with-3-round-head-wood-screws.json new file mode 100644 index 0000000000000000000000000000000000000000..a3223a546938f26d42f23bdf3acd8d24ef09ad3e --- /dev/null +++ b/source/parts/detail/d/diy-nose-cone-base-with-wood-screws-116-ply-with-3-round-head-wood-screws.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62c153dbbec9ab78fed545c651d3117883ceff375c4d915ad041c942bbf807a +size 569 diff --git a/source/parts/detail/d/diy-paper-ring-20420---21750-in.json b/source/parts/detail/d/diy-paper-ring-20420---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f625622aa5687e2ac78f2710716cf0e7fca7895f --- /dev/null +++ b/source/parts/detail/d/diy-paper-ring-20420---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c58787fe4e858a7f27bfa568eb707246ddc2aa9c027b868ce868b1a2ea6e58 +size 404 diff --git a/source/parts/detail/d/diy-paper-ring-22170---22570-in.json b/source/parts/detail/d/diy-paper-ring-22170---22570-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1c0e97bad37b77c0d1d867a343d49afbc230c21 --- /dev/null +++ b/source/parts/detail/d/diy-paper-ring-22170---22570-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e556ac26dda727e183315c2419b05321062d5c3ffaab1af88d7c3d56781a255 +size 436 diff --git a/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00010-in.json b/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..723a54d0630128ac313b55a3249efe078eee7163 --- /dev/null +++ b/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bb99bd7df66a1fd898cc605f741fc67b3ed24dd3a2fb2f84d6720614efa8d7 +size 447 diff --git a/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00020-in.json b/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c31a061fc4b78d8803f269146cca19075e05ed2c --- /dev/null +++ b/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af33fdad4be75f44ce864c93d86c11c42a06c178a20a7715bddfea70fcf59497 +size 447 diff --git a/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00030-in.json b/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58d4224799cd0ac864d67c5a91d68655c8be76c5 --- /dev/null +++ b/source/parts/detail/d/diy-polyethylene-ldpe-streamer-00030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e4149f01cb68f1af457d26141762b46f75b053ac8d6e02dc88179905c0fd3f8 +size 447 diff --git a/source/parts/detail/d/diy-screw-eye-212.json b/source/parts/detail/d/diy-screw-eye-212.json new file mode 100644 index 0000000000000000000000000000000000000000..f0ab14b5f45c8e7a73b4522d6d72d59432520db2 --- /dev/null +++ b/source/parts/detail/d/diy-screw-eye-212.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60488172baaaf55df8756794f769b9bbaefba1ac3eb7e56698dca7b7dcf01139 +size 339 diff --git a/source/parts/detail/d/diy-screw-eye-4.json b/source/parts/detail/d/diy-screw-eye-4.json new file mode 100644 index 0000000000000000000000000000000000000000..fdc8fcfffe20fed63c5342c1ff9ff1b57191aff6 --- /dev/null +++ b/source/parts/detail/d/diy-screw-eye-4.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff0c41941da5c7cdb4686f32ea5b1f573fb9b527c5d0e6608500d8fd3a023da +size 331 diff --git a/source/parts/detail/d/diy.json b/source/parts/detail/d/diy.json new file mode 100644 index 0000000000000000000000000000000000000000..106063cd51bf94342ddaeea292d13bdde44d5aae --- /dev/null +++ b/source/parts/detail/d/diy.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f1018b8e6387afb1592553bbef7d20e1f3382af2bc05a32873335b972a932c3 +size 246 diff --git a/source/parts/detail/d/dowel-maple-hard-ring-00000---03750-in.json b/source/parts/detail/d/dowel-maple-hard-ring-00000---03750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b273e1508fc89be5eb402bed6a07fad2d1445d90 --- /dev/null +++ b/source/parts/detail/d/dowel-maple-hard-ring-00000---03750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eaa15b798bd6147ef368628626b3a9b6374818ae5f59d7d7f0e6b391cb67e3a +size 461 diff --git a/source/parts/detail/d/dr-zooch-balsa-ring-00000---07150-in.json b/source/parts/detail/d/dr-zooch-balsa-ring-00000---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4db0fc75f730cd0196c4a9bcff2c90d8698b3c78 --- /dev/null +++ b/source/parts/detail/d/dr-zooch-balsa-ring-00000---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473b0a965061e7ce35a3f3a3e5a8441982ff3567e54ead1918c2d81a6eb4039d +size 424 diff --git a/source/parts/detail/d/dr-zooch-balsa-ring-00000---12500-in.json b/source/parts/detail/d/dr-zooch-balsa-ring-00000---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93e44e68d0ebd7ea4cea41e2f0877b6e3a7e74cb --- /dev/null +++ b/source/parts/detail/d/dr-zooch-balsa-ring-00000---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0bf3ba56ee3c96be196e36c4a82099cd89e39c330ad6715aea86dbdebd9951 +size 424 diff --git a/source/parts/detail/d/dr-zooch-conical-transition.json b/source/parts/detail/d/dr-zooch-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..eccaf6d6b69079abd2809ff74e175ad6d3a416b3 --- /dev/null +++ b/source/parts/detail/d/dr-zooch-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ef26ca4e6603d3f4688772321e953bcd155fe14a9b0974e5413be6e7f049c8 +size 586 diff --git a/source/parts/detail/d/dr-zooch-powerseries-transition.json b/source/parts/detail/d/dr-zooch-powerseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..fd9b3ab3b1c7c62f5336cc8a76d878aa02bf0ccb --- /dev/null +++ b/source/parts/detail/d/dr-zooch-powerseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6fdd921c5e53aa979e2692a7d32e09f057c63ff1f4d79e62d0eef382979700 +size 599 diff --git a/source/parts/detail/d/dragonworks-shockcord-1in-12ft-nylon-loop.json b/source/parts/detail/d/dragonworks-shockcord-1in-12ft-nylon-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..8aba675b39cc3998cbd2c05c10a897dbb175b076 --- /dev/null +++ b/source/parts/detail/d/dragonworks-shockcord-1in-12ft-nylon-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c661c3b179e00c6f8d8ccbd2f447aa8a13035d7aa396af669db58fb1116f740 +size 433 diff --git a/source/parts/detail/d/duracell-9-volt-alkaline-battery-9-volt-alkaline-battery.json b/source/parts/detail/d/duracell-9-volt-alkaline-battery-9-volt-alkaline-battery.json new file mode 100644 index 0000000000000000000000000000000000000000..224c83fec1584f861e1b3737e1ac4298c2f8ca2a --- /dev/null +++ b/source/parts/detail/d/duracell-9-volt-alkaline-battery-9-volt-alkaline-battery.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa6027e2afda6bcfc56efe005bfc01bb3341c08c02718e37486395028f150170 +size 493 diff --git a/source/parts/detail/d/duracell.json b/source/parts/detail/d/duracell.json new file mode 100644 index 0000000000000000000000000000000000000000..5ad94e27b7ba6d8f2f6c7244a2045d70ab434691 --- /dev/null +++ b/source/parts/detail/d/duracell.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb2713473f70908f6a05a1e5e7382544d764edc087a994ed815527f6b2cf3d45 +size 261 diff --git a/source/parts/detail/d/dynacom-g10-fiberglass-ring-20000---21250-in.json b/source/parts/detail/d/dynacom-g10-fiberglass-ring-20000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49b84727387858628c740ed6d2d08b8942c5c414 --- /dev/null +++ b/source/parts/detail/d/dynacom-g10-fiberglass-ring-20000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e51663991d2d1085a0e380b8859a5970e2bb8459ecad0e82e20f8ed4a386627 +size 501 diff --git a/source/parts/detail/e/eb-10-eng-block-bt-105-paper-ring-03290---04220-in.json b/source/parts/detail/e/eb-10-eng-block-bt-105-paper-ring-03290---04220-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3020d04208e76d674e90b2f1d6cee3827233382a --- /dev/null +++ b/source/parts/detail/e/eb-10-eng-block-bt-105-paper-ring-03290---04220-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2fb1a03fa35131c024e8875dacb3342eeca8e82eeebd8922599df9d18bc7fc +size 516 diff --git a/source/parts/detail/e/eggfinder-rocketry-eftrs-eggfinder-trs.json b/source/parts/detail/e/eggfinder-rocketry-eftrs-eggfinder-trs.json new file mode 100644 index 0000000000000000000000000000000000000000..4fa616aa78cd4dcaca387529d1ecfe5b07950d60 --- /dev/null +++ b/source/parts/detail/e/eggfinder-rocketry-eftrs-eggfinder-trs.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:238ff91cbd5dfd72b9cb68b02f649e36492dd753ada40939170d24fed92ab288 +size 421 diff --git a/source/parts/detail/e/elliptical-transition.json b/source/parts/detail/e/elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..629d3dbbf07add205d79d17a3a5d7b3f4eff6e7a --- /dev/null +++ b/source/parts/detail/e/elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f562efe997e3e08ff35ccda8ccc77152163b5f708f3669094a8a06700a0d6bd0 +size 629 diff --git a/source/parts/detail/e/eng-block-bt-50-paper-ring-07360---09500-in.json b/source/parts/detail/e/eng-block-bt-50-paper-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ad8c02949cbbbb19fa1dec632087fb870247132 --- /dev/null +++ b/source/parts/detail/e/eng-block-bt-50-paper-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3ec924ddf677e728333044906ce7f4608b1b9b8833445f963aef908bc5f0ccd +size 454 diff --git a/source/parts/detail/e/eng-hook-retainer-tube-bt-50-sl-paper-ring-09760---10020-in.json b/source/parts/detail/e/eng-hook-retainer-tube-bt-50-sl-paper-ring-09760---10020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..371c8c5ee07bd6ca4dc246db770e369d90776ddc --- /dev/null +++ b/source/parts/detail/e/eng-hook-retainer-tube-bt-50-sl-paper-ring-09760---10020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6591c00b48d589e37b0a011688199b99e4949cab3919d51b51f1668c054b554f +size 562 diff --git a/source/parts/detail/e/eng-hook-retainer-tube-bt-50-sl-paper-ring-12690---10020-in.json b/source/parts/detail/e/eng-hook-retainer-tube-bt-50-sl-paper-ring-12690---10020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0c77e8800a11a9381f1899687fcd29495bb22e8 --- /dev/null +++ b/source/parts/detail/e/eng-hook-retainer-tube-bt-50-sl-paper-ring-12690---10020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03119848360d994997eac71d5068b8327bc200e4bc9b30028f67a8c84da6102 +size 563 diff --git a/source/parts/detail/e/entacore-aim120--entacore-aim-120-usb.json b/source/parts/detail/e/entacore-aim120--entacore-aim-120-usb.json new file mode 100644 index 0000000000000000000000000000000000000000..de1f6ec9720931273a4d67fdfb3d17d4be3398fd --- /dev/null +++ b/source/parts/detail/e/entacore-aim120--entacore-aim-120-usb.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7b5a1be0567c7b1b7f5dc3fddb9b62277b3e4ddbbee4f65afa2e3fa76cfeca +size 415 diff --git a/source/parts/detail/e/estes--14-rubber-shock-cord.json b/source/parts/detail/e/estes--14-rubber-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..b2da3f827c65dbcc6b27859bcc43e04c3c7b24f5 --- /dev/null +++ b/source/parts/detail/e/estes--14-rubber-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c475695ea5fab3abd27ca769047c8aa03a23b3256b37c578ad57fcc5aae2c6 +size 361 diff --git a/source/parts/detail/e/estes--18-rubber-band.json b/source/parts/detail/e/estes--18-rubber-band.json new file mode 100644 index 0000000000000000000000000000000000000000..bcba63a9a9600dbf10e5ea4427858b30be4931ef --- /dev/null +++ b/source/parts/detail/e/estes--18-rubber-band.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e266bc2224f7f9e59b05f61e3349cc8419462de0f7d6ee02756eaa211a657811 +size 337 diff --git a/source/parts/detail/e/estes--engine-hook-e.json b/source/parts/detail/e/estes--engine-hook-e.json new file mode 100644 index 0000000000000000000000000000000000000000..5a2575a2d11f403bf1d4bdf1106cff0a121cb7f5 --- /dev/null +++ b/source/parts/detail/e/estes--engine-hook-e.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc8fec56815a4401a7c33d988254be38ffa5861c53e5a741bf07a9f3a9ae1ba7 +size 327 diff --git a/source/parts/detail/e/estes--ring-00000---00000-in.json b/source/parts/detail/e/estes--ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb320c27ad969e7d99aabbb59c8047cf32fc6f5e --- /dev/null +++ b/source/parts/detail/e/estes--ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0f09af5c3a7ab2130731bbe7abe4604bfa45d9400039b79a9e4be2047ad8fa2 +size 379 diff --git a/source/parts/detail/e/estes--screw-eye-small.json b/source/parts/detail/e/estes--screw-eye-small.json new file mode 100644 index 0000000000000000000000000000000000000000..7bdd11000a01a577f34ebe300f334911b903f3ae --- /dev/null +++ b/source/parts/detail/e/estes--screw-eye-small.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9838955e8b57b95db0f36b3d8496c719627ff9273d4160b21cba8a884fa7720 +size 335 diff --git a/source/parts/detail/e/estes--shock-cord-18in.json b/source/parts/detail/e/estes--shock-cord-18in.json new file mode 100644 index 0000000000000000000000000000000000000000..bca86966f1e4114af837821970a9e358114532ac --- /dev/null +++ b/source/parts/detail/e/estes--shock-cord-18in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4878aae9ad3325f4fb78b92faca03007a0dfaddda3f919cb7c621dcf5c3294c9 +size 335 diff --git a/source/parts/detail/e/estes-035021-standard-70mm-engine-hook.json b/source/parts/detail/e/estes-035021-standard-70mm-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..52580a8bd59b2948d1ee0cb9769f4b89b1336d89 --- /dev/null +++ b/source/parts/detail/e/estes-035021-standard-70mm-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b14e52a4b53c6fda001f222184b20cfb9478b002a9644ad3818d43c1d183be2 +size 421 diff --git a/source/parts/detail/e/estes-035021-standard-size.json b/source/parts/detail/e/estes-035021-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..98086268c1401a5bbdd73c66861546fb302e2c3b --- /dev/null +++ b/source/parts/detail/e/estes-035021-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faf58fcf314e5f5aad1b01b99f54d8ae9969599e8d88fa80208db36dac39b2ab +size 373 diff --git a/source/parts/detail/e/estes-035022-e-95mm-engine-hook.json b/source/parts/detail/e/estes-035022-e-95mm-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..62f1123a72e33d28b25c1a8e4738fd9b7258d540 --- /dev/null +++ b/source/parts/detail/e/estes-035022-e-95mm-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5f083aaad2aca45f305f85bd76878fb4bebc7513945488cb08fd7c09b3ee31 +size 401 diff --git a/source/parts/detail/e/estes-035022-e-engine-hook.json b/source/parts/detail/e/estes-035022-e-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..55734f4c8f2db599ce3dba3853d38a0f2e7d0d13 --- /dev/null +++ b/source/parts/detail/e/estes-035022-e-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115763188bc7d69045ea1e51039c89fc906f30cebb93d3737d005173f5dc7ae4 +size 373 diff --git a/source/parts/detail/e/estes-035022-e-size.json b/source/parts/detail/e/estes-035022-e-size.json new file mode 100644 index 0000000000000000000000000000000000000000..2246105e2f54b961d9bd3e3e40d40cb4cb74e487 --- /dev/null +++ b/source/parts/detail/e/estes-035022-e-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e16910e4ca0dc646997f3eedec454218933f13ac9a277d15077cf646b6dd2d4 +size 345 diff --git a/source/parts/detail/e/estes-035023-mini-engine-hook.json b/source/parts/detail/e/estes-035023-mini-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..252fdbc3f484c538716efa8d31c1776e5db98df8 --- /dev/null +++ b/source/parts/detail/e/estes-035023-mini-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcf78eefe06044c74402d3dbc7dd0e9493919d4926ce1a64dbdea4b86aeb4be6 +size 385 diff --git a/source/parts/detail/e/estes-038251-screw-eye-large.json b/source/parts/detail/e/estes-038251-screw-eye-large.json new file mode 100644 index 0000000000000000000000000000000000000000..69a8f2820fdccc21f2c6cfbdff6a69fca73d649f --- /dev/null +++ b/source/parts/detail/e/estes-038251-screw-eye-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005aa39182f9080bbccd082abaa8381cfc3eb8968e7bf36171cba850c996970a +size 381 diff --git a/source/parts/detail/e/estes-038251-screw-eye.json b/source/parts/detail/e/estes-038251-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..c00b2d7671e1d63828c9fa23459202a7f227b44c --- /dev/null +++ b/source/parts/detail/e/estes-038251-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:367cedf9b01bbe124f774408201a27f55252247fe5a7d0f60a733dcabf532330 +size 357 diff --git a/source/parts/detail/e/estes-038251-small-screw-eye.json b/source/parts/detail/e/estes-038251-small-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..a576aaa858f012f8879eb03c0576cca9b05ac206 --- /dev/null +++ b/source/parts/detail/e/estes-038251-small-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e77304e21528d2742a660c645f5726342cd5d604ef29d130bb97201796f2c2f +size 381 diff --git a/source/parts/detail/e/estes-038363-14-flat-rubber-shock-cord.json b/source/parts/detail/e/estes-038363-14-flat-rubber-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..2a3be3cee5cd5d592a848cf2e2ee022c9ef87a3b --- /dev/null +++ b/source/parts/detail/e/estes-038363-14-flat-rubber-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea20aa3488fb42372dd7dbeb129aea0116e16d784ad96a6e092ff7b7adcec7ea +size 428 diff --git a/source/parts/detail/e/estes-038363-14-rubber-shock-cord.json b/source/parts/detail/e/estes-038363-14-rubber-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..f24e48b3f167896826158b652c2ca5ba26c6be0d --- /dev/null +++ b/source/parts/detail/e/estes-038363-14-rubber-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5bdc8fe839f74020a595e7af6e1b5d1afb50916295aaf7a602d92e1cf0cc7c9 +size 407 diff --git a/source/parts/detail/e/estes-038363-shock-cord---48.json b/source/parts/detail/e/estes-038363-shock-cord---48.json new file mode 100644 index 0000000000000000000000000000000000000000..174670d113684cdbadef57177636e0c823a8660f --- /dev/null +++ b/source/parts/detail/e/estes-038363-shock-cord---48.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b9aa4169a6269da00d763e281077c9c8e3b1c5650573c43a47c549987aed76 +size 385 diff --git a/source/parts/detail/e/estes-038365-shock-cord-12in.json b/source/parts/detail/e/estes-038365-shock-cord-12in.json new file mode 100644 index 0000000000000000000000000000000000000000..e3e736cb5a04f1acbf8ca500146d922f6a9d6216 --- /dev/null +++ b/source/parts/detail/e/estes-038365-shock-cord-12in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a1d623821c71350686ac89916d7f3317f1241298619a5edb8f668cb0ad5769 +size 381 diff --git a/source/parts/detail/e/estes-038367-18-elastic-shock-cord-18-long.json b/source/parts/detail/e/estes-038367-18-elastic-shock-cord-18-long.json new file mode 100644 index 0000000000000000000000000000000000000000..638e883316bd42b12d7024be23dbc8272308e96b --- /dev/null +++ b/source/parts/detail/e/estes-038367-18-elastic-shock-cord-18-long.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aa9b836e19e83e8716166f64e269a14c492d78e61e669ed48705a24fe481f8a +size 447 diff --git a/source/parts/detail/e/estes-038367-18-rubber-shock-cord.json b/source/parts/detail/e/estes-038367-18-rubber-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..fe799582f44b27335287326d8194ae8b6f62e6db --- /dev/null +++ b/source/parts/detail/e/estes-038367-18-rubber-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4cab6193662284f34fd7f32cb203a08420b89147b21db8778dd363814728953 +size 407 diff --git a/source/parts/detail/e/estes-038367-shock-cord---24.json b/source/parts/detail/e/estes-038367-shock-cord---24.json new file mode 100644 index 0000000000000000000000000000000000000000..f9df77e30b5dfe4e3f8508438faa6be27a83dcc2 --- /dev/null +++ b/source/parts/detail/e/estes-038367-shock-cord---24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5db8d9893ad321a2199d94cf1ce20a904f07b4c429cffb08a29147cd951f893 +size 385 diff --git a/source/parts/detail/e/estes-038369-14-x-30-flat-rubber-shock-cord.json b/source/parts/detail/e/estes-038369-14-x-30-flat-rubber-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..6d756e7f2ae62766d7f690bfed32aed43fcfc5fd --- /dev/null +++ b/source/parts/detail/e/estes-038369-14-x-30-flat-rubber-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7850e089e5106e091e23d6f6c483999a9d2a421dc9d9213d335879aee04abc +size 451 diff --git a/source/parts/detail/e/estes-038370-14-elastic-shock-cord.json b/source/parts/detail/e/estes-038370-14-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..7945fa9c0cb3157ed35c8d3f92ccde40c40fd0cc --- /dev/null +++ b/source/parts/detail/e/estes-038370-14-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd7a10ae8e7645c092dd70638d99fa7e9c653d1a7cb87efd72ba73ab496f4ada +size 432 diff --git a/source/parts/detail/e/estes-038378-shock-cord.json b/source/parts/detail/e/estes-038378-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..df169c0c597847cbdbed6a9901f66718840f45bb --- /dev/null +++ b/source/parts/detail/e/estes-038378-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e38f3fe2efb5c7b6aff69287305283c70df3a03bc448e6edf3dbbf4b91aff8d +size 361 diff --git a/source/parts/detail/e/estes-072412-motor-retainer.json b/source/parts/detail/e/estes-072412-motor-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..ab6837b5b5e0d9cdb698593db2856f9e4f7c5402 --- /dev/null +++ b/source/parts/detail/e/estes-072412-motor-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f06946e3d6bf83c52272c947569b0530f97edbe223ff1d56bb5a043d1db48f8f +size 377 diff --git a/source/parts/detail/e/estes-072871-shock-cord-anchor.json b/source/parts/detail/e/estes-072871-shock-cord-anchor.json new file mode 100644 index 0000000000000000000000000000000000000000..2978e4322c833ad80247d04486a32074f5fe8808 --- /dev/null +++ b/source/parts/detail/e/estes-072871-shock-cord-anchor.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c88f801f9c6d6ae20d9587524e5774e927c3d1a76633c8e996c5c9e3ed247793 +size 389 diff --git a/source/parts/detail/e/estes-084445-scm-50.json b/source/parts/detail/e/estes-084445-scm-50.json new file mode 100644 index 0000000000000000000000000000000000000000..2f33f93d71cbbe5b907244c6623f3dd609169ea9 --- /dev/null +++ b/source/parts/detail/e/estes-084445-scm-50.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b089d60ae2a6c367bb99422cfa76646a98770bbf1203245444f54d54a387595c +size 345 diff --git a/source/parts/detail/e/estes-085705-clay-pat.json b/source/parts/detail/e/estes-085705-clay-pat.json new file mode 100644 index 0000000000000000000000000000000000000000..3e3c6f5b5a7b18890f39bf1be03f651f11353fd9 --- /dev/null +++ b/source/parts/detail/e/estes-085705-clay-pat.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52fa11d0e24c178d85d41f638ed3dd2e60c50ffa90553fc4334fb4239173c6a6 +size 354 diff --git a/source/parts/detail/e/estes-085736-14-x-24-flat-elastic-shock-cord.json b/source/parts/detail/e/estes-085736-14-x-24-flat-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..694e34cd93246fc4f01f84d3cd78bee1a41c5850 --- /dev/null +++ b/source/parts/detail/e/estes-085736-14-x-24-flat-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a684484eda48b3e437c3c21a2365fe2918447b8896e0685617537a1f0bc33150 +size 455 diff --git a/source/parts/detail/e/estes-14-aircraft-plywood-ring-07362---12638-in.json b/source/parts/detail/e/estes-14-aircraft-plywood-ring-07362---12638-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de9205ef14bad7c163656bcfa89bc43473b911de --- /dev/null +++ b/source/parts/detail/e/estes-14-aircraft-plywood-ring-07362---12638-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf15c358aeb2fe874d4acdf5571c5e14d09e8844570c65371634f1947bdb999 +size 487 diff --git a/source/parts/detail/e/estes-14-aircraft-plywood-ring-22640---53450-in.json b/source/parts/detail/e/estes-14-aircraft-plywood-ring-22640---53450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..436a4e9f2be3d7cf80eb187cbfb1d9de6698001e --- /dev/null +++ b/source/parts/detail/e/estes-14-aircraft-plywood-ring-22640---53450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1e376d77287c549ee8aea02330065cef22914df9e3eb226d51c4f92b5b6f047 +size 509 diff --git a/source/parts/detail/e/estes-18-aircraft-plywood-ring-07362---12638-in.json b/source/parts/detail/e/estes-18-aircraft-plywood-ring-07362---12638-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c2ab39ecf4cde801204ef46e2b0acc8fadb4bd1 --- /dev/null +++ b/source/parts/detail/e/estes-18-aircraft-plywood-ring-07362---12638-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98743a72ff9352d236f6f0cd02279ce21cb0f7a8c7ce387b4d4bf06da9ba9daf +size 487 diff --git a/source/parts/detail/e/estes-2280-large-screw-eye.json b/source/parts/detail/e/estes-2280-large-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..e7bf61efe46d5dcfbdc71028c285cc81cc1b1510 --- /dev/null +++ b/source/parts/detail/e/estes-2280-large-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dda4864fe09c81bdceb62884d8ecffaada539beb804aeb55a40c3f99d2133a6 +size 373 diff --git a/source/parts/detail/e/estes-2283-screw-eye---small.json b/source/parts/detail/e/estes-2283-screw-eye---small.json new file mode 100644 index 0000000000000000000000000000000000000000..e47e9cbe7164f879a51e473f33eb256e944cb36f --- /dev/null +++ b/source/parts/detail/e/estes-2283-screw-eye---small.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df52bb17bba97ef50baec697e3858d1304fefcf79a06cd9f290f57e800bcf6d +size 381 diff --git a/source/parts/detail/e/estes-24-inch-18-in-elastic-shock-cord.json b/source/parts/detail/e/estes-24-inch-18-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..595e2134f89704ad2c85627868512330a695f877 --- /dev/null +++ b/source/parts/detail/e/estes-24-inch-18-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a41683d42a79820756af5e17b0dc013ff37e735db8a0615c04c2662e293d8d +size 423 diff --git a/source/parts/detail/e/estes-24020-29mm-engine-retainer.json b/source/parts/detail/e/estes-24020-29mm-engine-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..674a85e9341c781cdf1eb693564e086139912466 --- /dev/null +++ b/source/parts/detail/e/estes-24020-29mm-engine-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b030a2775cc14b99ac17fc74719517a73113408de177a3ebfe6034302c5a93 +size 397 diff --git a/source/parts/detail/e/estes-24022-18mm-engine-retainer.json b/source/parts/detail/e/estes-24022-18mm-engine-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..bffa493be8fe08c97e31e893643baa43f9865309 --- /dev/null +++ b/source/parts/detail/e/estes-24022-18mm-engine-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ad6fbe88566801263efe1886677723b7948fefcdcfd62d8110da8e9ef92bce +size 397 diff --git a/source/parts/detail/e/estes-316-aircraft-plywood-ring-09760---35000-in.json b/source/parts/detail/e/estes-316-aircraft-plywood-ring-09760---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d22795eacf4f5bde2abb4f65708b8b3a51ff407 --- /dev/null +++ b/source/parts/detail/e/estes-316-aircraft-plywood-ring-09760---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:645ba0b52b71f798900c58d66d729b5683ea3f1a74b25035c3cf6ff3d3a45ffd +size 490 diff --git a/source/parts/detail/e/estes-316-aircraft-plywood-ring-09760---36250-in.json b/source/parts/detail/e/estes-316-aircraft-plywood-ring-09760---36250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77b4d301fdce2e288966edf49ff3d921b203ab25 --- /dev/null +++ b/source/parts/detail/e/estes-316-aircraft-plywood-ring-09760---36250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2ce6a3547b073842af60bc1cd7b0e2030a8933e537d6e14793b3b970bc9a696 +size 490 diff --git a/source/parts/detail/e/estes-316-aircraft-plywood-ring-14961---40000-in.json b/source/parts/detail/e/estes-316-aircraft-plywood-ring-14961---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7e0e8aae0052d017972ca57e7d9847d403999663 --- /dev/null +++ b/source/parts/detail/e/estes-316-aircraft-plywood-ring-14961---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a81b3cb4a9c87788ec2dc3e0955d3a38bbd27ba2bf52cf7cf64fe7593e0fe63 +size 490 diff --git a/source/parts/detail/e/estes-316-aircraft-plywood-ring-14961---43750-in.json b/source/parts/detail/e/estes-316-aircraft-plywood-ring-14961---43750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ca1aa01f5548c44c7a7d0b3aa014fb1b31eccd4 --- /dev/null +++ b/source/parts/detail/e/estes-316-aircraft-plywood-ring-14961---43750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f928e8907e3822371f4095bfd122296a974f0598b2db1a188e4eb2bfd2fda836 +size 490 diff --git a/source/parts/detail/e/estes-316-aircraft-plywood-ring-40000---56250-in.json b/source/parts/detail/e/estes-316-aircraft-plywood-ring-40000---56250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a6d8fb3ef69049e3d1897539f2126c9f146b102 --- /dev/null +++ b/source/parts/detail/e/estes-316-aircraft-plywood-ring-40000---56250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:201f075af831f3a44f04b6ed24482f047495cf71d19757093161aead83fc2acd +size 490 diff --git a/source/parts/detail/e/estes-35025-engine-hook-type-eh-2.json b/source/parts/detail/e/estes-35025-engine-hook-type-eh-2.json new file mode 100644 index 0000000000000000000000000000000000000000..d6eb57c6d7e634c7c138f305bc80263b99ae9fd7 --- /dev/null +++ b/source/parts/detail/e/estes-35025-engine-hook-type-eh-2.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72a903cb1a306709e8e715d2096eb44585f42828ea918a12ea0d17793ba7e41 +size 401 diff --git a/source/parts/detail/e/estes-35026-mini-engine-hook-eh-3.json b/source/parts/detail/e/estes-35026-mini-engine-hook-eh-3.json new file mode 100644 index 0000000000000000000000000000000000000000..ef1b63e4487f7d4f41490ab8cf2027ced552efea --- /dev/null +++ b/source/parts/detail/e/estes-35026-mini-engine-hook-eh-3.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8df733c81fe089af1dbdd4ff0aa21d5f9917822a58f9e6f159fa91de16e0113 +size 401 diff --git a/source/parts/detail/e/estes-38252-se-2a---screw-eye.json b/source/parts/detail/e/estes-38252-se-2a---screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..5adb36eaa7d53b244b550ce5def98645e76641c7 --- /dev/null +++ b/source/parts/detail/e/estes-38252-se-2a---screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abce36ccae49d5867a60974a146a6e56a8618f829de7ce1850b2c775f41683ea +size 385 diff --git a/source/parts/detail/e/estes-38365-14-x-12-rubber-shock-cord.json b/source/parts/detail/e/estes-38365-14-x-12-rubber-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..9de9ce456b809d9aa211167b468a2b032fb6b66b --- /dev/null +++ b/source/parts/detail/e/estes-38365-14-x-12-rubber-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6559d37981215e3dd35aaee1c106ad346fe6d8c52dc269de3834181d29a3384b +size 427 diff --git a/source/parts/detail/e/estes-38365-shock-cord---12.json b/source/parts/detail/e/estes-38365-shock-cord---12.json new file mode 100644 index 0000000000000000000000000000000000000000..bfede2bb8b8a94ecdffcaf0eb282c953ae45dfc4 --- /dev/null +++ b/source/parts/detail/e/estes-38365-shock-cord---12.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c15aca7e6643c61a086e5f0f514b0907ce0f7c6b4e7e010d9360a09ce5b3a192 +size 381 diff --git a/source/parts/detail/e/estes-38367-shock-cord---24.json b/source/parts/detail/e/estes-38367-shock-cord---24.json new file mode 100644 index 0000000000000000000000000000000000000000..7f05682da5c8b3463a58101996482d92a80a8a99 --- /dev/null +++ b/source/parts/detail/e/estes-38367-shock-cord---24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea1265b8b27f1238996340a1f8807c1dfaeda67753ea457587fb562c572073b +size 393 diff --git a/source/parts/detail/e/estes-85730-sc-1---18-elastic-shock-cord-18-long.json b/source/parts/detail/e/estes-85730-sc-1---18-elastic-shock-cord-18-long.json new file mode 100644 index 0000000000000000000000000000000000000000..30c3bfc20da3a2c26b9e2caa04444b3c729333ff --- /dev/null +++ b/source/parts/detail/e/estes-85730-sc-1---18-elastic-shock-cord-18-long.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b48488c21fde70433752022988fa82658e5bf2aac51b3f1136b00b35052082e +size 471 diff --git a/source/parts/detail/e/estes-85730-sc-1.json b/source/parts/detail/e/estes-85730-sc-1.json new file mode 100644 index 0000000000000000000000000000000000000000..9ae3f9bd7346155889f2183e8a0325414e882b93 --- /dev/null +++ b/source/parts/detail/e/estes-85730-sc-1.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048d3ad87461041fa89c93b14879569e9b03312a709ae3502cd1be9a2a57e5dd +size 333 diff --git a/source/parts/detail/e/estes-9751-24mm-motor-retainer.json b/source/parts/detail/e/estes-9751-24mm-motor-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..d4abc89dc5b4dd3a2a5acbb4a9331e701f017325 --- /dev/null +++ b/source/parts/detail/e/estes-9751-24mm-motor-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5534872300d0065f0240218ca477db76d245d3c7b8b26c217b28ffb9b10f3ebf +size 389 diff --git a/source/parts/detail/e/estes-aircraft-plywood-birch-ring-12100---15950-in.json b/source/parts/detail/e/estes-aircraft-plywood-birch-ring-12100---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6b287fc714afa882eccecc01a5ac1fe9891e0d6 --- /dev/null +++ b/source/parts/detail/e/estes-aircraft-plywood-birch-ring-12100---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5124c6f296bcd927286f2c7784889fe5554979a53160380d2ec85efb327c14b +size 497 diff --git a/source/parts/detail/e/estes-balsa-ring-00000---07100-in.json b/source/parts/detail/e/estes-balsa-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35444220af413ae8539f383cf1cf494318f4c13b --- /dev/null +++ b/source/parts/detail/e/estes-balsa-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fa548e7b062fac2a435d45b065af2db2191bc27731cad29938583782ab9ad2f +size 444 diff --git a/source/parts/detail/e/estes-balsa-ring-00000---09500-in.json b/source/parts/detail/e/estes-balsa-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..68c2b80587b4ae69bf4f5d07457bc53f8dad2902 --- /dev/null +++ b/source/parts/detail/e/estes-balsa-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5c39a8ac73fad056cea6a24abddb101441a7b1e74274b5da8ddc3c0c9a38b4 +size 449 diff --git a/source/parts/detail/e/estes-balsa-ring-00000---15250-in.json b/source/parts/detail/e/estes-balsa-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..141ce01f9a8610ab2ee570eff405688cd4888449 --- /dev/null +++ b/source/parts/detail/e/estes-balsa-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f071d8651f323b145b9024b64e4975a1256cd4e98bf36a11a18575c3260ff3 +size 444 diff --git a/source/parts/detail/e/estes-balsa-ring-00010---09500-in.json b/source/parts/detail/e/estes-balsa-ring-00010---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b82b34652fd3f6249cd0e66874808a221aa1c182 --- /dev/null +++ b/source/parts/detail/e/estes-balsa-ring-00010---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:282e97cfb58cfa5ce01a1c97005de3f9d90fc6894260fc63f63fbf6703f3b1de +size 444 diff --git a/source/parts/detail/e/estes-balsa-ring-05440---09500-in.json b/source/parts/detail/e/estes-balsa-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..43225ccfe9b83f438cb942fa7335199c14ff6fa8 --- /dev/null +++ b/source/parts/detail/e/estes-balsa-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e22ca00bd3daf2f69cbb41eb8fc17ebff7d185da6cec1fa65b996aa669b8fd +size 455 diff --git a/source/parts/detail/e/estes-balsa-ring-05460---09500-in.json b/source/parts/detail/e/estes-balsa-ring-05460---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a455d2a0947c7b5567dcace71c4fdc54c2a8939 --- /dev/null +++ b/source/parts/detail/e/estes-balsa-ring-05460---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:283323d62572b470d56e0e08ce30d52746153f7faf3aac3c91d27ea13aa2179a +size 441 diff --git a/source/parts/detail/e/estes-balsa-ring-09760---25900-in.json b/source/parts/detail/e/estes-balsa-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2c57028c34023ebc79ea2ee515d56d6b140f0ee --- /dev/null +++ b/source/parts/detail/e/estes-balsa-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee96b1a18592d385cb0938b473cde458418e57dab6e504754e1f0bf1bae113e4 +size 412 diff --git a/source/parts/detail/e/estes-basswood-ring-07362---12638-in.json b/source/parts/detail/e/estes-basswood-ring-07362---12638-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a5a4d76d5595b8096c3c3e33730ac969618a5cd --- /dev/null +++ b/source/parts/detail/e/estes-basswood-ring-07362---12638-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02f880ebdd1aebce7e9709db2dedab520f026dec6adc57aa26bb2c4fd81a1937 +size 453 diff --git a/source/parts/detail/e/estes-basswood-ring-09760---21800-in.json b/source/parts/detail/e/estes-basswood-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2967c5d55fd0c907fdebd77249e5edb945fe7cc2 --- /dev/null +++ b/source/parts/detail/e/estes-basswood-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a52958c4a67a7c2421370234b6506b3be5354cd1d17a52c498bada14d1ae2e5f +size 453 diff --git a/source/parts/detail/e/estes-body-tube-ring-25087---25580-in.json b/source/parts/detail/e/estes-body-tube-ring-25087---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b254ece79979822e632373044a50b14e8fbd83b5 --- /dev/null +++ b/source/parts/detail/e/estes-body-tube-ring-25087---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df5663c1a2f2a14f0d66eb95883af29e51fb748d11925901da8ba971327cee2 +size 413 diff --git a/source/parts/detail/e/estes-carbon-fiber-ring-20200---21500-in.json b/source/parts/detail/e/estes-carbon-fiber-ring-20200---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d2a2c451ab1b2246ee54a69ff6e365e1d52aa20 --- /dev/null +++ b/source/parts/detail/e/estes-carbon-fiber-ring-20200---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:593420969348dbf7b4e38eb19ad36318764e08728d0d5664c97dba2478cb4323 +size 433 diff --git a/source/parts/detail/e/estes-cardboard-ring-00000---12830-in.json b/source/parts/detail/e/estes-cardboard-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..464f4d0846c216ee5ebff66a9e5cbec2061d63de --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed484b6c0c48721a688b2a7ed2a97095e005d6347b3be85ab286d70f5fb18ab7 +size 456 diff --git a/source/parts/detail/e/estes-cardboard-ring-02500---16913-in.json b/source/parts/detail/e/estes-cardboard-ring-02500---16913-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f10fa6d9af069012135bb9b700a2f1159432d953 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-02500---16913-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf76d48ab6aec5cf2c35d650a6851b06aa7b24e1fe584bf5b4da460be5e0106a +size 424 diff --git a/source/parts/detail/e/estes-cardboard-ring-06496---07087-in.json b/source/parts/detail/e/estes-cardboard-ring-06496---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15e1b483ee3c379200422ad2696def906cae409a --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-06496---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a8997f3cc188345910f56a1f1d02ceaa1890fd3891fa0a2ece289f1b2ecd160 +size 460 diff --git a/source/parts/detail/e/estes-cardboard-ring-07360---09500-in.json b/source/parts/detail/e/estes-cardboard-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bcce5a6fbec0ea73ebcfb58ea38d412aa8a69cd9 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3e3bbdf65c12d3df7ea8728d17cea8697f610bddd1bf7d99aba5391db7e991 +size 424 diff --git a/source/parts/detail/e/estes-cardboard-ring-07360---12830-in.json b/source/parts/detail/e/estes-cardboard-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28925d7a7397dfa8c6c0f088c1bfde35034c5f32 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f6987e678ae862b66746cfc61aab8088a5eab8796d7cc59a55084decc4f828 +size 461 diff --git a/source/parts/detail/e/estes-cardboard-ring-07400---09300-in.json b/source/parts/detail/e/estes-cardboard-ring-07400---09300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48297445c13b7f958ec79d2203d3a93d0191560c --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-07400---09300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71afce43511f6348b1ed4c9b96ab5510bb625b54a2878dcfec99692ee5e95e90 +size 462 diff --git a/source/parts/detail/e/estes-cardboard-ring-07400---09450-in.json b/source/parts/detail/e/estes-cardboard-ring-07400---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00d3326f254ed11c3ab51440a96cf3cefd1a46e4 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-07400---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae2bfeb89b4a6d26f07129dba21d3ea489d0c71228d349bf31df4f2ed1473922 +size 461 diff --git a/source/parts/detail/e/estes-cardboard-ring-07500---09500-in.json b/source/parts/detail/e/estes-cardboard-ring-07500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..88dd99b4f217565c95d634197bd8e933b4e72665 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-07500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02e6c2c935bf0b1a0eefa10b2885b20653884a761f1e05b29c1c4373ee0b389f +size 462 diff --git a/source/parts/detail/e/estes-cardboard-ring-09000---11370-in.json b/source/parts/detail/e/estes-cardboard-ring-09000---11370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..97c1a711614054501bfc36969ef1462f432b3cdf --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09000---11370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfbce0ddad6f8b3e2efee1d1d4c3df5149d5cc5fbf6e5acbb076109789ef4cb2 +size 458 diff --git a/source/parts/detail/e/estes-cardboard-ring-09500---15950-in.json b/source/parts/detail/e/estes-cardboard-ring-09500---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ce6516091127e6de36f3d028674d2e6fa50627e --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09500---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dcaf28dea28ef3eefbf33fe3eb17be1a7a5906fffbf233e302ae74729a2347d +size 458 diff --git a/source/parts/detail/e/estes-cardboard-ring-09500---16490-in.json b/source/parts/detail/e/estes-cardboard-ring-09500---16490-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52beb8e14bc69e3faac74fa4b8876a2d98d7d46f --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09500---16490-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9fc50487b42f3f8f5b96cd7523eb64f8316d5e87960b16435485250efe6034 +size 458 diff --git a/source/parts/detail/e/estes-cardboard-ring-09760---12830-in.json b/source/parts/detail/e/estes-cardboard-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..72d12b31d03a25ac430b0904740513b4c2f63729 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02209eb24d7591aa18d5b429b016eb3aa233e9fff81aa4708755e5af04402f76 +size 456 diff --git a/source/parts/detail/e/estes-cardboard-ring-09760---12930-in.json b/source/parts/detail/e/estes-cardboard-ring-09760---12930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4639c5ec42c9ea27147feb07e950caf8f716cbd5 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09760---12930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5975e0fd1efb7c93a5ef490d9a94a6fdf1e9a24c912f34b403160999b3c43a3f +size 422 diff --git a/source/parts/detail/e/estes-cardboard-ring-09760---15900-in.json b/source/parts/detail/e/estes-cardboard-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a83799b923b4313f57c8379f8103b8695af82c74 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f4e931a8359ed175c4e44dce477a29832b3862c2f52da6d17e296d8172eb98 +size 424 diff --git a/source/parts/detail/e/estes-cardboard-ring-09760---25880-in.json b/source/parts/detail/e/estes-cardboard-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2dc6fb6d906a88c7ca7b812dd7b33ee07741d69b --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0aa993374df2734f9da4450d1e4a30545ad488a6900713b7fafea5909f7f742 +size 424 diff --git a/source/parts/detail/e/estes-cardboard-ring-09780---29000-in.json b/source/parts/detail/e/estes-cardboard-ring-09780---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..204aa1f5a2ae1902d052899beff244472cd6ba29 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09780---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:711427ba76394ddee49d78fe7336e6f1a9f2029162483daabeb0e626beeed187 +size 458 diff --git a/source/parts/detail/e/estes-cardboard-ring-09800---12600-in.json b/source/parts/detail/e/estes-cardboard-ring-09800---12600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b0fbe92a2528682029bcb7cdb81a09db25de6a5f --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09800---12600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7a43930309016b69e9e1ebdcc5b8ff78616f0ab76a00efceea21cb57fa4acd7 +size 462 diff --git a/source/parts/detail/e/estes-cardboard-ring-09800---12638-in.json b/source/parts/detail/e/estes-cardboard-ring-09800---12638-in.json new file mode 100644 index 0000000000000000000000000000000000000000..34b03cee8f7b4146a6133582cd00d9baacc0e454 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-09800---12638-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f6fd1622fa0e0f7f01cd3589878fc07a71d9ce102bd37e374e44fe4279fa270 +size 456 diff --git a/source/parts/detail/e/estes-cardboard-ring-10600---13130-in.json b/source/parts/detail/e/estes-cardboard-ring-10600---13130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e93e1f67ff5286c6d9e1d104a54207b92ca75a7f --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-10600---13130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87090eaa279e5ad18bedb2bf07f4970a5bd18b49b4352ff6d90b423ce1211b27 +size 437 diff --git a/source/parts/detail/e/estes-cardboard-ring-13250---15950-in.json b/source/parts/detail/e/estes-cardboard-ring-13250---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7c346c73d0cb06252dc31e670c617555c117340 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-13250---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3d8d5b1fc557fc9560c90be9d6df2514f1954151e97d83e5ea32f1268b0a50 +size 456 diff --git a/source/parts/detail/e/estes-cardboard-ring-16339---16535-in.json b/source/parts/detail/e/estes-cardboard-ring-16339---16535-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0e05e12519fa86bfa3ddc9fb208f30dc6fe93a53 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-16339---16535-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b87ff91b6bf72508082b13cc319d50903527b16f93c9ed38ff0c1fbe4a32a20 +size 456 diff --git a/source/parts/detail/e/estes-cardboard-ring-35500---37331-in.json b/source/parts/detail/e/estes-cardboard-ring-35500---37331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7c49e4e8ce5414175c7b28ffcef959a7006c915 --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-35500---37331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d9e75c2a00bcd5232fe1842900dfa9834a0cd1aadd0c3f4d4c096c2bb670a2 +size 424 diff --git a/source/parts/detail/e/estes-cardboard-ring-55400---75100-in.json b/source/parts/detail/e/estes-cardboard-ring-55400---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..697ec13c3f4881bc6e19a48dccf10574d808740d --- /dev/null +++ b/source/parts/detail/e/estes-cardboard-ring-55400---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7050b9c1a123875f95d3499ab36fc694bb7bca36eee4cf40058b725d27262245 +size 456 diff --git a/source/parts/detail/e/estes-conical-transition.json b/source/parts/detail/e/estes-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..162d822b9aeea727ae22f390728f89c77968965c --- /dev/null +++ b/source/parts/detail/e/estes-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f905cc05d0f63baca709e837adddd1a6d83e1572ff580de69ed867c45305885 +size 574 diff --git a/source/parts/detail/e/estes-custom-ring-04400---05400-in.json b/source/parts/detail/e/estes-custom-ring-04400---05400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b30b3cd8626d10ed9e4da527bf69bd994fbe1e8c --- /dev/null +++ b/source/parts/detail/e/estes-custom-ring-04400---05400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e2f5b773b9dbff1a289621b000ea9d5e3ea60b03830601f25c71b0048afeb3 +size 447 diff --git a/source/parts/detail/e/estes-elliptical-transition.json b/source/parts/detail/e/estes-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..e22de3105f1e5f013610553ff694e87bf27a441f --- /dev/null +++ b/source/parts/detail/e/estes-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fc758f1182960676866a4f2fbf0b8aadf5e337ab75666bdab1cd966cbd00742 +size 586 diff --git a/source/parts/detail/e/estes-engine-hook-24-mm-e-length.json b/source/parts/detail/e/estes-engine-hook-24-mm-e-length.json new file mode 100644 index 0000000000000000000000000000000000000000..4e619453d7bff6dcfd4092b3b841e2d86965ae1f --- /dev/null +++ b/source/parts/detail/e/estes-engine-hook-24-mm-e-length.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8204c8747236365cd7e3e3d8c6675e165ab0c973906a154a48316086c9b36be3 +size 401 diff --git a/source/parts/detail/e/estes-engine-hook-standard-size.json b/source/parts/detail/e/estes-engine-hook-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..8b2e9ad423fa8a75870bcb8c37d61426cf54a975 --- /dev/null +++ b/source/parts/detail/e/estes-engine-hook-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3211ad25b5a2d235953bb3f0d4a108bc181d1d4ae33446d27442223aaebac79 +size 393 diff --git a/source/parts/detail/e/estes-engine-retainer-29mm.json b/source/parts/detail/e/estes-engine-retainer-29mm.json new file mode 100644 index 0000000000000000000000000000000000000000..ee6df56eaef0f75aad260fa2d8ef8768a2cd5b64 --- /dev/null +++ b/source/parts/detail/e/estes-engine-retainer-29mm.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57845f471def1a9a9e254441500178f17ddec268676d581bb8609c37176f8600 +size 373 diff --git a/source/parts/detail/e/estes-fiber-ring-09760---15900-in.json b/source/parts/detail/e/estes-fiber-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d815ba6cb1ffcd8a06baf40bbc0a005ab1c785f4 --- /dev/null +++ b/source/parts/detail/e/estes-fiber-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:329c8308cb351d532036e912c49c21bd6ef78516803b5e3dc5f6d6b401ecbf1d +size 412 diff --git a/source/parts/detail/e/estes-fiber-ring-09760---25900-in.json b/source/parts/detail/e/estes-fiber-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ac0c2c499bf6957c980755bd1dec018995ed345 --- /dev/null +++ b/source/parts/detail/e/estes-fiber-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd916cff31626388f6202d932894e51aebcb96a5efa21a8da10ba201cccbde04 +size 444 diff --git a/source/parts/detail/e/estes-fiberglass-ring-20900---25900-in.json b/source/parts/detail/e/estes-fiberglass-ring-20900---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94d81349d7076fbb5e1c6d63457164e52821e5ae --- /dev/null +++ b/source/parts/detail/e/estes-fiberglass-ring-20900---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be471661ee39f4d2bbbbb38e3ea70b18243b273c57f5f72084c651acc77dba1a +size 459 diff --git a/source/parts/detail/e/estes-g10-fiberglass-ring-07000---09500-in.json b/source/parts/detail/e/estes-g10-fiberglass-ring-07000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6790d6905149fd8df606fd9ec55e2540dbf2cc29 --- /dev/null +++ b/source/parts/detail/e/estes-g10-fiberglass-ring-07000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff011436ac9919fa780a2a22bdfb9475ae22622c870ad2f018bcf5baa1303c3d +size 439 diff --git a/source/parts/detail/e/estes-haack-transition.json b/source/parts/detail/e/estes-haack-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..623a2068f13347d13a49d6ffb5ae275084300e74 --- /dev/null +++ b/source/parts/detail/e/estes-haack-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e820c166ae7444bfdc54c87086379815105f16e031ebd164ffebccf3fbdae329 +size 588 diff --git a/source/parts/detail/e/estes-jt-5c-paper-ring-25760---25880-in.json b/source/parts/detail/e/estes-jt-5c-paper-ring-25760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b3d20c445052c2e1481ad2e832eb183fa93fe2a8 --- /dev/null +++ b/source/parts/detail/e/estes-jt-5c-paper-ring-25760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786721ec5a9a08bd27253593d1e286e67c51cedd4ab262d0d697191a33b719e4 +size 473 diff --git a/source/parts/detail/e/estes-jt-80c-paper-ring-25760---25880-in.json b/source/parts/detail/e/estes-jt-80c-paper-ring-25760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31b19950f9d1960a7404f5c2ed346a86f6ef3d41 --- /dev/null +++ b/source/parts/detail/e/estes-jt-80c-paper-ring-25760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f98394ad6afc1671b95edc72dedb9375367f97c93c7ba7d30d45b64ec527f8c +size 472 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-07360---07460-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-07360---07460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a3da76ed9d6239a816094aabed42ba37766bd74 --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-07360---07460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3327cd0825edd1f3bfe6e05a526582d7fea46c039e11a93316284f62ad7f1013 +size 493 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-08850---07100-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-08850---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e16a65e718f694f97544fad14397923b9b1d32f --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-08850---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e59abd10b8055ca742d80e8176be498c0163c7daff20842875e0eeafa80047 +size 472 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-08850---09500-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-08850---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2c648a51cc36d4e6b6c2d54ce0915cec419bc611 --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-08850---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa7d4ef04ce52254771bf35d517c22ba8e5a007dd5ab6cb68edc0907d18eea48 +size 471 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-10000---12800-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-10000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..972b08f096a1478c6cb15b66e8d2bb269d7472fd --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-10000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18959ecc73072243452ce85f3cb771e8b1a639cbe81e952efe5cf530f8718d23 +size 471 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-12160---12830-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-12160---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5edd64b702fad22147e6d37fc40d9191bd638b99 --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-12160---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8deeac825434a2ffdd8f70ae9cca83ada1202596fe7c20dcbf8c8537d13daaf1 +size 471 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-12200---12800-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-12200---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1206e4c03565389887ee3f922ae279673f0b0943 --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-12200---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c024405601d66fe34db98353382e16aee55676f688d3296fcbbbedd6236d44b8 +size 471 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-20000---21800-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-20000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80ff80d5d000abf8df04d17dafdfce5527e8c603 --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-20000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf857b1a8044be467625493676bc5e95b3c5784eb566ee4e6b90d57bbdb2378 +size 439 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-20900---21700-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-20900---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f4225e79c4cae687def2ad6b0b218250c47883ab --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-20900---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb57a06b5339fc584fbe877eb756ee114a0656b12a576d5a5ed7fbb71b245ddc +size 473 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-20900---25900-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-20900---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dc2110476e5e0e5ddf4d3355ae7bba09e660ed30 --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-20900---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc22bfdfb7fcd4c5ff08ef54a63d428cbf053ff89a496d6fe7cfd111f86956e7 +size 471 diff --git a/source/parts/detail/e/estes-kraft-phenolic-ring-24900---25560-in.json b/source/parts/detail/e/estes-kraft-phenolic-ring-24900---25560-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0db79d725a304c953bc4d41f9a487a5d5bc68aa --- /dev/null +++ b/source/parts/detail/e/estes-kraft-phenolic-ring-24900---25560-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001402fcd62176c001debbd42950c9ee6835b2345e542039706886836b56d6f8 +size 471 diff --git a/source/parts/detail/e/estes-lite-ply-ring-00000---11450-in.json b/source/parts/detail/e/estes-lite-ply-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c992c071f732784507e795e088e694010e08585f --- /dev/null +++ b/source/parts/detail/e/estes-lite-ply-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:364000d4070a5ca6d109111ce3a17350dae4424323389ad966ac981ab2dcfee5 +size 455 diff --git a/source/parts/detail/e/estes-lite-ply-ring-05430---16000-in.json b/source/parts/detail/e/estes-lite-ply-ring-05430---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4804e88a45a51ce5c3fda5500b8b55b091f1bc1 --- /dev/null +++ b/source/parts/detail/e/estes-lite-ply-ring-05430---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb1edf1fdbc0c364caec0ebeb117c294ae6efe245995b05f97c6518a7a982c6 +size 421 diff --git a/source/parts/detail/e/estes-lite-ply-ring-07362---15900-in.json b/source/parts/detail/e/estes-lite-ply-ring-07362---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddbef4f8917765bebfd7a65e96552a6d52d458fa --- /dev/null +++ b/source/parts/detail/e/estes-lite-ply-ring-07362---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0a6dd07dee0755676c9bff6781b9d90ded9b8310915afda24d373a21d490fe +size 453 diff --git a/source/parts/detail/e/estes-lite-ply-ring-11450---19400-in.json b/source/parts/detail/e/estes-lite-ply-ring-11450---19400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a33a8d5bae2753442a2193ee8159f80bfa5ccf6 --- /dev/null +++ b/source/parts/detail/e/estes-lite-ply-ring-11450---19400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d43d34cf61c5a273b6c33f92d66fb6ecd8ab65a23e07df440ce2eba79b51b4ea +size 421 diff --git a/source/parts/detail/e/estes-lite-ply-ring-12100---24300-in.json b/source/parts/detail/e/estes-lite-ply-ring-12100---24300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b21d06927f1a4e11f08cf7d3de115e76960b0fa3 --- /dev/null +++ b/source/parts/detail/e/estes-lite-ply-ring-12100---24300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74fca298edafd545485ce55c97888a4099f9740a247b8851f2d645a922846af +size 455 diff --git a/source/parts/detail/e/estes-mat-board-2-ply-ring-05440---12800-in.json b/source/parts/detail/e/estes-mat-board-2-ply-ring-05440---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fd20432e377875385c9f1d4ab6004afff565dc1e --- /dev/null +++ b/source/parts/detail/e/estes-mat-board-2-ply-ring-05440---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ebc542771658e56144599a70f0db039eaaecc626d5403424dda983a610301c8 +size 476 diff --git a/source/parts/detail/e/estes-mat-board-4-ply-ring-07360---15950-in.json b/source/parts/detail/e/estes-mat-board-4-ply-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..364d7bec943236d2a2aee42fb85ae593f4a6359b --- /dev/null +++ b/source/parts/detail/e/estes-mat-board-4-ply-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00950d8bc59742be9a49e9af4dd2d8a1da92f3fd94005fe123ac947d97cdd295 +size 442 diff --git a/source/parts/detail/e/estes-medium-shock-cord-14-inch-flat-rubber-shock.json b/source/parts/detail/e/estes-medium-shock-cord-14-inch-flat-rubber-shock.json new file mode 100644 index 0000000000000000000000000000000000000000..50b817d196013863c1c083e77143300a928a925b --- /dev/null +++ b/source/parts/detail/e/estes-medium-shock-cord-14-inch-flat-rubber-shock.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da48e81858da1e57e1242b2933ecf0f8728568b189bae7f2cdbe01c957ed75a9 +size 467 diff --git a/source/parts/detail/e/estes-mretainer24.json b/source/parts/detail/e/estes-mretainer24.json new file mode 100644 index 0000000000000000000000000000000000000000..3e59a3783786ee0bada7abe34049cdd324ef7b6a --- /dev/null +++ b/source/parts/detail/e/estes-mretainer24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e87db4c9c1a13d31b2edd3997d70eac4d2ef24a8ae638a86981b6d394fa1623 +size 297 diff --git a/source/parts/detail/e/estes-ncw-4.json b/source/parts/detail/e/estes-ncw-4.json new file mode 100644 index 0000000000000000000000000000000000000000..53a68aa53725e8425a6e2cb595d15b5a0745307c --- /dev/null +++ b/source/parts/detail/e/estes-ncw-4.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4dd49573d282026d1d7698b8b51e8e6f888bc86c8bff68d8f8568fcb2369c5 +size 293 diff --git a/source/parts/detail/e/estes-ogive-transition.json b/source/parts/detail/e/estes-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..0f61baeb2f403034d597d57d5d3a569128c11a4c --- /dev/null +++ b/source/parts/detail/e/estes-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d48a6548c8365523ef034be03a52c470a20c3f466deb4b4b7ba3645ba3c7c8bb +size 561 diff --git a/source/parts/detail/e/estes-paper-ring-00000---07098-in.json b/source/parts/detail/e/estes-paper-ring-00000---07098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ec24d317e429195864b02bd36a5c2890898c61f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---07098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a5318a08cd83bb66dee6e9c497abe059f1696b55012567d801ed7ff872df98 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-00000---07100-in.json b/source/parts/detail/e/estes-paper-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b7777f3567b81e0b633c7d8531f628f033d1f94 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16cd7ce16bf5d50d7c964ec31f4d0b82c899c331dd2a31c97568df6e1598b830 +size 453 diff --git a/source/parts/detail/e/estes-paper-ring-00000---07470-in.json b/source/parts/detail/e/estes-paper-ring-00000---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..34e7501c5beab31f7a4b8a4009bd1dabb12b07ac --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd14ff16120078c7cacf963b7024bf66f1de785e236e862456a352a10bf7052 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-00000---09500-in.json b/source/parts/detail/e/estes-paper-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e50477c813ffd405fe70c72a7412cea4ef36b8e5 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:676ed5d899b5216e3f71ffc359ab1bef8bd690bcfd91f8fb57d56d6f85e5b7a1 +size 453 diff --git a/source/parts/detail/e/estes-paper-ring-00000---10000-in.json b/source/parts/detail/e/estes-paper-ring-00000---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ea931a51725c7f3591e94842d725c05f31259b8 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a32e0b6b6f8aacad5be64e04bfcf96130b0e7e23e9f3ef163f076332fae393b +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-00000---12830-in.json b/source/parts/detail/e/estes-paper-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..050a3732d26077d8fc234c31b31f1528a6fe60f6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c90e04926f875d34ead1d0cd4149037580b1a344c3e83b3910d6c96e9f39188 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-00000---12900-in.json b/source/parts/detail/e/estes-paper-ring-00000---12900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..98de991f3d204b267d0c03f2c71dd9e22b73214f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---12900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a02c1f29b1a25b359fe6ac28c3d040316df59e46a39163229ba53ad0e44348 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-00000---25550-in.json b/source/parts/detail/e/estes-paper-ring-00000---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55be5eb43accae1468c6aa5f2d384cc3c14bcf4b --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade78ba614a91ac67b50db9405eb416a8a99dae671945e83b3bf3309f4558cd7 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-00000---25880-in.json b/source/parts/detail/e/estes-paper-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d47bfed92cc11c7d795f26e3adf095f1ed38c592 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57cdf3771f3e775fa0ad536f54bba550c4799768d73faa8b5896eb366b218bf9 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-00010---09500-in.json b/source/parts/detail/e/estes-paper-ring-00010---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0f3ea2ef7f0ca08c37033e653fede344b40fea0 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00010---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95b19aa27581b78c07b523e278cfcc75a116a671372a42f7ec9edd609c4103f8 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-00900---09500-in.json b/source/parts/detail/e/estes-paper-ring-00900---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b28d159ae05ff1d70c23dcf434e03bb23627ee1 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-00900---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:670cde73339f201f1e8db51ff02c0189f6ee0b0026c9eefdcfe1b45a71b641e4 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-03430---03490-in.json b/source/parts/detail/e/estes-paper-ring-03430---03490-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc2a951453a3ca564423fcb2536fbe52d99a095d --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-03430---03490-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79f7659a62a36dbd0599db7da67909a63f94037cd6832b076c1e112d6f62d13 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-03750---05180-in.json b/source/parts/detail/e/estes-paper-ring-03750---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e58b68cdee414e6027a1c9e14c2cbf2fce34a34f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-03750---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda6ab6589cbf699df2b5d87350e14f8595ee577d1442c91bf0a59136772fc90 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-03750---09500-in.json b/source/parts/detail/e/estes-paper-ring-03750---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..638308e6e4d92bcc201ba42125e57f31dd33fc73 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-03750---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16b17adde8545be082c055eb40831928ac696e8351ed2f5138216ea343c22d73 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-04130---05150-in.json b/source/parts/detail/e/estes-paper-ring-04130---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55e70540b8de31e5ccca57b597a02d2c5f7dc369 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04130---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a58ba722398f49f76ed914534ac1f99c3d89aba7fb4322ff25139892732a4b +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-04496---05180-in.json b/source/parts/detail/e/estes-paper-ring-04496---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd93dc80f58c0af3df7f9dbe967c8bb9a8d079fe --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04496---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3a8cddaaa4b6f918a003f123eb0553eea1c6ca7ff7036f507de879cdb332ac +size 442 diff --git a/source/parts/detail/e/estes-paper-ring-04500---05180-in.json b/source/parts/detail/e/estes-paper-ring-04500---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2e86f359c5eb836cd1c03a5bd589bf729da35d8f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04500---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d209bf1fab04636896ebcbb1c10819dac752366b84cd31d1afc3f4cc9da9e756 +size 463 diff --git a/source/parts/detail/e/estes-paper-ring-04500---05200-in.json b/source/parts/detail/e/estes-paper-ring-04500---05200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..824e7ea7d56ee7f430d5de1ad2a3864e76b75c6d --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04500---05200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54d17b9a368f7838c087c4068e8909057f746dcf2a0d560d7bd663a9e948bd48 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-04600---05200-in.json b/source/parts/detail/e/estes-paper-ring-04600---05200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11faf178071948192eba2658098b10758302f56b --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04600---05200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94450f1f5727367ef0fa3ff4da09bba3dc468fc7dfd4d280c0c039663e01828b +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-04609---05200-in.json b/source/parts/detail/e/estes-paper-ring-04609---05200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..855d51fcd739c78a0adae927db3da43d89b31dfb --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04609---05200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094506b308bd6025815c787e35a348a9d2610b45b229cbc2d702504bb56b2bfe +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-04650---05150-in.json b/source/parts/detail/e/estes-paper-ring-04650---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae51348b41e5d3d825d221c74575df5e07e9d7db --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04650---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f5a25efc510d65ca3d14621948a51ff5e11d77e9c74c2e20d559edf00902f2 +size 423 diff --git a/source/parts/detail/e/estes-paper-ring-04730---05150-in.json b/source/parts/detail/e/estes-paper-ring-04730---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb70312d8f8abf1b0662d32c34a2d34a05762a7e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04730---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4dd79df9f02ee9aad56d343728d5416fb04e7b512b04c24ec7fc7954fd5dd15 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-04750---05180-in.json b/source/parts/detail/e/estes-paper-ring-04750---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a8e3e621f16ca3a411b96c92fcb9f99e609f336 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04750---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fec5d995d2564ab034230138807b3cdbc59eba7d54f69e5ed1e1970a9d2f762 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-04800---05200-in.json b/source/parts/detail/e/estes-paper-ring-04800---05200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddbf6d7ebc18be74d0cc7c4bbbe9f4a97d07d21f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04800---05200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57323cec2ff9c84b1d7a9bc92668137158ea7499bb3452b2b7904a7f71a848b9 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-04900---07100-in.json b/source/parts/detail/e/estes-paper-ring-04900---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6cae4ea812051fbb8e4d916386ee2c877d90bdd --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-04900---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b020e337ff3994357614a6ac83ff0b1aac8667d934e3e4f632000f9b3ce3996f +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-05180---05440-in.json b/source/parts/detail/e/estes-paper-ring-05180---05440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..214b910bd9010f11f2decac55530168b216dd100 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05180---05440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e11b61e65dadcbcdbe968cd3a4682cfb8fd89306a20cf4f00f8471e8c308abd9 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-05323---07100-in.json b/source/parts/detail/e/estes-paper-ring-05323---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa2ee5413892e194417b7bb789ccc8031e8ebc67 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05323---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8773b4e3baaf8e55f4a853b6e631e3d4ce15cd5053f678b443a76205447b042b +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-05400---05630-in.json b/source/parts/detail/e/estes-paper-ring-05400---05630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..654b20e6116c2061569718628ca0d9ba266ce488 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05400---05630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f0db01d60f9655879a230c3ed705c74c7db2bcf1130975f74bc8f8f6d677082 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-05440---05500-in.json b/source/parts/detail/e/estes-paper-ring-05440---05500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a5b3c055c37e56616df433e5f696c50d202bf2d6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05440---05500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff827963c1e280220da7c97bfce4824eea3d15635fba51be01e5e5ac32f8f109 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-05440---07100-in.json b/source/parts/detail/e/estes-paper-ring-05440---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06e8d0b6fd77dab36c9a02a6adc65e712867d781 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05440---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ea441ef66782e6dc0ddea31ca680c85d4ce67456c9a193fc05ef622cc8a38d +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-05440---09500-in.json b/source/parts/detail/e/estes-paper-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b89048cc845e4dcbd56ca5150eff5ed35b6239c2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18dc3ef83d55289d2ee851e3d34e8f4387746849bb339ad1efc32b7057d22ddb +size 451 diff --git a/source/parts/detail/e/estes-paper-ring-05440---12800-in.json b/source/parts/detail/e/estes-paper-ring-05440---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b3456c96c159f6de9ea85cd4e47faaea7c3305b --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05440---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b45a4a2228d57e23d231ae558376a0d0e49ed82d617644ebd9aa5317d99d87 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-05440---13900-in.json b/source/parts/detail/e/estes-paper-ring-05440---13900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..495b5bd96fb57b5c4dac588a25ac7360d5d02379 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05440---13900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04644dfd5ef421d54d36167380754b99f2dc1a43b37a61d6a52ab0ae7e316f3 +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-05440---14980-in.json b/source/parts/detail/e/estes-paper-ring-05440---14980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..23ef38dca3b2c0b5deaad253010536f074dabd46 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05440---14980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:315c480a68f9681cca7127b7c4b4230eceee0c1d76abad7a97ebc58aa37c7ca2 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-05440---15760-in.json b/source/parts/detail/e/estes-paper-ring-05440---15760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60d683b5b3b2ba691a7da494c93572491da84b7a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05440---15760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35ff9b76a892b50f8658656cd655d33c5f964aabc8e8ea4f78531bff5a680939 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-05441---07098-in.json b/source/parts/detail/e/estes-paper-ring-05441---07098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c74b86a5847cf10d37e6984a5e5a152ccced0a01 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05441---07098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0d042709c25865c0e099395545bb677d29b238918a36ae3c2385f76fffc073 +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-05500---09500-in.json b/source/parts/detail/e/estes-paper-ring-05500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..caa404fe3786d9eaac86379596548a178fba95a6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3de96ce8a003e951ba9991b9aeb89845557a877b177f3f22a03d94c3d5bafeac +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-05850---07100-in.json b/source/parts/detail/e/estes-paper-ring-05850---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f66b0a82dde2e0010f373af356b7617875895ef8 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-05850---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f420c2e0e873885976b1c3bee03b3f49ec42332ef984f8144880ae8b196ca6e +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-06450---07100-in.json b/source/parts/detail/e/estes-paper-ring-06450---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..278ba79cb349c68dc2aeb6fef151879136ff3672 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06450---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb1ea348b27d26fa1f306941a43ebe8710e81ee421d486a1c874711312bcdb5 +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-06450---09500-in.json b/source/parts/detail/e/estes-paper-ring-06450---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bc5470d7133f4ca42d212a9ab1614bb9d5ab66d --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06450---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa19a9d9916aabe6887f467aa09540d8caacffcc93d2f61821d56d32cf51828d +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-06450---12830-in.json b/source/parts/detail/e/estes-paper-ring-06450---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fba534b65625027c7c919d5181c73000228feb27 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06450---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4456ac078fdc8e02e36bda8903719eae1fcfaf242d8ed7d4a9174d45e46b789 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-06496---07100-in.json b/source/parts/detail/e/estes-paper-ring-06496---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b21cc4978ff426c252896c40e6d45bd8612eeb99 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06496---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e954ab9611cf56106bce344227023f8d8c3981d14bb7378291bf2a27338c2f6 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06496---07470-in.json b/source/parts/detail/e/estes-paper-ring-06496---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d50fb437ff9d51f0ae2d5e09cbd6422b240533a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06496---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b24a594ea09dcd09186268e13bf13f3000b664d8057c92ab6a04ec38c29ca5 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06496---07874-in.json b/source/parts/detail/e/estes-paper-ring-06496---07874-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f9bcd76dff0c9f1ff1adc759003fe967143d0de --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06496---07874-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e59b727b1cfeb64e7312fae1152703fc7c5328b5a8715d7a4e09d9d36f90ce +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06496---09500-in.json b/source/parts/detail/e/estes-paper-ring-06496---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff5a2ee54affe4ab86d58b2bd2f677c7c8373239 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06496---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee9ef790a23485d702dc205444e96a2dc45a67cc31275b2cf0c18a19f686ab4f +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06496---09550-in.json b/source/parts/detail/e/estes-paper-ring-06496---09550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00a856189fde50cd4eb0aa9b2482cb381237d78b --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06496---09550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2a89cf5ca5c732b291b3af8486a5010cf8336c6aec07f93c8325f39fdfd76c +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06496---09600-in.json b/source/parts/detail/e/estes-paper-ring-06496---09600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a41f0d7545e9f7d7dd835cf893110a42ed86ae4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06496---09600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb327f0e7d5c2db3d571087a80a17fa67c468477a55197d056358f27181189d1 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06496---39000-in.json b/source/parts/detail/e/estes-paper-ring-06496---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b76ced178ffdde767d21aa9a3f2b5f1a52c795e6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06496---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99262f59b3aab5e3ddd6e856a318aea101fa86d47dbf97abae63ad4a42eeb48 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06500---07080-in.json b/source/parts/detail/e/estes-paper-ring-06500---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39cf5e07a813aabc7cc9795cc5240af849000e1e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06500---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5334c95f0b6e1558a2f850c86fc9978484dd6ca1187ef5a3b0c043f0a4a61b9 +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-06500---09500-in.json b/source/parts/detail/e/estes-paper-ring-06500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..84d96058e154b449f654539a12b1e8fda6e27d8a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2a9d565891b3b1bc9631b4c84a92c8890ffdb9713594b09dca7d6ead31e3b3 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06508---07062-in.json b/source/parts/detail/e/estes-paper-ring-06508---07062-in.json new file mode 100644 index 0000000000000000000000000000000000000000..edaa6cb0d7d63bb9fb70f70a4a98a3ba871e7ff8 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06508---07062-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930005b59bad0ab81522201f459cb97f6882111a505aa1a9434e10026de8e1c9 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06508---07098-in.json b/source/parts/detail/e/estes-paper-ring-06508---07098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0aad883d5bbba5a53463399ca432afecd58114a7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06508---07098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f257bc2173e5e23428565bcad0ad7cb964e4dac3a8eaf4e76915836296ae6e5 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06508---07470-in.json b/source/parts/detail/e/estes-paper-ring-06508---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a76772a3ba8da8760e914ea4bda8efc42be768b --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06508---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a595075d61c80c05921a6fad137c77d1938795f8a830c49231710154b9c3acb6 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06508---09500-in.json b/source/parts/detail/e/estes-paper-ring-06508---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a4d26686c223634045af38a1c61af0117687534 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06508---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8156e0ded9f69c69ff5905eb24ce3fd6e7b5598160bb70338b0bcee36721a6 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06508---10000-in.json b/source/parts/detail/e/estes-paper-ring-06508---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50fd0429f593987980bd99a3c83642fe6d6c0ceb --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06508---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e110a646eda544c5e63dad606d1acee3fca31876bf602794f352fad78833111b +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06510---06900-in.json b/source/parts/detail/e/estes-paper-ring-06510---06900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..daf477a06b3f92ba90f220d1202b6495a5f67752 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06510---06900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d8aa5ebaf7d0fd8d0ee1c960395e23dd07892d3591b003ca8dad0057f04f4d8 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06510---09500-in.json b/source/parts/detail/e/estes-paper-ring-06510---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..010ab86567aee0ab3167773e96e43a9d638038ec --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06510---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82a2fb20a33b796df6734be3bbe9b1adc7550faca7171e523ae1ca02c063c7f9 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06510---11450-in.json b/source/parts/detail/e/estes-paper-ring-06510---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afe9a3a62bf31331c85e01347a69dc08fe4c6943 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06510---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67965c1f8e7361a649a48d437083262ef57ce85f88c79499f59ff055afb3860b +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06510---21760-in.json b/source/parts/detail/e/estes-paper-ring-06510---21760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4516a2196179261ae59c466c86695a5393c31498 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06510---21760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e04d47500c3c61d5c5d1d0f5519e5ef45a0c0d5fa5d195d9bc010c6c28344bf +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-06640---07150-in.json b/source/parts/detail/e/estes-paper-ring-06640---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..978e4a3985d671369a816aea7006fdcc2ec47277 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06640---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8553075086cc4379488b68a20dbdf53524f2b12674ce61fdf5c3fe6ca8e1f8 +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-06674---07100-in.json b/source/parts/detail/e/estes-paper-ring-06674---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86662df8085ba9135099b85e4e8ce1b86de68c69 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06674---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3426e548bab5ba65f68f17a783745df358cf7f1a0bf8d72b7aefe1a4b9c701 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-06840---07100-in.json b/source/parts/detail/e/estes-paper-ring-06840---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9670deaf6ae50127fc05c30e6e8b84e9c4ee9fc --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06840---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a8b693378b5fad8833a29399c4dacad8fa77b06bd3ed188db05b72d05d19ad8 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-06900---07100-in.json b/source/parts/detail/e/estes-paper-ring-06900---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e8fb23a205f9034f5393f1eddfe9fc622d3d0ea4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06900---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a51cc171c12689f5f9ad989e22edbc27925da57b67187c1f540b4f2018a5618 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-06902---07100-in.json b/source/parts/detail/e/estes-paper-ring-06902---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d5d96e00a5a15705f8ada7714920612ff716ea89 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-06902---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bd6f7544afc5bee1e430b1d917560167c9ddda9d0137294157961bf30801afa +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07000---09500-in.json b/source/parts/detail/e/estes-paper-ring-07000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..533ba9cba6c6b6d03251bc986d35bc62768b40d5 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a96f9267d719b234386cc9efee1a086f7cc32851444b7be1a582e78985e3ae +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07087---07126-in.json b/source/parts/detail/e/estes-paper-ring-07087---07126-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20c54f303864e51aae8cf91e4cebfcc5f7b77b3e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07087---07126-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93edaf8d1a0f14b976a9a2fda159067f4a5224e8d51f473db0424548a515d86c +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07087---07330-in.json b/source/parts/detail/e/estes-paper-ring-07087---07330-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3cea1981c587d9c98e87670dee694c0a17a413da --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07087---07330-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b2e2e062badff89c4111470880fff0f60b542a5a21210f7e8b0158ca2206d26 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07087---09500-in.json b/source/parts/detail/e/estes-paper-ring-07087---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8aa1034fd9f1390a24b526c7fa4b47d2693d2d2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07087---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:575b76296edcb75a3efe8eaf818ec455ae3872105083aaea8b1c5f02909e56fb +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-07087---12800-in.json b/source/parts/detail/e/estes-paper-ring-07087---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..559d5b612dccce19bd9ff15073d5f22015af4030 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07087---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61f600768c7b80824545b7cd42db5109bba8cc6175108b7ce277d41a05245f2 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07098---08750-in.json b/source/parts/detail/e/estes-paper-ring-07098---08750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3da09a744fd35670c32216e5116f1c5669a37343 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07098---08750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f6c0604403b31a8499a037620596483182c0aff083040b8ea19a32b1a25007 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07126---15950-in.json b/source/parts/detail/e/estes-paper-ring-07126---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5b54a7845aa1a0f9f6523b8e2aadbc6e4229379 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07126---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e104d5f3d3bec528cfac83285152413c87b41e296e300932e6530ff69943652f +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07185---15748-in.json b/source/parts/detail/e/estes-paper-ring-07185---15748-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10289ac9e46e5230ff5d5954de2b8d2b934431cf --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07185---15748-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cddc04a4b0e30400ce56b6abc08b054bf174465cb404506c573596422740d59 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07358---07441-in.json b/source/parts/detail/e/estes-paper-ring-07358---07441-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb3bd50738e5cb92d9109fbc003155da0e832618 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07358---07441-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8af0d2623f641ef6cfea4f9b987675623639be2bb38671ca3b2fc562c4c4735d +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-07358---07461-in.json b/source/parts/detail/e/estes-paper-ring-07358---07461-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a2826a3b0ac011b91eaf61e14af9d45dbc8f329 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07358---07461-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f75712231b3dfd61c32aceadedd7ee11d01d4821b3b02a962691e6201a55a514 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-07358---09500-in.json b/source/parts/detail/e/estes-paper-ring-07358---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e3968908a048cdbdac618f2e103edc978dbcb4e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07358---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c758c4289fc27d13e63f100d60f803242b88cd48233c5372609eb5dd6791bb9f +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-07358---09760-in.json b/source/parts/detail/e/estes-paper-ring-07358---09760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6db4a6cbfbbac406f563d96f52f0794a576897f1 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07358---09760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008eda4f3912887c194b3e674c18254ad53c519b730157476fbb991dba3b3593 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---07441-in.json b/source/parts/detail/e/estes-paper-ring-07360---07441-in.json new file mode 100644 index 0000000000000000000000000000000000000000..325ca012fc919891200ff04dfd59df3876d38411 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---07441-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac3b9bf1830a0f99214dba7aee6fcaf915a4dc8b977b0844839361e501d8cdc +size 466 diff --git a/source/parts/detail/estes-paper-ring-07360---07460-in.json b/source/parts/detail/e/estes-paper-ring-07360---07460-in.json similarity index 100% rename from source/parts/detail/estes-paper-ring-07360---07460-in.json rename to source/parts/detail/e/estes-paper-ring-07360---07460-in.json diff --git a/source/parts/detail/e/estes-paper-ring-07360---07500-in.json b/source/parts/detail/e/estes-paper-ring-07360---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9214e745f28a60316cd2799c35857d5ce2c096dd --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c3280b766d83e44460258159eb5208aad82524e8f112e1528b55e07faaefbb +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-07360---09300-in.json b/source/parts/detail/e/estes-paper-ring-07360---09300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..47ea77e3da0a072d0e16d9f61567242b82d8cda6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---09300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:487cd3e329d9a62834468590276c2472e6f45e98ac5d37bd82f8530061af8b9a +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---09460-in.json b/source/parts/detail/e/estes-paper-ring-07360---09460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8a3b427c7e25d2dc54632bebc1d3ae507f89f9d2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---09460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c92e49f1421bc30c62782f555b651d06015413ac735117dc8b7a7044c54e3e80 +size 450 diff --git a/source/parts/detail/e/estes-paper-ring-07360---09500-in.json b/source/parts/detail/e/estes-paper-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75f22c26b01c898cdc5524baf0a0f58cba4bc897 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f564ede133a17595a4066ef67c9f726a62abf55d2b7d885d72a9da699ee9d9 +size 419 diff --git a/source/parts/detail/e/estes-paper-ring-07360---09615-in.json b/source/parts/detail/e/estes-paper-ring-07360---09615-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c247be0a77fb427bb34740076dd1826658cf5e92 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---09615-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d85d19864efc3914af60cdd28eefca949df338c1e768be593ecd80d1bb4319 +size 452 diff --git a/source/parts/detail/e/estes-paper-ring-07360---09760-in.json b/source/parts/detail/e/estes-paper-ring-07360---09760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cf0f739929e678945dff9ecd60af9d969de87999 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---09760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb37f503dde3c0cc6ee0b26201138bab8a997fbc603d5ef7eda48e2bd2c45d80 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---116189-in.json b/source/parts/detail/e/estes-paper-ring-07360---116189-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3920e55f69bb072cad062e4158b80e99a53446e5 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---116189-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5659661f7825593fdcd0e9ef6cc1200bde724c15b9446c0204a3828075a65609 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07360---12025-in.json b/source/parts/detail/e/estes-paper-ring-07360---12025-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c67a5c40d0ef5110b4076a23df7db251c38e1370 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---12025-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef4b767b6ca169215ba0be82830fd16f8b3848ac129742d051f28a9cf2cab85 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---12800-in.json b/source/parts/detail/e/estes-paper-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2a4b6dd99413eea4cecc8115c56914360726e83 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9277710dfb6e61f03540374e442ee53a89b023f7b4345179bf7e069967b14d3 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---12830-in.json b/source/parts/detail/e/estes-paper-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0e2ab64d5bc13144896b346daea42e577507fe45 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fef5ea9b2a026ea44b82db30e3356c7c98a71a5678de15ff7afbca9911b73b8 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07360---12831-in.json b/source/parts/detail/e/estes-paper-ring-07360---12831-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e9fd8247ec3cca5322440289846f51b2f9fe2dcb --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---12831-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb4e789b5fea70305f7bb921b31ec73221212bc46b3a6e04d841fe39aa5d412a +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---13700-in.json b/source/parts/detail/e/estes-paper-ring-07360---13700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd820392789958ba58a13625107e71c3903172be --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---13700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67ce1148a1b3d9a401c42a0070d1065413906444cd959a38fdcc69823a6dada8 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---15300-in.json b/source/parts/detail/e/estes-paper-ring-07360---15300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..670a1c2811041365ecb38fa3ec4a81836ee2ef2b --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---15300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3303b581a5ccbbd9cdb13897e9c54b233753b8a5cb2a09dbdc234c691700c51c +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---15900-in.json b/source/parts/detail/e/estes-paper-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b803063cb42327a3bab2d7762997bfc732bf056 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:537f34052b6890d93f4f38cf03bdb5ffe981f27f001bcb8cb623ec2f5b7e0e4f +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---15950-in.json b/source/parts/detail/e/estes-paper-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba99845aa287e0ec09e78892cefcb2976c4c9d99 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a703a341a77460c6d8ed0a850bff043ca2c3528baf369405034791ee1f2ed7f8 +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-07360---16170-in.json b/source/parts/detail/e/estes-paper-ring-07360---16170-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7eb8506717f12e5cb712e60423f2da7d5d6bb0e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---16170-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bf1d9305c220b2abcf874d19087d603913d50dbf5ff058102c229aa2c493df +size 436 diff --git a/source/parts/detail/e/estes-paper-ring-07360---16370-in.json b/source/parts/detail/e/estes-paper-ring-07360---16370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be1f703e78da0f56aaae2f67f4560575d1dbb928 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---16370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87fcd1e8fd3c06490aa10bf166918b5ac8e3a7088238c4ea7b89e6521ef2f323 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---18000-in.json b/source/parts/detail/e/estes-paper-ring-07360---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a279bbdb9cd1cef98145c21319bf77d4a959fc1f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209211393eba7549432c4919e14f5576440e2fc056a73e7ff1218e4be6e16894 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---21800-in.json b/source/parts/detail/e/estes-paper-ring-07360---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c84a52e38937ea6cb8962be5c748771a0d6e2a7f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea48f0c6d5079174fc66f085324d294401f3a372478c365aa55e925e349ee043 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---25880-in.json b/source/parts/detail/e/estes-paper-ring-07360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2a505d18ed7ab003437f3dc61b09ac5d02a8eb3 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ead9f9e2cd81fc362c23825af61e4c3c0280050db3b4366fbf5946b97affcbc +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07360---25900-in.json b/source/parts/detail/e/estes-paper-ring-07360---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..068f5374a4a54e04d95fb8bf8ceae8c6bda26b2c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07360---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07852fc47a8a700d0b06c2e8974d0b00c88f86fb61e04863cab01b95cb9be1f +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07362---09500-in.json b/source/parts/detail/e/estes-paper-ring-07362---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f63129de61bbde8a26016ca80d29babfd09cbaa --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0757708a0014943b08c015321e979bedb57cbbcdfe6009762851797709aefd1c +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-07362---12100-in.json b/source/parts/detail/e/estes-paper-ring-07362---12100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed77fec64f06b41a4547f64f717d43f85d52663f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---12100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70c50ac96e1721f222db91ce583a490ec8b187fc7eb14ebdf9bbe371bb0077c +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07362---12638-in.json b/source/parts/detail/e/estes-paper-ring-07362---12638-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5371ee5ad69f98555e1d498d73ed38a14ae8c213 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---12638-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c327de9815093e345e55c69ffb0a99aaa2461c6d4e9bea9c952dfafc49fcc579 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07362---12830-in.json b/source/parts/detail/e/estes-paper-ring-07362---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3da9a1e4050edc970ca866769af111beaa51d0e7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4493fea0bd3eece6c0febdba77923cca492a7fcdbe7a130ecb36033dc538a9 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07362---13000-in.json b/source/parts/detail/e/estes-paper-ring-07362---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83c0d082a8b21fbdc860b5fae7ed35765a218cca --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351a616655332d05a1068dcdc3e1c8932098e3db5ddd35537b5105c6154cd647 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07362---15500-in.json b/source/parts/detail/e/estes-paper-ring-07362---15500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..241dbbda2454ace9f0728bd0f1257e7b25d97ed7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---15500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb5398f583395ccbedaa9cd4e67e6411a923eb8e3772f0aab582590124460bb +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07362---15900-in.json b/source/parts/detail/e/estes-paper-ring-07362---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8242304733b8fe41ec3631f9d6edc0923dbe5bd8 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8b39f88948fc981ea955ffd08b0be448600d213075bb4c4f48c425224f4b54f +size 437 diff --git a/source/parts/detail/e/estes-paper-ring-07362---16250-in.json b/source/parts/detail/e/estes-paper-ring-07362---16250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e671c460de1a92f5acb2e0b069e4e3d30ac1f352 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---16250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842fc3ceeb3c7dd5619c8b5de9dce99998ff5cecd3afd4bea63781d426ab35c1 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07362---25880-in.json b/source/parts/detail/e/estes-paper-ring-07362---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..edd739c47133284c33760e43fcbd89c6583762de --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07362---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3eb7c1cd491880e907b9a06411b8c8bfc65c5e038a7c854c20b624477d41e27 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07400---07441-in.json b/source/parts/detail/e/estes-paper-ring-07400---07441-in.json new file mode 100644 index 0000000000000000000000000000000000000000..add730711c3bdd7033b50129e24e17d5234cc86f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---07441-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bac3f1106b536d2673432d0c54d2a851495bd8683a0ced9de93946f44a322e +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07400---09300-in.json b/source/parts/detail/e/estes-paper-ring-07400---09300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d36743df6e80c41e6bc04bfb0674dc0ea53c2195 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---09300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece785421f459c311cc99e07ddadddf53267b5b1b46c07ca26560cb5e4069a50 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-07400---09500-in.json b/source/parts/detail/e/estes-paper-ring-07400---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd605eeb3851d9607cc8a6e3bd6c57cbf3aa592c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8d4af2f6e4c43fc5dc58f696e597939ade8bc043fa51a77ed38ab10cac8c935 +size 457 diff --git a/source/parts/detail/e/estes-paper-ring-07400---09800-in.json b/source/parts/detail/e/estes-paper-ring-07400---09800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f52e436ca3a73df254b2542e90fa4079f0648796 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---09800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882bb0a556ff0f55452bd90297a0ce8a62e28c53af88afd0803552d16521d625 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07400---12800-in.json b/source/parts/detail/e/estes-paper-ring-07400---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d6b0f2dc5248ba422c22b96dd5872bcad5e213e4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965483126a2570912eb3cfbbd39b081ea6e8112e9debcf52b644c37891db1df7 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07400---12900-in.json b/source/parts/detail/e/estes-paper-ring-07400---12900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c32166cba58481b20e328115016f06d84fd4ff17 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---12900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acab4a73ae69feb63872fd16986dfdfa99e4ed48852a73d9c13a2a02617b8ec7 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07400---15900-in.json b/source/parts/detail/e/estes-paper-ring-07400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03aaf7079f6c48205c849bfa28bb99e9dcecd994 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b695fc210af7475e65f718bc6944516dfd8f70a81c59a68213590fa10ae64653 +size 469 diff --git a/source/parts/detail/e/estes-paper-ring-07400---16000-in.json b/source/parts/detail/e/estes-paper-ring-07400---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..97e44d91c1d477df7d9008f484434487aa4d0086 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f0b12cccfa0473aa24282c0a9b1eaa2f40c036763aff30c9fc07a55855d711a +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07400---19900-in.json b/source/parts/detail/e/estes-paper-ring-07400---19900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c25f7c5756cc5ddf61ca0136cc2bd2873b74d34c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07400---19900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437d0766ad8dc34677dc589f4172aeb194252592fb6b508b543010c12b61a196 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07402---12799-in.json b/source/parts/detail/e/estes-paper-ring-07402---12799-in.json new file mode 100644 index 0000000000000000000000000000000000000000..710fd4e44a2de77d28659d216f040e8d0eb66d2f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07402---12799-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92735a277009cb3870a36da491093f2c3fb498751f22220344b40c3acf112055 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07402---15902-in.json b/source/parts/detail/e/estes-paper-ring-07402---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41f5c56f7cdee686fa993e52416a661c365ef0dd --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07402---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb4331b3e206ff390fbdbb8b23caa112c5f4bd19e58684e71bc51ce1d6b62be +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07420---09440-in.json b/source/parts/detail/e/estes-paper-ring-07420---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c21f6e05bc42b0ba972a3c39d42673e2c50f0f0a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07420---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f91d071cba1209da3ec75658df42d82b16794452bcdb9e2a5fc5bfe6ffa985 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-07441---09800-in.json b/source/parts/detail/e/estes-paper-ring-07441---09800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20ceed4b31e9a7f8b604fc0185710cbc72166bc8 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07441---09800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2cae1df6b8eb8d898eecc69264acc4da56a423980c82cdb373572ec1aad324 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-07480---09449-in.json b/source/parts/detail/e/estes-paper-ring-07480---09449-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc58b64ecb09012e02f0e9a3ef7b2eeb4787b26a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07480---09449-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad8d4bacd793a367baec73b0befa51a66ce4b1855420117d2467aceecee5dc7 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07500---09500-in.json b/source/parts/detail/e/estes-paper-ring-07500---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b28d1cb61245bb853ae54dbed6fae2d71044fbd9 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07500---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b942ddbecf72db30d31c38de2f4c6a22f84e40c8fbcee2538db430f6eec8256 +size 450 diff --git a/source/parts/detail/e/estes-paper-ring-07500---09800-in.json b/source/parts/detail/e/estes-paper-ring-07500---09800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a0914ee26138132ab25122d40b7cb65bc4a58bac --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07500---09800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c168704ab923faab8faa3831348164ff01ae558e87c12a14f719b2883c84adb +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07570---12830-in.json b/source/parts/detail/e/estes-paper-ring-07570---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a261322d108fb2d1ef671daaf8b43238ba21e60e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07570---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30aca79453b60f32163560c72012ffdcfde00ae3cbba73a3dca099320dd3c081 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07590---07790-in.json b/source/parts/detail/e/estes-paper-ring-07590---07790-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ca2152853f2b6be6aa6d2351c410d89d83b1a9a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07590---07790-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31c8009f7a7304254ef995d8d13fb1af05f30d1d977e89854b51eefa2ab51e3d +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-07590---07990-in.json b/source/parts/detail/e/estes-paper-ring-07590---07990-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb143174a389a35aa052189ee13c4818dd86b67f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07590---07990-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5eb6ee40401132d1ce9b3c216eb58b36725c76aa4f48e1eddc83d1968c37e6c +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-07610---09500-in.json b/source/parts/detail/e/estes-paper-ring-07610---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f84c0871adc75d1b1014b207c65f3be9344073d --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07610---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fa771c44e724d6a52d5d5f4e9e4827b63220ee87392cf8dd0b65bbfa763f81d +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-07870---09440-in.json b/source/parts/detail/e/estes-paper-ring-07870---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b66728aa6af40b7ae21072815d3e6757a204e5c4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07870---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36c8036660f46ca176a0b751305f22359c5a530472736be7167207f610608733 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-07870---15300-in.json b/source/parts/detail/e/estes-paper-ring-07870---15300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..304ff4160052bce573f20b71d8ddcca387d028dd --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-07870---15300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048165175c8229779db838b44788b55384b46863d64624b6357c3e38a40775be +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-08250---09400-in.json b/source/parts/detail/e/estes-paper-ring-08250---09400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..480b0354ce4e75361fb9c9a3e39699d6d97cfe8f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-08250---09400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f9d3f477b8b6bd08505bac5a49840da936b3710478c9b5a005e238a0f2551a +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-08250---09500-in.json b/source/parts/detail/e/estes-paper-ring-08250---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d0f8b2c7fc3ec4f1d5daa355ee0d0341c742d87 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-08250---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dea625b483c27ad1c03672a6c4bba75b52893503c07fe8c53965d8de9fb1ff6 +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-08661---09450-in.json b/source/parts/detail/e/estes-paper-ring-08661---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..561b501dfc2456a3524235a28d992364004e7cc6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-08661---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387dff0e61880362467ca2cde6928f26e464b7f3f87996b0125582ffa95dc12b +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-08850---07100-in.json b/source/parts/detail/e/estes-paper-ring-08850---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d63f32b0d27a2462dd2147ca54d766f45c6bac0e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-08850---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dd277f598c2d6e41f7048d7526da9229845a1ae0f9e997e81b5027cebe38c24 +size 445 diff --git a/source/parts/detail/e/estes-paper-ring-08850---09450-in.json b/source/parts/detail/e/estes-paper-ring-08850---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c441a02b91da9857d1385897008ed58da2f6c497 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-08850---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688e66583bc0b78f00d3f6228bf6072f9d7974797625f2d6742224057e6d046a +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-08850---12800-in.json b/source/parts/detail/e/estes-paper-ring-08850---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bad43da1c986be764abada8a5f6674cdc76cd5a6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-08850---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f73254c307594d1692f8c5be291a72fad446bdee45e5913659b391a234c54a3d +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-08850---199629-in.json b/source/parts/detail/e/estes-paper-ring-08850---199629-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a71a6fa6e9cabd76b021f470e157919eabbb1021 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-08850---199629-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a32d75b02bc313872c1ab7af8159ef6f963a514cab3823fcb8469bf3a2b6e34 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-08890---09500-in.json b/source/parts/detail/e/estes-paper-ring-08890---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db1fd55f52c619fc8d8727c8639dc27e2c2b3f1a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-08890---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2b2261ed0470b6e67016d5d1a5acc9bbb91bab83fe5fc256be38a8df809e16 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09000---09500-in.json b/source/parts/detail/e/estes-paper-ring-09000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18ca97e8cb0676e8d9bfcae62b469284e73698f8 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f50190da23bfe645cd7a75bf103f38f5bda39d8ed82793bc1570a0dfa20a2c3 +size 461 diff --git a/source/parts/detail/e/estes-paper-ring-09000---12630-in.json b/source/parts/detail/e/estes-paper-ring-09000---12630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efb04f8a2ab6ae974a6e64d060b43bc127ea9c79 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09000---12630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce31aead1b3caecd36f309028ea987a2569e8f33172b46d6182d0615fbcc85e0 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09100---09500-in.json b/source/parts/detail/e/estes-paper-ring-09100---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..490ce145c2456d6a67475bc8e47d92692171c0d6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09100---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4655b5e4e3263c795c924e70c02eb2beac8953775b610dc6d986e22e24097960 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09200---09500-in.json b/source/parts/detail/e/estes-paper-ring-09200---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..538d3aa5510d8b48610385a01ca3a4d988f5b0f0 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09200---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9266db259f7b407bfaa1c1fc95c2517afc56f1277d0631c8e897eacc3c8474f4 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09250---09500-in.json b/source/parts/detail/e/estes-paper-ring-09250---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0af70ca95a02bf212f8cd5df5b242353d69332a2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09250---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c917dc9a9f6ca3341fe0f009d635e099ebf6b9c8bb3cb25849b6bda4204a009b +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09409---09469-in.json b/source/parts/detail/e/estes-paper-ring-09409---09469-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b70c5359ab567fe6f6a004bc2215e94a9f09583 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09409---09469-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2534d284fe9e6655969c3d884718d128e49a1befe910698d988e8007056fae29 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-09449---12638-in.json b/source/parts/detail/e/estes-paper-ring-09449---12638-in.json new file mode 100644 index 0000000000000000000000000000000000000000..559f0fd6384055f9b25ba30440d8f36e6a17b73a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09449---12638-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e008a4e394c5f1f315d1f7e7f5043a4330fb9434b33307cf4e3208a4569ac409 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-09449---25878-in.json b/source/parts/detail/e/estes-paper-ring-09449---25878-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ef642984fbcfebb17fcc6f1f2fb5e5de4f51d73 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09449---25878-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8f1d1bba5e4421e86da2ee62b2d8c7a9f6d1a7be530a2352f5480c7be4b2ce8 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09500---15950-in.json b/source/parts/detail/e/estes-paper-ring-09500---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e04176a2c006b8a1c86741a9b4ed6a4d2ead030 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09500---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c58da6d43805ef3379355d0fe5b4100bf5bdc0d2f2828b57119d5cf6e50d541 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-09520---12638-in.json b/source/parts/detail/e/estes-paper-ring-09520---12638-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3fea3d9db235a0eb5a02054b6b8205991b55faf6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09520---12638-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f9854465aa9fe99fa1574c37bcff2b18b4f07b5a1e2510c3e0a60be0a54fa2 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09580---10000-in.json b/source/parts/detail/e/estes-paper-ring-09580---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec2f2f4d1180499a21c596b29cfac9ae91a2cf2f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09580---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d146a196cfb635ea635795d47f680a43c6f0d8ad45363f67fac2bdbe59d6807a +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09600---09700-in.json b/source/parts/detail/e/estes-paper-ring-09600---09700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da6cdfdaedb500b48022dec8a4b7160b59a383d2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09600---09700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c961d3cffb3341003fb23811368b685075cf27dc1df02da9fe788fc2e7f9dd8 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09760---09843-in.json b/source/parts/detail/e/estes-paper-ring-09760---09843-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a91a1c6c1968160765b4ddd623770eeb87ccca17 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---09843-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1700175390d40a271dd6ed963dceab4075d17e22ac72c3b371af32a5d9ac1bfc +size 470 diff --git a/source/parts/detail/e/estes-paper-ring-09760---10385-in.json b/source/parts/detail/e/estes-paper-ring-09760---10385-in.json new file mode 100644 index 0000000000000000000000000000000000000000..543f43cca86e985c6e79013a7e43ab2489b8d28e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---10385-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce07deac4918cac5877b30a737cb92b1e706a8de8d2dcd7e86134417b121acab +size 470 diff --git a/source/parts/detail/e/estes-paper-ring-09760---10500-in.json b/source/parts/detail/e/estes-paper-ring-09760---10500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0aaaed1e037a25d7cf1b5574bd0c89fbf2b53bd3 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---10500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93b55213fac9f318072c7ae09b535aa0d35f128f233a119092bb9f939c0de18 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-09760---12800-in.json b/source/parts/detail/e/estes-paper-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d68ef760c9cef660fa944e8683b8a2f3a7aec5c7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec6a9f3b23e7e02ab39dafe527f0dcaa7575fd671acafaf9c2fab6fa5b85d50 +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-09760---12830-in.json b/source/parts/detail/e/estes-paper-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c10eb765e67e5b96d001dede7872e08001157854 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2396477fcac2f3236679f3e82e09e6a7866b2778943ce7ae24b5fe64aeca5a +size 414 diff --git a/source/parts/detail/e/estes-paper-ring-09760---13000-in.json b/source/parts/detail/e/estes-paper-ring-09760---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..abb866d2d2797fe0220476a3d00585401f1b2761 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb575e6d44aa8d164cc27cb66e2fbbf9920dfb905f3635081e51e8bc0b8b2adc +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-09760---13040-in.json b/source/parts/detail/e/estes-paper-ring-09760---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c939ca677ba67a2bac8f69886d8809a8584c0c7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e0e53cefcbe4d79778fa54f094f37bb2a5b0b2863cf3f84702cc2e23908a70 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09760---15900-in.json b/source/parts/detail/e/estes-paper-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e3dabe67d3ea20079ec82e4c2639d84001c8402 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299913443162efbdd6cf58486b2edd64e988c1b42834b499c2d7c5b5f637950e +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-09760---15950-in.json b/source/parts/detail/e/estes-paper-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d0a655a1568cb4af2cbc21cc6d57f7535fdca50 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35b2d8b4710b8ea46c0ac97ed2485eff46d7349d4a9031563ca32ebfc2663aa8 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09760---16000-in.json b/source/parts/detail/e/estes-paper-ring-09760---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f72d233d1ce1caae8cfa684ae8d35a3d6e70525c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889422ca3c104952a3421ca3fd2a3657431d83be01f57a5fc5cf356d9e2b01ba +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09760---21760-in.json b/source/parts/detail/e/estes-paper-ring-09760---21760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0387674fa927b027447e3e561aa954a3d9d6d47e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---21760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a6cb29daac18e59859a7a0db0e353cf1892eb10f3792b1b7226ec887c80c43 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09760---21800-in.json b/source/parts/detail/e/estes-paper-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9081cef9eadb57bf467d8c098fb5ddb6635852fd --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f1f1cc6acb789fed99625d1427bc32f61a7df72860cb5be0becd77fca30dc79 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09760---25600-in.json b/source/parts/detail/e/estes-paper-ring-09760---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ddb5fcc67a41d3ca9fdf61d47d57e5d42997bc9 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d3c1727d708b712a30dd3243b01968d77dc17822ffd91eb2e4a9d7417a69cc6 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09760---25880-in.json b/source/parts/detail/e/estes-paper-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9321ef9bea3e32fde6c3bbbe9db645d871fbdab0 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5b6be28f1e9790d4b6bb7c1e2cc9898b711ac49a0438b133e9f811d05a6149 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09800---10000-in.json b/source/parts/detail/e/estes-paper-ring-09800---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..294231b1dd21dc274b634ae92b832242b0aab848 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09800---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c287529defcf959d4db4c5258c2a79fdd32fa3eea0860131caaa8530d8e45873 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-09800---10400-in.json b/source/parts/detail/e/estes-paper-ring-09800---10400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..396518e17141126ea5e25a57e2cd3be3061ccb46 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09800---10400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac8de4d22422e7662ff5209df4907cc82ab314e18fdd31297d5125aabfe3649 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-09800---10425-in.json b/source/parts/detail/e/estes-paper-ring-09800---10425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4980233c717cec1d8daf704bdf5560905a8781a9 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09800---10425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e45ec1456b291216f9929f163c1db5dfa216038bd806778a4085dfed08c466 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-09800---15900-in.json b/source/parts/detail/e/estes-paper-ring-09800---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1abd25dec1653d8b75a6d5fb2056152dd16c59ee --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09800---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6b809b302e72e33ce7d8cfb7880fa49a82e4c04ae487170b9faf57be0f6789 +size 456 diff --git a/source/parts/detail/e/estes-paper-ring-09800---17400-in.json b/source/parts/detail/e/estes-paper-ring-09800---17400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15277ac17ecdc4ff83e99dda609fc2185a3fa91c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09800---17400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a6e1dd006ffdca4f585ac13c62a9a751a4563b2d55baa6fa8433d387b6e94f +size 456 diff --git a/source/parts/detail/e/estes-paper-ring-09800---19900-in.json b/source/parts/detail/e/estes-paper-ring-09800---19900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..61ec3cfe2ff5e9d32fd5a4cec8e5e4d20f81e951 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09800---19900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0d4c6a90489c85351760df4123580a1c21f56db2e6295134b222e332692895 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09800---25550-in.json b/source/parts/detail/e/estes-paper-ring-09800---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff3ddae89a3c7d178bed9eeb2d36fde23142bd3a --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09800---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac9751d6b14073c2d703d28ade6ffa85c7008aee55d34a63bf1e16165a79e5d +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09800---25882-in.json b/source/parts/detail/e/estes-paper-ring-09800---25882-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9dfa0fcba9a1839bedc530156a1b899e7f978817 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09800---25882-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650b3fa6e595b410952bb4a5dcda1e28c9f1bffff0271c0aefac12dbee4d933c +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09820---12200-in.json b/source/parts/detail/e/estes-paper-ring-09820---12200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efe5b95a8cc4aae260fdc0ea54845e9e5f8701aa --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09820---12200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bafc322e1255d96dcc2067bdb30ab538a68bcc8c5b1029cb0f93c7c4d969d1df +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-09820---25984-in.json b/source/parts/detail/e/estes-paper-ring-09820---25984-in.json new file mode 100644 index 0000000000000000000000000000000000000000..68d2dc54e5595af84dc6bdacb9da75f8675f12d5 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09820---25984-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:229c019e0bb4021ddd72e60cf1001e1145be5453dc0c9018ff29dc160eed40a7 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-09920---12830-in.json b/source/parts/detail/e/estes-paper-ring-09920---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fd5a921fbc76048ddb9f586077cbefc18067ee08 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-09920---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7129de04b6a13beed0b1ab7700fb768edc44ca691848e773d5f97bc9882f1a3 +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-10000---12800-in.json b/source/parts/detail/e/estes-paper-ring-10000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d4dd78d436cfb60b353f087fa65eb8e9a565ae1 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161d172f241c990ccaf711f26659b70189edd7bcdf166614634ce1bc4f03208f +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-10300---10700-in.json b/source/parts/detail/e/estes-paper-ring-10300---10700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2a1afb4cd22c034b1e648b231205fcc594c83e7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10300---10700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c6d6f9c6ff5a23f07e8d30a1bb1e13b58d8b15d6dd43d1093a7317ca60fb62 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-10400---10900-in.json b/source/parts/detail/e/estes-paper-ring-10400---10900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a5236ce79feaa37c7bb94a3df13cda27c913276 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10400---10900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f928a4543850bdd6a06daf3883504a194aaf4ea79862e4c1be414c09e695023 +size 466 diff --git a/source/parts/detail/e/estes-paper-ring-10400---11838-in.json b/source/parts/detail/e/estes-paper-ring-10400---11838-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d6621634194ad4eaf6697ddd8bb86427b0f49dfe --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10400---11838-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c4e6b9fe4aae9d3f5d5dc43a392ff222c62953479a1b4b356776e709c1ee83 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-10400---12800-in.json b/source/parts/detail/e/estes-paper-ring-10400---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2f02d720ace178581dbac2129844c36ac8f5823 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10400---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595f2314ce56c850e01a2303a0f0b4f82850099786c89b267ae3ddb045c72698 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-10400---15950-in.json b/source/parts/detail/e/estes-paper-ring-10400---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49c21956c0ee143a5c8d7a3b40b0f9ce04b7c782 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10400---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df61ad458f0b8b0331caab340938d3d817740ead1ac65467dee129c7e69ece66 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-10900---09500-in.json b/source/parts/detail/e/estes-paper-ring-10900---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2108f62ee4854af80ba7a072f7ff1fd959f36df1 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10900---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b6e86520f84553f9f4664b8f9dcba60729e81584c5dc8c497d5c9ad308ec940 +size 445 diff --git a/source/parts/detail/e/estes-paper-ring-10900---12800-in.json b/source/parts/detail/e/estes-paper-ring-10900---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ad99443a73b895f99f579836126a80724db663c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10900---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b4966bb84962776044e0f22512f921f2da6cc238bcf49cc46e729c48259bffe +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-10980---11400-in.json b/source/parts/detail/e/estes-paper-ring-10980---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dba2c50af97bf57cb367a1404fd493e64d0df8b9 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-10980---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b2cc21e389b601e299c598b0da65728934efa7e8cfe751f1f8cc89bca6ae842 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-11000---11400-in.json b/source/parts/detail/e/estes-paper-ring-11000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d59993dd18430703fbe4eab6ef0491f4b76646c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-11000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7288b9e803ca6b660acf92b48043c74373534f9b70e21134f81944a0a5471f +size 448 diff --git a/source/parts/detail/e/estes-paper-ring-11000---12800-in.json b/source/parts/detail/e/estes-paper-ring-11000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b12eb9a422d06bfda0d7eb6e23bcf2736184f3b4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-11000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe859905dc544d32e7e80a9895805b7c72c2eb8288b5d07ed1234dc5bd2ab892 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-11000---12830-in.json b/source/parts/detail/e/estes-paper-ring-11000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab4b89dedbc13db8b32cd067c7211b916176d903 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-11000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7f1149b75355211398bee7a28b29dded494b41ab69033eca071700567fe401 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-11700---15900-in.json b/source/parts/detail/e/estes-paper-ring-11700---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27cdb31faaef93fde15c1151d7c00f9a661fdee5 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-11700---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:825db9a0f5d5bec2efb67fbf4ac43912ec355cffbf24927751ec617a38a28053 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-11730---12830-in.json b/source/parts/detail/e/estes-paper-ring-11730---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0901e1dd63c4effe3b708f5e7af6115e2ac63b37 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-11730---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b7ae01ff5e9e423ba247f2e429c4f24d1650630e1c3dd3b533fd713308f4ce +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12100---25900-in.json b/source/parts/detail/e/estes-paper-ring-12100---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dff037916976cbcbba123a758974449d31bac2f9 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12100---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd892350c11e16a36b1a4990b186e214cd0394526acaf67d6bc99d255f6b166 +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-12160---12760-in.json b/source/parts/detail/e/estes-paper-ring-12160---12760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..05dc1fa9c1e100c788fc62285048c0a8f4a83652 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12160---12760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599435a10fe57d83b26ae7519d51b49fd4f04b462f2b2ff87219fce0024f2886 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12160---12825-in.json b/source/parts/detail/e/estes-paper-ring-12160---12825-in.json new file mode 100644 index 0000000000000000000000000000000000000000..57a82b795297bb4baec966c3b6f648cf311997d4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12160---12825-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3457ca7c0c09a3788cc985d783dfaf2b2a94c258a77613e13641b410d61152c0 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12160---12830-in.json b/source/parts/detail/e/estes-paper-ring-12160---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2d0a170677890eb61e5bfc04d6cb7c59565501c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12160---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d5823f969290c6427971ef4e3ed681ef670c8924da41a25a5c0b7f8d952c4a3 +size 473 diff --git a/source/parts/detail/e/estes-paper-ring-12160---12950-in.json b/source/parts/detail/e/estes-paper-ring-12160---12950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9991a8500a0696ef2bcd759452483e339014e6f7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12160---12950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de703dcd07662762a5521354691aa01ee84da8331f6027af029343902a370821 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12160---13040-in.json b/source/parts/detail/e/estes-paper-ring-12160---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8af7e404cde8b6e397c26bec7fd409fd17471d3 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12160---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37e7723613dfa776294401e58016ccb36a48a4fde4e6e18d38a57e164d7cca56 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12160---13380-in.json b/source/parts/detail/e/estes-paper-ring-12160---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6b67ad0b81e90c9a039038381f33070c6dcd5a3 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12160---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb797043258a1567fb821385c27a150f79632fc52470edee47b2c89118747c3 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12200---12700-in.json b/source/parts/detail/e/estes-paper-ring-12200---12700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b7f85f7e5e42e6f53d3fff2019775ed9f52f1e8c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12200---12700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5224faa10d3e79db40b86500e72586c8460a8e484ef49f4c55f8900f90fed2fb +size 450 diff --git a/source/parts/detail/e/estes-paper-ring-12200---12750-in.json b/source/parts/detail/e/estes-paper-ring-12200---12750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..808a71ceeec4f1893e6c6c02c86da2a675650ee7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12200---12750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:041e1ef9af9c8da90e513da89eeaddf38b2fdc7e1c2f66d9e2551346b478d543 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12200---12800-in.json b/source/parts/detail/e/estes-paper-ring-12200---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10eb8e0cc04e4b86a255f3bfa5560eda8f312f81 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12200---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:208a60f48030b806628bb900416021271cec411bd667b5228884adb4d517a85b +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12200---13000-in.json b/source/parts/detail/e/estes-paper-ring-12200---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08f1581f707a75d9182228a9838f10553b37a2aa --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12200---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63e598c0668bf9f05e722d26759f642240abd5e447fe94c732dfba5cec0b7e5b +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12400---12800-in.json b/source/parts/detail/e/estes-paper-ring-12400---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..542e0b9af5a98708928514212fa023e2e642d204 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12400---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4594eb9cb8588376353170147990d9cd1bc96655074f5aeaded06313cbc98d27 +size 457 diff --git a/source/parts/detail/e/estes-paper-ring-12500---12800-in.json b/source/parts/detail/e/estes-paper-ring-12500---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..88d4cc35e14a619aeb2bd8ed3bfc30aad178ead3 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12500---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3f53190bdce81eedcb31cb6faa7515db6fcbde6fb029286348c50970455aaab +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-12500---15900-in.json b/source/parts/detail/e/estes-paper-ring-12500---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..46b8de47544b04149da34222cae28ccf3bb95650 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12500---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b9e1e88f7d47937ef4c14365db3f868e559480348a715dd5691ca2b9b1d662 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-12600---12800-in.json b/source/parts/detail/e/estes-paper-ring-12600---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0bad05f0287000ff158044615dda26d1202d4a76 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12600---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4789a763f0848eb41fb0900b4dbe54234c293dcd24d484f41b4d99ebbeb18e4 +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-12700---12800-in.json b/source/parts/detail/e/estes-paper-ring-12700---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..04cadf357f2968cc14a9b4aa096561ae4340e6b7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-12700---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faa333f8adc6cadad4b63d01a5a5f80b702abdf7835736621a7043fc591a96b3 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-13200---15900-in.json b/source/parts/detail/e/estes-paper-ring-13200---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8282f99e8fddbc08f5bb40703c3d1c7ab28b9e19 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-13200---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e8c129022d8a123316a0367cb8ce532fc87c2871734804e9401b01a6779b0ce +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-13250---28275-in.json b/source/parts/detail/e/estes-paper-ring-13250---28275-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0e0358014478b65402a53474b987231e356dc7a4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-13250---28275-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4401d416d958f6e1183a341a0b137c1a9500c354df40ebb689f7571c3191165 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-13260---13270-in.json b/source/parts/detail/e/estes-paper-ring-13260---13270-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2a33a7e2e43c4b05cd7b28f803e6ac942fc3cc8 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-13260---13270-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87a2de2815a08d3302d8a4e0e4105f12a297b3de1148786d299451741110c744 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-13260---13660-in.json b/source/parts/detail/e/estes-paper-ring-13260---13660-in.json new file mode 100644 index 0000000000000000000000000000000000000000..22b9eeed19354b2b63c9547c7f3c21d6e94f85d6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-13260---13660-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455f3d8a328aa7988198d2928cb4ab7a0dd228ca3108eb9902cdf9ed8321459a +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-14400---15900-in.json b/source/parts/detail/e/estes-paper-ring-14400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0ade211e8affc68822c690ec7b9921be91fb2f4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-14400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621d6ec79713955b332c02051a54e1a96b5bf935b83636779d65f824dabcd84f +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-14700---15900-in.json b/source/parts/detail/e/estes-paper-ring-14700---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d13d359ff7f6bfd18fb35046099b3838323a8df2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-14700---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac0a3976758bd39a1c0384ed3d5b4b702587d7b02f255818d51f9dbbf54ae6c +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-14764---15949-in.json b/source/parts/detail/e/estes-paper-ring-14764---15949-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33470243c400e45c4f619ef1573de162dcb4eb45 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-14764---15949-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfed221211b5bcc5cdb424652c2a00c9b6c619fe3eadb9aee24390c90b19d41 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-14900---15900-in.json b/source/parts/detail/e/estes-paper-ring-14900---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b707be28b1af0c8fd7ae363df29a45352412258 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-14900---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d713231c4520d5a8208627304319c284a4093052e1e437acae9f250d8d1cd3a8 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-14900---15950-in.json b/source/parts/detail/e/estes-paper-ring-14900---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75f995e56ec7d246846901e419682f38ab6028b4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-14900---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70e932656d36cb7c34085d2b33f9811eee46025e1abe1780d7709275632fa07 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-14980---25000-in.json b/source/parts/detail/e/estes-paper-ring-14980---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b7dc75aa390895cbd7b47e85a8ed4fbe3e3e973f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-14980---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880ef9f2437680d166800407a56689fa01b6b7545603d250a4400dceb7975f07 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15000---15900-in.json b/source/parts/detail/e/estes-paper-ring-15000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f529da502748a29f07a1230e3a8db1ffa794aaea --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6115f3d8c6b72c00dc1fd9937fcc08ac0127e6870fb82ba73fe134cc4b28c7f6 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15000---15950-in.json b/source/parts/detail/e/estes-paper-ring-15000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..592eb5e20dc82f9932565b790d4b9f2386ccfe14 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f27a2d7c3eade757629055eda1b6570cb8843817c5e111461c8193389f090d +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-15299---15949-in.json b/source/parts/detail/e/estes-paper-ring-15299---15949-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76272208e75d887cf2edf49c8c4b4795cf41ebc1 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15299---15949-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d51ccc04089b2d371a41c8a0d3f0460b3afbb07b4740e609b47a9eb6a80ecd9 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15299---16000-in.json b/source/parts/detail/e/estes-paper-ring-15299---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4effe775f4b2da3c8fd368e5119eb3efb07f791d --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15299---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d5142a195f78788b478f6c38c32698d18cd1299bcd25a9dbeedc790049827e +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15300---15761-in.json b/source/parts/detail/e/estes-paper-ring-15300---15761-in.json new file mode 100644 index 0000000000000000000000000000000000000000..34c25290555a3cea6a0720d09ba3ef0a83002bf8 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15300---15761-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595424babe4068d9636b9d92f253ff4c6cc88fc51eeab3e0873c4ebe5530c463 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15300---15800-in.json b/source/parts/detail/e/estes-paper-ring-15300---15800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53229b2695a94c2be3784d9f35f5ced7a4d10763 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15300---15800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:349ab24d2f9a5bec900dd0927ea4943b2f50ad61f3ad5fe0cd1aa0a9d539fb0c +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15300---15898-in.json b/source/parts/detail/e/estes-paper-ring-15300---15898-in.json new file mode 100644 index 0000000000000000000000000000000000000000..849c305e08effa3fa09581ef9b2efdc9955f68b9 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15300---15898-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56542bdf0f5d6c1ef1ce7f4f4e4de07962fac01ddef08ac679bedab18450a7a8 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15300---15900-in.json b/source/parts/detail/e/estes-paper-ring-15300---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..91585997b3e1f05d51f43bf18a3d001e1f98c9d4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15300---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc20f01edc2e7398e69f9b14177e7fa4795636f094fa19b3c9ab399dcc3e1778 +size 449 diff --git a/source/parts/detail/e/estes-paper-ring-15300---15902-in.json b/source/parts/detail/e/estes-paper-ring-15300---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..992f89258dc8d0c012d6964323d62571f33f8166 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15300---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b67e0b5193a4d50108f7a415465818bc5381e2db150068d2a7c40b346d27c13 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15400---15800-in.json b/source/parts/detail/e/estes-paper-ring-15400---15800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5593c384a5476a578bcd19f4a0b666852ab0c846 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15400---15800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bdfbf385031a4f3c6d3b449110b245dbfde40c3f58cdaa6162ea0df125365e +size 450 diff --git a/source/parts/detail/e/estes-paper-ring-15400---15900-in.json b/source/parts/detail/e/estes-paper-ring-15400---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..441b241b9676ce1be2e05412e46f1b70f7db95b6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15400---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f33c26f7d95c7fc54fbcf582dd1aa1a5f5cbfae5920ef9d9de8e89ed8113fa +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15500---15900-in.json b/source/parts/detail/e/estes-paper-ring-15500---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7158b37b5c94dfcf6634b10ac8b91ce13005bcf1 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15500---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a63999b0baf9489a1f72fb9ab749a913bf72664558f859e80d3cbe8efa376748 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15500---15902-in.json b/source/parts/detail/e/estes-paper-ring-15500---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5cf9d4e5646d40f965cdde1467e05cd897f51d8d --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15500---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbbde67cfcffd91abf104873443b9705406771d33fab76eeda769f09a5cbaba0 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15500---16000-in.json b/source/parts/detail/e/estes-paper-ring-15500---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..103db73e95a167047a02c8778be920289573d381 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15500---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ada62ba137db6e25afa366b1520a2b7134497191ea0f5f55e2c2c10ed0e28d +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-15783---15902-in.json b/source/parts/detail/e/estes-paper-ring-15783---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8eb3d03e7844b9b4311509910374b87cfe1525f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-15783---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd269da55cb57ecdddf95ad72db9354abc8eb03a11e2031940ce801833dee0e +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-16400---20000-in.json b/source/parts/detail/e/estes-paper-ring-16400---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3aac866317657472d117fc68a29d56f48d70aaf --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-16400---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d1eddafb3af72f2f54572ca9b502ac8d65a75323aae0c5892709d68253d7b87 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-16400---25550-in.json b/source/parts/detail/e/estes-paper-ring-16400---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89b7044ebca148909c120ac3b4439a74d6c62f2f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-16400---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b277f423714fac31a131029bfb1f258dee4a4647327965fd33fd29097102ee2 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-16600---17500-in.json b/source/parts/detail/e/estes-paper-ring-16600---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d5c3571b8151e054a3d266a79ef12f738e9ae364 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-16600---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b9d7eb2b99a45b93bd2d9b2df835172481c51731667144b324f60afe618aed6 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-17500---19685-in.json b/source/parts/detail/e/estes-paper-ring-17500---19685-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce580948468d860b957b38b607662cf225888141 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-17500---19685-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:323438d3495b760e49d908ada8ebc9baaf03906d6af544e83bf5a8ae9ec06c69 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-20900---21250-in.json b/source/parts/detail/e/estes-paper-ring-20900---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f43906c7fde41c77f1119693ddfa05ee01397e44 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-20900---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20a65e387835c84ee9f5c170d19e8c80cc11344bdead4af73663bfa8872e84d1 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-20900---22500-in.json b/source/parts/detail/e/estes-paper-ring-20900---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2689af6b6cdf102f2a89e8b74fe693085167002e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-20900---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c54339df3c7e85f1f392f6c8b9d31b9ab7a8c324ed36d97d09a5560cfaa8022 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-20900---25580-in.json b/source/parts/detail/e/estes-paper-ring-20900---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7297f46816131075ef0a7c6cb06cfbe192ab5eca --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-20900---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:126d141aedb422fb13865cea074d5262462ef69bee04f0702311a39ca76e44a5 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-20900---25880-in.json b/source/parts/detail/e/estes-paper-ring-20900---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01a57639d7c49fa1ca804ac4601b203c8971042e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-20900---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e74742aade2ab3410c429578f88442c5499666ca9ae68a408512c8156abc18ca +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-20900---25900-in.json b/source/parts/detail/e/estes-paper-ring-20900---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad1aca11d89b600c54f1b1b99922e10efeae34a0 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-20900---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618ebbc84341c960bdbfe535a41cd6e85bf6057c7780efb038f3e0783d5cc0d4 +size 459 diff --git a/source/parts/detail/e/estes-paper-ring-21150---21750-in.json b/source/parts/detail/e/estes-paper-ring-21150---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff6c3b3d68889d52b16d9259ad58a91512ee8da2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-21150---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f600f224a97c3a2cbc5a91e81191e2b4bbdb458c4c03fee29dfb3f3d4ab30dc +size 452 diff --git a/source/parts/detail/e/estes-paper-ring-21350---21750-in.json b/source/parts/detail/e/estes-paper-ring-21350---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9318181e5f7edbca41384b0108c1992d77336f1f --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-21350---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87492f390d78fa078009e8441ddb313c15a5b9ead006412f8965fc8ff9bc471 +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-22000---32283-in.json b/source/parts/detail/e/estes-paper-ring-22000---32283-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4fc80d1a0fcbf78a70e2d1e41ebf8972ddeb25eb --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-22000---32283-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc09b62ef5a9d29d58492fda7123ecfab44b7aafad1838c143ce5012591ba41e +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-23500---24300-in.json b/source/parts/detail/e/estes-paper-ring-23500---24300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..743f60d96165bc1d0b63d06ff3838e951593cb73 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-23500---24300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51dccaad0371a74f6b5441cb07ce006be0587e836a943395cfbf57d468c6724c +size 446 diff --git a/source/parts/detail/e/estes-paper-ring-24000---25000-in.json b/source/parts/detail/e/estes-paper-ring-24000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..777434075083b1d61793872ce942438d16956814 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-24000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66bd816be8e554fd2e5fd570d6d31878922d7c27eca9856735145c1020a9d06b +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-24550---25550-in.json b/source/parts/detail/e/estes-paper-ring-24550---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a10dd7f22324c183647411f3c642fb97dc1909e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-24550---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da4944e4f83eb0ad4c7bed71549b73bae471db9347cda63d01d1569f9b077d4 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-24700---09500-in.json b/source/parts/detail/e/estes-paper-ring-24700---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06fe8a238374d294b86bfad4a93a50d73af263f2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-24700---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3444ea227464914a3a6cb716426997bbe51854665b06ea9f07b435e153199d3e +size 445 diff --git a/source/parts/detail/e/estes-paper-ring-24700---25900-in.json b/source/parts/detail/e/estes-paper-ring-24700---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18906404181c65802f1a3c23f15e4810b5a09ad4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-24700---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf7587485fcb9a4bbf7d84d66130432a8c9e82283d9f6bb41856b90e2b15cbe +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-24700---38960-in.json b/source/parts/detail/e/estes-paper-ring-24700---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07c31075b2ae05613e3cff557195a69594b1a57d --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-24700---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18b6ff303817c03b3bf901325b8fcc0e5f2a97545a34c5a38b9ae69d2ac70c5f +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-24740---25540-in.json b/source/parts/detail/e/estes-paper-ring-24740---25540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..790993e90e0f528f5ab87aa5b7235c95f84a9a16 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-24740---25540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2691c82f414e4444822c46374aba991a70f21fecf758c98e16189e4f8ce030d1 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-24860---25540-in.json b/source/parts/detail/e/estes-paper-ring-24860---25540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ed4265307c0375e01b57645ed4dda3e7b8f8001 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-24860---25540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3efb06462f2811d33624210efb1abd8429f3816472fe399b72cf17cfc20084bb +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-25000---25500-in.json b/source/parts/detail/e/estes-paper-ring-25000---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3def9491953eb5b84acb4c6de4773ee2b5a29f4 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-25000---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068c136e1052d064c7fe072376307e297feda02e8ebc0fb6809510d7c623297f +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-25000---25880-in.json b/source/parts/detail/e/estes-paper-ring-25000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c2ae23dc03b4049d0a04fabe13a371e21454053 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-25000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6db3981d573a6171d5d7702fd7a8d3487ea2385040b97c7db635e3df43c4161 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-25100---25900-in.json b/source/parts/detail/e/estes-paper-ring-25100---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e15287b8d7f2c180a93701eaaa7b2d0369f0834 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-25100---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ff0f408cb3c18d65ef6f39f41899a156f7fd318889970fcb5e4e9e7ceee703 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-25469---25900-in.json b/source/parts/detail/e/estes-paper-ring-25469---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4c94788b37a8307a263a300536a7c49b58030056 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-25469---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53210c0a67e6fd83e6a5ba3d1e4bc88d8e376549c3a08e8e7769850a81d52697 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-25500---25900-in.json b/source/parts/detail/e/estes-paper-ring-25500---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c3de26837e2237f0888306573698562b971b1257 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-25500---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcabaee0828e27f7ece2faa8d24c07c2e8993a385be309cfdcd11504378fd32c +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-25800---25900-in.json b/source/parts/detail/e/estes-paper-ring-25800---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7bd0c4acf7f4a813b807181f7101e854a57fad2 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-25800---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c8a0196c9fd0e61502805c35b1d7388a455d0da3cc02db8c3e1925b6ce7bc6 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-27100---29000-in.json b/source/parts/detail/e/estes-paper-ring-27100---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ac54273434599345650b0de416123fa82e72f92 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-27100---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a660b3821e290989717ea9798fe45c901ab596c7599c565b4efb6debec8f3e30 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-28500---29200-in.json b/source/parts/detail/e/estes-paper-ring-28500---29200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f1841d8a086c8c2f8067586a493395bf4aa66f8c --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-28500---29200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cef68be015e4bce0c70222ab6fb2139ab30d436a88f2653a4dd8e07a8ee13b6e +size 412 diff --git a/source/parts/detail/e/estes-paper-ring-36680---37020-in.json b/source/parts/detail/e/estes-paper-ring-36680---37020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e16d24a8f067742659f7d20a10b451ba1757f626 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-36680---37020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bdb0515c9dd11dda1e3276f187d2162b82e32f2b6285c710ef80784c4376ee +size 459 diff --git a/source/parts/detail/e/estes-paper-ring-37700---39600-in.json b/source/parts/detail/e/estes-paper-ring-37700---39600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..899be38937d7bd4fef3365d08b571a379a46fbee --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-37700---39600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a09cdedb73e127d9a4c4b818e88a7d9b7795423772678884e2aa5e253294d40 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-38100---38960-in.json b/source/parts/detail/e/estes-paper-ring-38100---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce24013a9e23eaead26fe6234a88d0702b2961aa --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-38100---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d49c023b8e9317a096d6c788f28cfd3d4fc98e2b3ec80522a23b62b6271d05 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-40800---53800-in.json b/source/parts/detail/e/estes-paper-ring-40800---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..61af0eff16490f5f00a72bcec5fd2f42662df2f7 --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-40800---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c508b228c04e44490fe9b79cedbe7bd9ba9958b336bf012effe5281b3d3b19c2 +size 444 diff --git a/source/parts/detail/e/estes-paper-ring-61600---63750-in.json b/source/parts/detail/e/estes-paper-ring-61600---63750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8df8d11fc4beedb246122640b3fc55371f874f6e --- /dev/null +++ b/source/parts/detail/e/estes-paper-ring-61600---63750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09b0784abf7798d06b780cec44b8d3a263870be57b76e14e0cfe8802f8b599a +size 412 diff --git a/source/parts/detail/e/estes-paper-streamer--in.json b/source/parts/detail/e/estes-paper-streamer--in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f14cfdda926f230ad5aa5bc95c02a76802855d6 --- /dev/null +++ b/source/parts/detail/e/estes-paper-streamer--in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d3420134caf760023f9d4375a2f1bb264851feb0b65e6653bf9db8c41c2d474 +size 382 diff --git a/source/parts/detail/e/estes-paper-streamer-00008-in.json b/source/parts/detail/e/estes-paper-streamer-00008-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79ecfdf39294befa5abde046b278f1ab0bd7d44d --- /dev/null +++ b/source/parts/detail/e/estes-paper-streamer-00008-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3072f6108685b461eb2a92db7470c3b62ef8fd48bbb388123c0ab7c1c370570 +size 392 diff --git a/source/parts/detail/e/estes-paper-streamer-00050-in.json b/source/parts/detail/e/estes-paper-streamer-00050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a956e03b2468706f47dd20884f5cf0cb2a6e805 --- /dev/null +++ b/source/parts/detail/e/estes-paper-streamer-00050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0265a7620f7ea7cd0e4128b85e504d77e7798b3d04c520ce289cd80472486b8c +size 392 diff --git a/source/parts/detail/e/estes-paper-streamer-00060-in.json b/source/parts/detail/e/estes-paper-streamer-00060-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94808021366f34ce88a345d6a5e722b6c8e5050f --- /dev/null +++ b/source/parts/detail/e/estes-paper-streamer-00060-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d717fabe5826589e43cd91ce41f86e070cc54d23898fc848a749b7267612178b +size 393 diff --git a/source/parts/detail/e/estes-polycarbonate-ring-06496---07087-in.json b/source/parts/detail/e/estes-polycarbonate-ring-06496---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80e13c8a7308c471c4e06e313950f11a0371ac91 --- /dev/null +++ b/source/parts/detail/e/estes-polycarbonate-ring-06496---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3352a49a78d28a18b7cdac6415fa1b46fd488422930d2aaa142f33132f5fd60a +size 472 diff --git a/source/parts/detail/e/estes-polycarbonate-ring-11339---12598-in.json b/source/parts/detail/e/estes-polycarbonate-ring-11339---12598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28c6a1934eff4a322276a9c56f8f23c7ff816e5a --- /dev/null +++ b/source/parts/detail/e/estes-polycarbonate-ring-11339---12598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d42a21d8f0c89bc2b4c26949de738c538ba004a00ad1ca01fcfb42db6f2b127 +size 468 diff --git a/source/parts/detail/e/estes-polycarbonate-ring-11900---17500-in.json b/source/parts/detail/e/estes-polycarbonate-ring-11900---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28bb5d7c979c9ae628fad235b67ff961cd95e26e --- /dev/null +++ b/source/parts/detail/e/estes-polycarbonate-ring-11900---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd87a39cbc011d8ac007d1a4ec3ad8b054f912d5e1ba010e615d332ec2df890b +size 471 diff --git a/source/parts/detail/e/estes-polyethylene-ldpe-streamer-00010-in.json b/source/parts/detail/e/estes-polyethylene-ldpe-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..738797f40be60c7897236bd27fd1f948183aff5e --- /dev/null +++ b/source/parts/detail/e/estes-polyethylene-ldpe-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6b08ed48fe505061c961f77386a30c641dd7ecaeba733016462c6327223298 +size 440 diff --git a/source/parts/detail/e/estes-polyethylene-ldpe-streamer-00060-in.json b/source/parts/detail/e/estes-polyethylene-ldpe-streamer-00060-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b92fab01ae345a61748fbaff70edd096e960aba3 --- /dev/null +++ b/source/parts/detail/e/estes-polyethylene-ldpe-streamer-00060-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a6eac87d40e0b03cefbeff91a3fca2f4efe780a15831e6a26f9ae3ad66ae19b +size 441 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-00000---13000-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-00000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e09c74fd737505430fc520d56e47e5433bde275 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-00000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9bb011bf1db126b921dd8447f9e544b831111fc648e12a93879ff393363d47 +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-05000---06000-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-05000---06000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9faaf385e6bf53af63d6f2362b4fc00683efc10c --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-05000---06000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d01a961f59a3aae8c07a06a1788ab3a06f0109e756d88fd2e744c538f01f020 +size 493 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-05118---06400-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-05118---06400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf6d59a6846022a46b9a8d50210a3ff854abf8c4 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-05118---06400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65944646f0be0a28b8f316a650cd7f7ea144e01bd701e00c2a11e859b888d726 +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-05400---06400-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-05400---06400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d44576737a5a5a0708e0ccf89ee9513afa671b27 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-05400---06400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7125d7c4f058b7bd7cbdbe280cd80483cef555827987343d09221bfa252b13f +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-06508---07100-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-06508---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a1be052d8661910ae8bbc118ed0a1a879ed4dab --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-06508---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac6389fb933d8b04780734279e293866bef84e016543ec1352d4a72b58867a7 +size 475 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-07360---11875-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-07360---11875-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9114dc7ad09323819b535654df26aabf6578c5c --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-07360---11875-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72079cb9cd76ea8d204fe04c8fa6820d98a17f9752c8b913026239cdad57983 +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-07360---12800-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..916575ea1b5be21ee42f11f7428661e677525fb0 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955ef972eacf9bc62a857853172607fddd99eb20e466186d87996684f514b00b +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-07362---12638-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-07362---12638-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a523d3967d587d0468899f5873f42170a72fb351 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-07362---12638-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd35f3d93ba35397e2126f2a07283b611ed8383337f5298aea140c3163aaed23 +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-07362---15500-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-07362---15500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..478a9e2a09d0c52ad838dc8f1fc28c0f6c7eb125 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-07362---15500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20979f15b9476ef71c47b5fc971079e5c1feae562829751f8878853221aa7e74 +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-07500---09800-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-07500---09800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d62a9e7039b6fe2ae416591d8c1e8bcff03e875d --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-07500---09800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b821dd9ff4d3f06235d2c77290eb449bb8eea41bcec5365cacd8dc9f08edac +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-09760---12800-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10f568e648380e32b150414be49a8196d1ba5d34 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b19f8acaee0bbf319e632f8e5e00eb2d85765ce1bf95297fabf516cc5976b81 +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-09760---19685-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-09760---19685-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6b0e0536ca989c7b3c0bb14b731809bfe245509 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-09760---19685-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be1ef61c8381d79aa60800b927b7170e54cf58e956a866e572b9b5d7dc475b5f +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-09800---10400-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-09800---10400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b7b8cb9d762cf74468ef21542b1d36e2e5bcc97 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-09800---10400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a22c17dd41565e70776d294097adacaab0d01190530f246e5193157721b476a +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-09800---11900-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-09800---11900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8a8848da29f345a14a39a1557c8be600bbbfb607 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-09800---11900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1bedd8c7c1646b90fb174e7ead7740fd9642b6ebd5f0e3009f0faa6ac63e972 +size 476 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-10000---12000-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-10000---12000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c15e672c61fbe1dddb184bbac17da49ac93fcdc --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-10000---12000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa147354054c970262782f61db395a94fd88d1c6e5320a714d5e1425f6f44e5 +size 474 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-10100---10900-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-10100---10900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9d271ca638ee19dd6debca867426e00e6d0c136 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-10100---10900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5317958977563f5018aab5db76b89f11068fd435a677d199414833c17d43ce68 +size 473 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-11500---14100-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-11500---14100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c160823ab50029184e44ff9bc0ced42ddb118632 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-11500---14100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd1e46c8af94c43af1c8c15840d254be41ee3b00f134eaa46706bd37eba89da1 +size 474 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-11900---19500-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-11900---19500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9fa11bff2f56887212fe2e1266a32c82afa0a92b --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-11900---19500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42397a9feef45317e753f65c1a0e59bab08677c4c85ece2f94778ae554f334bf +size 474 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-12000---14400-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-12000---14400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bab3e79f31922b40a2c0165ad74b8011db2c1125 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-12000---14400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303a0b2e982dc0bab05f21a79649dc4e4255b063eae014afc0f0fedab1e40f02 +size 473 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-12160---13040-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-12160---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94c5c524e0548053ad254bec43936f11a67326e0 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-12160---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd7f8a489eab63d501540c3fa86b13e6097da33ef31fcf45530bff27a260a72e +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-12200---13000-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-12200---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86801128ca6a0b6a2e19c2023c31a083f20beb18 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-12200---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399a3c93e45cb93e5fdedeba4517cd177d396cb8571e017e7cc998a3ae7c89f0 +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-12567---13040-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-12567---13040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aee4544c3db6468983a4829dcf0230f2e6ff4aa2 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-12567---13040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6b512d42ceac52122e819befad9d7cf35e29b2f47b3491a10006ddb66673a1c +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-13039---13461-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-13039---13461-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5c1b623b2e20085d8bb90d00efd98ed4662ee40d --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-13039---13461-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b3cd29158d73517d4effa15f539b5db0b69194c9516ea56d680d60f16a4d3f +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-13400---14375-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-13400---14375-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a7d5b0e567ecc85e0b85dd57e3368533ab01af1 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-13400---14375-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2cc8eb17056bb9acaf167f6447cc3eccb5e42f46b096235e8f0e60adf0beed2 +size 473 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-14700---15900-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-14700---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8186fd3080cbbda98f4c420be381d1fcaf84665 --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-14700---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534480ab5446426a54239532ae0bcfc4e848fb5f7a79ed8ef91dbef5718385be +size 471 diff --git a/source/parts/detail/e/estes-polystyrene-ps-ring-15600---16000-in.json b/source/parts/detail/e/estes-polystyrene-ps-ring-15600---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..892a5f1baec3317422833572202538ac5e51a42b --- /dev/null +++ b/source/parts/detail/e/estes-polystyrene-ps-ring-15600---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd44ff7f7f4514fc8842751aec7543049ba209477d31894bcb32aad85335891d +size 471 diff --git a/source/parts/detail/e/estes-powerseries-transition.json b/source/parts/detail/e/estes-powerseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..1d6a5f4d5bff00084629e38c8ace7395c33bd222 --- /dev/null +++ b/source/parts/detail/e/estes-powerseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c93e3e3395ede1f457bbe487003244c5768e0fed7980c66eb3f93ce71617a53c +size 592 diff --git a/source/parts/detail/e/estes-pvc-ring-12500---15000-in.json b/source/parts/detail/e/estes-pvc-ring-12500---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3a2ff0a2f78d95b1c749479be332d4bc4af4eda --- /dev/null +++ b/source/parts/detail/e/estes-pvc-ring-12500---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74f4198ab21230d534919aa305549e4e3379461350ba337c8588371473a7c03 +size 430 diff --git a/source/parts/detail/e/estes-pvc-ring-15000---17500-in.json b/source/parts/detail/e/estes-pvc-ring-15000---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe162a216f95358e628a1d546b3f84b810ef56a3 --- /dev/null +++ b/source/parts/detail/e/estes-pvc-ring-15000---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6afc2fe041fafedbeba2da827908e098d7703da1632c006cd97bab254243a9 +size 430 diff --git a/source/parts/detail/e/estes-quantum-tubing-ring-20900---25600-in.json b/source/parts/detail/e/estes-quantum-tubing-ring-20900---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2a1d2ff3c57d1ea435d0325579c07f8df77081e --- /dev/null +++ b/source/parts/detail/e/estes-quantum-tubing-ring-20900---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41eac82d8e03e1130bf321a582c355404f265ddfd7309d1c62bdde742c0e19e1 +size 471 diff --git a/source/parts/detail/e/estes-sc-1b-18-in-rubber-shock-cord.json b/source/parts/detail/e/estes-sc-1b-18-in-rubber-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..b14d9723d8f04c64dc100d61246dba213bfba0fd --- /dev/null +++ b/source/parts/detail/e/estes-sc-1b-18-in-rubber-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac49c9e0f401f4e9bdb855ecb6496099dd414e937ec6fe34437d1f6153532ebe +size 421 diff --git a/source/parts/detail/e/estes-sc-1b-shock-cord.json b/source/parts/detail/e/estes-sc-1b-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..5466a73be3ce768b431709bdd22d614e014602f9 --- /dev/null +++ b/source/parts/detail/e/estes-sc-1b-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:726b29e589ac708fbdf5963d1e8d09a092775398bf56788432efe718c92ecd8b +size 357 diff --git a/source/parts/detail/e/estes-se-2a-screw-eye.json b/source/parts/detail/e/estes-se-2a-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..485accb6a6bbfbb172e7d6178afe613406757eb6 --- /dev/null +++ b/source/parts/detail/e/estes-se-2a-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:981ef778924d7b964c9c0d78ce8f3cf38ccdd1e09e2f893ba7eb9b00a694db11 +size 353 diff --git a/source/parts/detail/e/estes-spiralglassine-ring-05410---06035-in.json b/source/parts/detail/e/estes-spiralglassine-ring-05410---06035-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e628f0094f6aabc2809e5e9501a1a0d23d43fab --- /dev/null +++ b/source/parts/detail/e/estes-spiralglassine-ring-05410---06035-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aba73f1780203bae4b6395e588fb8f69f93e38a50b5c7a1df39ef0ab6196f8b +size 474 diff --git a/source/parts/detail/e/estes-spiralglassine-ring-07360---07441-in.json b/source/parts/detail/e/estes-spiralglassine-ring-07360---07441-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2fb367ef5fe1989fe6c9440c96d677b2fc68da57 --- /dev/null +++ b/source/parts/detail/e/estes-spiralglassine-ring-07360---07441-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeccf06e87d8bae67ef0b1e4b0d9aeee7254123d7221e869fa03a7c3baebb569 +size 462 diff --git a/source/parts/detail/e/estes-spiralglassine-ring-07590---07700-in.json b/source/parts/detail/e/estes-spiralglassine-ring-07590---07700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbbb65bdb2100f1ff290065d2db5463f1ca32f8c --- /dev/null +++ b/source/parts/detail/e/estes-spiralglassine-ring-07590---07700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9ea1450c3198ee4322e5826836099a82523a98815eb1448966ea46cab3363b +size 494 diff --git a/source/parts/detail/e/estes.json b/source/parts/detail/e/estes.json new file mode 100644 index 0000000000000000000000000000000000000000..42ef094af54ad566783040d0b74493f9478de365 --- /dev/null +++ b/source/parts/detail/e/estes.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef1cc65663dcb8b9ee7f4035a58f653e7fd1f8aba86928fdf5d4bc33ff3bde1 +size 287 diff --git a/source/parts/detail/e/external-loop-quantum-crapien-av-birch-ring-00000---75100-in.json b/source/parts/detail/e/external-loop-quantum-crapien-av-birch-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..483839c76455063c12c1a80f0ab61e4cb992da69 --- /dev/null +++ b/source/parts/detail/e/external-loop-quantum-crapien-av-birch-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52a7223994b9e158842dc75817a26d0ae843d354ee40127943d3063911871fa8 +size 573 diff --git a/source/parts/detail/e/external-loop-quantum-crapien-av-g10-fiberglass-ring-00000---75100-in.json b/source/parts/detail/e/external-loop-quantum-crapien-av-g10-fiberglass-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0820b7cdb0c63a0da9399a19edddd7053a0afa8 --- /dev/null +++ b/source/parts/detail/e/external-loop-quantum-crapien-av-g10-fiberglass-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d37a94c275ebffb5a7dd0692ed8bc324101365f615cc2310c232da2b2cb81d +size 600 diff --git a/source/parts/detail/e/eye-bolt-3d-rocketry-14-eye-bolt--nut.json b/source/parts/detail/e/eye-bolt-3d-rocketry-14-eye-bolt--nut.json new file mode 100644 index 0000000000000000000000000000000000000000..cc6cb5476aee8015af5fb4d2113e36bcd5cba73b --- /dev/null +++ b/source/parts/detail/e/eye-bolt-3d-rocketry-14-eye-bolt--nut.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe1752adee3b65c8f2ddb66001f5fed7ace23177a9af26dafc9dab318920247 +size 421 diff --git a/source/parts/detail/e/eye-bolt-3d-rocketry-316-eye-bolt12-nuts.json b/source/parts/detail/e/eye-bolt-3d-rocketry-316-eye-bolt12-nuts.json new file mode 100644 index 0000000000000000000000000000000000000000..8b379aa504d2bd0a0a94d88d8e7f4702831eb672 --- /dev/null +++ b/source/parts/detail/e/eye-bolt-3d-rocketry-316-eye-bolt12-nuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe2fabf44e349b189f77326ac4f2fac98aecdfe97beff973314929f0c56cff13 +size 435 diff --git a/source/parts/detail/e/eye-bolt-3d-rocketry-316-eye-bolt22-nuts.json b/source/parts/detail/e/eye-bolt-3d-rocketry-316-eye-bolt22-nuts.json new file mode 100644 index 0000000000000000000000000000000000000000..4ae924047b33e104329e4da58686209efce4c1e3 --- /dev/null +++ b/source/parts/detail/e/eye-bolt-3d-rocketry-316-eye-bolt22-nuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7cd5d1f1e0c8b5e10b8add996919f50f023393fb60b85b70042e930c8c4d36 +size 435 diff --git a/source/parts/detail/e/eye-bolt-stock-eye-bolt-14inx2in-wnut.json b/source/parts/detail/e/eye-bolt-stock-eye-bolt-14inx2in-wnut.json new file mode 100644 index 0000000000000000000000000000000000000000..e9142eedb0e329777097f39cddf0876bc76065d4 --- /dev/null +++ b/source/parts/detail/e/eye-bolt-stock-eye-bolt-14inx2in-wnut.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcd6f0e0d859a926f54f9d2e2578df6dbb55f31f8697f32fd643eaa688784341 +size 421 diff --git a/source/parts/detail/e/eye-bolt-stock-eye-bolt-316inx15in-wnut.json b/source/parts/detail/e/eye-bolt-stock-eye-bolt-316inx15in-wnut.json new file mode 100644 index 0000000000000000000000000000000000000000..1c92262927c480efff79ba5011de0a75c6dbda39 --- /dev/null +++ b/source/parts/detail/e/eye-bolt-stock-eye-bolt-316inx15in-wnut.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b61295598122ec79be10070c86fa41efcf312fa0cf157a6d46b39acb55551075 +size 431 diff --git a/source/parts/detail/e/eye-bolt.json b/source/parts/detail/e/eye-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..b43890ed18e4afd8f03b80ee2961bb5d5c6c28a7 --- /dev/null +++ b/source/parts/detail/e/eye-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a2c71e5ba938fa94e5290ce9f628a1283f546f5f108d924aabf1cf546ecb1d +size 266 diff --git a/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-09760---39000-in.json b/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-09760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa4f1e37b02a8fdf077424908165d0da001ff660 --- /dev/null +++ b/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-09760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af83a0b95f422384c62bd63e8af3256b8b1916040731ba1f0b36c8454bdee019 +size 551 diff --git a/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-16350---53800-in.json b/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-16350---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..68c33a879b2057909f8d45cf61f3f52828908efb --- /dev/null +++ b/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-16350---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361d5325ea17d62ac147e412f9d7fe16e27d15cd9d6799c5b7a2bce98c1ef9f0 +size 551 diff --git a/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-40240---114100-in.json b/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-40240---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53c3dcf083f8cf3da81e4a12c7b070baf329aad1 --- /dev/null +++ b/source/parts/detail/f/fast-pack-rocketry-aircraft-plywood-birch-ring-40240---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f154a207e7a9cf7df6b19c9eb0429008c9b6b3bf4842adb0ab6630c5c7e2af95 +size 552 diff --git a/source/parts/detail/f/featherweight-altimeters-parrot-parrot.json b/source/parts/detail/f/featherweight-altimeters-parrot-parrot.json new file mode 100644 index 0000000000000000000000000000000000000000..72b4007b8a95587105d910fd11914fd295e48d0b --- /dev/null +++ b/source/parts/detail/f/featherweight-altimeters-parrot-parrot.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b21549749d0e68b532decef9115c2c74a973a354b4b0b544c1c6f98e2d37b68 +size 421 diff --git a/source/parts/detail/f/featherweight-altimeters-raven---perch-raven---perch.json b/source/parts/detail/f/featherweight-altimeters-raven---perch-raven---perch.json new file mode 100644 index 0000000000000000000000000000000000000000..294f3789d9fac1a70c9ca7447096df6752d85605 --- /dev/null +++ b/source/parts/detail/f/featherweight-altimeters-raven---perch-raven---perch.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:532ca0d05b0399ae7250f53d4dee01a810a88682f6eea778233272efdcd74bd3 +size 477 diff --git a/source/parts/detail/f/featherweight-altimeters-raven-2-raven-2-altimeterflight-computer.json b/source/parts/detail/f/featherweight-altimeters-raven-2-raven-2-altimeterflight-computer.json new file mode 100644 index 0000000000000000000000000000000000000000..51978b781c08458b2d4fc98dd1db24704520f88e --- /dev/null +++ b/source/parts/detail/f/featherweight-altimeters-raven-2-raven-2-altimeterflight-computer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00dc79593c71b27f9f719c8f8469ba10145c8ec68f30d39c8c746d71fdc9343e +size 531 diff --git a/source/parts/detail/f/featherweight-altimeters-raven-ii-raven-ii.json b/source/parts/detail/f/featherweight-altimeters-raven-ii-raven-ii.json new file mode 100644 index 0000000000000000000000000000000000000000..1b5e51abc7f1d9d3fd953b9b14e6e4cae36a0f75 --- /dev/null +++ b/source/parts/detail/f/featherweight-altimeters-raven-ii-raven-ii.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a4641fbda8e55d0d61e4e8f45dd768dd3dacade95c11caf90d7f2bdecef645 +size 437 diff --git a/source/parts/detail/f/featherweight-altimeters-raven-ii.json b/source/parts/detail/f/featherweight-altimeters-raven-ii.json new file mode 100644 index 0000000000000000000000000000000000000000..8cf61e23afa96dfd0b4ecd89010f812081b609a5 --- /dev/null +++ b/source/parts/detail/f/featherweight-altimeters-raven-ii.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd2ff549faed21bd65c80a389a620d03557a6f42d6a4faad49b5fd7235e614f +size 381 diff --git a/source/parts/detail/f/fiberglass-ring-00000---14500-in.json b/source/parts/detail/f/fiberglass-ring-00000---14500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cca3f64ea60f2ef4aaab579b43de617fb10e3f60 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---14500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31e11ae8403b3eda9347da074812e9ef20f7fcf1a898cc19a43df192a2ad345 +size 402 diff --git a/source/parts/detail/f/fiberglass-ring-00000---20472-in.json b/source/parts/detail/f/fiberglass-ring-00000---20472-in.json new file mode 100644 index 0000000000000000000000000000000000000000..217d37ef8f4959c7cab66571df1617a02bd0c4ad --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---20472-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e82effdd09de2a19bea0d3643fe64dc28456a228d777cce5682db6aad96ea43 +size 405 diff --git a/source/parts/detail/f/fiberglass-ring-00000---20709-in.json b/source/parts/detail/f/fiberglass-ring-00000---20709-in.json new file mode 100644 index 0000000000000000000000000000000000000000..38c65d5978fe092885dc7294391c2c1e547b81c6 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---20709-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d45cb2b6810b104b0ca3dad0f98109775ad539dbb1d3adf1068ceedcb4a4510 +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-00000---20915-in.json b/source/parts/detail/f/fiberglass-ring-00000---20915-in.json new file mode 100644 index 0000000000000000000000000000000000000000..117673e3a0f871b1446c134ea02b88c5a7c5fd71 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---20915-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ca212fe9ea901ab59d2bc263be074c0d6a29a52425d53f29d0fd3e496e0488 +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-00000---21067-in.json b/source/parts/detail/f/fiberglass-ring-00000---21067-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45d5524f08e5008bbe745f204d9e2a13a2930b2a --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---21067-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00802778f2a3597685da43a55cd48751adf3677f8ea93dd54ad66ff676442d5a +size 405 diff --git a/source/parts/detail/f/fiberglass-ring-00000---21260-in.json b/source/parts/detail/f/fiberglass-ring-00000---21260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb56792704e2508b06ea3d8b9728859d1afeae3a --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---21260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a2c43609035b4633d83fd7855f7238b9334c3b9cd48248c35d064d768f27e35 +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-00000---24000-in.json b/source/parts/detail/f/fiberglass-ring-00000---24000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..815bf4d4b2d66979e8b33440f556371de9f85d6d --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---24000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79658c408614c784e122b15687dd29b89e5d2d49ddf97f571aa71e0c0421505 +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-00000---24780-in.json b/source/parts/detail/f/fiberglass-ring-00000---24780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6049ed246f0f8b0bbdb4556597fb78da9f58326e --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---24780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c316cd467f8a36b08f02285873c4d9e7e23191f7d49e46c53179e85d72010c4f +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-00000---24935-in.json b/source/parts/detail/f/fiberglass-ring-00000---24935-in.json new file mode 100644 index 0000000000000000000000000000000000000000..710d3550794b4d41538806fc1689d23d0a0de1e7 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---24935-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:defaa7417ab3c73c5151e33bba227ded0e61df353c2ce1a9b8a68ffa94d0fbf0 +size 407 diff --git a/source/parts/detail/f/fiberglass-ring-00000---24961-in.json b/source/parts/detail/f/fiberglass-ring-00000---24961-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4c180d9ca4b1694f76ad88ba69211806b1c1be88 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---24961-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:172e28e5aceed3e717aefbd8b6818b0bc14e551c430c0f8d7d4b619cb05975e5 +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-00000---25000-in.json b/source/parts/detail/f/fiberglass-ring-00000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18b809812e5975784f828b7314dccab24b970bed --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a759a7457be5419cf73b3be99517d32c19d2febe66a2e336f75cb0c92c2d70b6 +size 397 diff --git a/source/parts/detail/f/fiberglass-ring-00000---25354-in.json b/source/parts/detail/f/fiberglass-ring-00000---25354-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c57dd257b0df261214db157456a1e508e6e4786b --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---25354-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2bac80f0764b1e985c2e007a6f5d441a79094482ab20f356ec5df118fc20a19 +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-00000---25600-in.json b/source/parts/detail/f/fiberglass-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a41c5265efcbea0256b8414ea00d045161ee67a3 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab0489eaf39d0c4a75934dd56b3dad4849903651a1e203879dd65b23fa612ea +size 405 diff --git a/source/parts/detail/f/fiberglass-ring-00000---25620-in.json b/source/parts/detail/f/fiberglass-ring-00000---25620-in.json new file mode 100644 index 0000000000000000000000000000000000000000..071d45f961f1b155a546836ba21f27695d39264a --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---25620-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec09f9f02d9a817704b0b06933874d4814ef6f7eae9b8c976d5ebdd12f10b8f1 +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-00000---28406-in.json b/source/parts/detail/f/fiberglass-ring-00000---28406-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d89bfa8cac2c3f939ec32192ec2c162dc508df3 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---28406-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae063cea9e68831f83392181e58fc7095c8b2a832a9e79a37e9930423a62e0b +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-00000---28425-in.json b/source/parts/detail/f/fiberglass-ring-00000---28425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fccd7a038663c1d42a72210bcaf5fa25fb99e88b --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---28425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b39a45ba45871f65447618fc6c0fe7abe333935c2c29b6ebc473278fcd9d43 +size 406 diff --git a/source/parts/detail/f/fiberglass-ring-00000---28750-in.json b/source/parts/detail/f/fiberglass-ring-00000---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c952287554b179a1bf39b2c7c5dbaebcdbe9a1c --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df2a7a6bc2928e60ef84f6540e84873f7b5492a4911b47ab520f0e954bca44f +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-00000---29331-in.json b/source/parts/detail/f/fiberglass-ring-00000---29331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2dac8ae6247c173ddb4709036b7b68165133c162 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---29331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e128bcf231667dc608b32f6e110c8169f50918b389a92d2494f59acfa09112f6 +size 397 diff --git a/source/parts/detail/f/fiberglass-ring-00000---29370-in.json b/source/parts/detail/f/fiberglass-ring-00000---29370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7466788cbb7223e217b1912a7b7b7bc28a6c3246 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---29370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76e73ce52565af3b58e78d910153b4f40e76f3ccc5ed8e61ed82e6654396d093 +size 402 diff --git a/source/parts/detail/f/fiberglass-ring-00000---29900-in.json b/source/parts/detail/f/fiberglass-ring-00000---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd640cee6383ab5f96ebb3e6a443cd1eaaa6fcdc --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96add2141bd7b457d41ea73ea99fc1347fa5ed76cca8c8be35402150fea396e0 +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-00000---29921-in.json b/source/parts/detail/f/fiberglass-ring-00000---29921-in.json new file mode 100644 index 0000000000000000000000000000000000000000..32206af6d8a09f743643c09abe5f8e8d79529ab9 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---29921-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e34d9b2ee8c1f993cff7feceae3622a4e3403bd085592df329d162b33aecdd3 +size 402 diff --git a/source/parts/detail/f/fiberglass-ring-00000---30000-in.json b/source/parts/detail/f/fiberglass-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..386b8382b2d7bcf4096fe642533e39df7b9dd338 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee18d9b75622139a6e4f9f45816e92f5e795706b21aa56cfbe3b2624e8fcf95 +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-00000---60000-in.json b/source/parts/detail/f/fiberglass-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fd21997ec9e6ca3c52d85b89fd210f651f7d1fd6 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bca315ad0d36efc8d1e06a693f83832dca791ac3428b7e48685db4e4bd6c997 +size 426 diff --git a/source/parts/detail/f/fiberglass-ring-07362---09370-in.json b/source/parts/detail/f/fiberglass-ring-07362---09370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9470feffb13f19aadf6b31a556e3721f151b144e --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-07362---09370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e770bb1cc85173571ddf167572f4f56ec92a7187d5a4cd1a1e4f5bb0e7e516f +size 392 diff --git a/source/parts/detail/f/fiberglass-ring-07382---09409-in.json b/source/parts/detail/f/fiberglass-ring-07382---09409-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dae618da1def852f78c90569f91ad400d62c2f65 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-07382---09409-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:900ff4837fdcf1002aff38abd0ea869188f6964d86c2bec419835c5b6fe0716b +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-07480---09331-in.json b/source/parts/detail/f/fiberglass-ring-07480---09331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75947d97e9d80b938432d91484e24621efe0a07b --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-07480---09331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0c458aa65385ce0af5d9492e3cf3aa6e91546e84e4e2e4a22f86ab3a9cf7e4 +size 395 diff --git a/source/parts/detail/f/fiberglass-ring-09724---12913-in.json b/source/parts/detail/f/fiberglass-ring-09724---12913-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08703b4726653c823e3bdec384644f2f6d1f3023 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-09724---12913-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a445eb4e14244d10605a151c12c171398d222c05aeebed66ef802e7275754c98 +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-09760---12830-in.json b/source/parts/detail/f/fiberglass-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff8cc79c27611489aa83d050818b6a4736d39112 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88fd088f0932a8a3dcde199076f17dde892359da48d980a9ae5eab15273db754 +size 396 diff --git a/source/parts/detail/f/fiberglass-ring-09843---12913-in.json b/source/parts/detail/f/fiberglass-ring-09843---12913-in.json new file mode 100644 index 0000000000000000000000000000000000000000..32b1a36914d6ed828814e4535d94b38cad0f4881 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-09843---12913-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83ed3c613d1b20ecc565f8132f3465e23739c54be2a55f6ca4a2caebdaf33ac8 +size 396 diff --git a/source/parts/detail/f/fiberglass-ring-10039---12913-in.json b/source/parts/detail/f/fiberglass-ring-10039---12913-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e0363fd275c8ca57d1cf9567b45f2b111788f22 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-10039---12913-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7839af294b6df403061627c012eccc474ff832fc79968e154c8739e0862a664c +size 391 diff --git a/source/parts/detail/f/fiberglass-ring-10039---15945-in.json b/source/parts/detail/f/fiberglass-ring-10039---15945-in.json new file mode 100644 index 0000000000000000000000000000000000000000..107f79c5d3eaeed4bb230663217aa319ca6e992b --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-10039---15945-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec35a7bf9c2a131c6dd5c9e4b787b42a9e75325eb4572afbd7c083e706699ddd +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-10040---15950-in.json b/source/parts/detail/f/fiberglass-ring-10040---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6d4f950ce98df5c46c84a17e1981f34d598a110a --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-10040---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fcc87b29f2d62c1bf24d81a5d86abbfc6d273a262ca3c03f1e7bfe2e1d3eb29 +size 398 diff --git a/source/parts/detail/f/fiberglass-ring-12126---15787-in.json b/source/parts/detail/f/fiberglass-ring-12126---15787-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b69dbcf2ed69d3e6a61baa5cc2cc329c169ec7bd --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-12126---15787-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:855e1580143731853920a9eadb9e66e287274cdebe78e1ae2b4e00cd663a3f2c +size 405 diff --git a/source/parts/detail/f/fiberglass-ring-12250---15180-in.json b/source/parts/detail/f/fiberglass-ring-12250---15180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b7b418dc014e2430386a8c53debf4f023fbad1d6 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-12250---15180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9775f2fd45fd405f6def27cecff6f5a8f6817edfc6113791a3361d94f20ee3f +size 399 diff --git a/source/parts/detail/f/fiberglass-ring-12520---14961-in.json b/source/parts/detail/f/fiberglass-ring-12520---14961-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2e5c9258441b4383da09f50e4cfa4449574f6956 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-12520---14961-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be55f5e363d921c995675b968ce6b55922875f5372e2c651c1f8587d2b83f771 +size 399 diff --git a/source/parts/detail/f/fiberglass-ring-13000---19207-in.json b/source/parts/detail/f/fiberglass-ring-13000---19207-in.json new file mode 100644 index 0000000000000000000000000000000000000000..05caeb745038e425502ab386dc450c71b88b52e3 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-13000---19207-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed996077a8f0f5d496d06b28939043d25414d77fcafa686e1f8843658cd1a3fb +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-15145---15945-in.json b/source/parts/detail/f/fiberglass-ring-15145---15945-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc93905c1a69cf3bd113924c1a5806942d64477d --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-15145---15945-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:133221fe2dc29c3c5ef72083df1deaa39c21b1fc765196ee60faf388a396a10a +size 406 diff --git a/source/parts/detail/f/fiberglass-ring-15157---15827-in.json b/source/parts/detail/f/fiberglass-ring-15157---15827-in.json new file mode 100644 index 0000000000000000000000000000000000000000..92efce41e3c884e9749fc7429143228f48f878f1 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-15157---15827-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:240deead2cca13d28ff979bfc6bc0d7040ad47cdcc85c8e6cfb94c01300bd2c8 +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-15748---21260-in.json b/source/parts/detail/f/fiberglass-ring-15748---21260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..91fc8cbc6089db67c7f59cb79ef66dee274a8d66 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-15748---21260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ddb07fb1eb883311745e88ba30c355c85b82f7ddedc21b66a6b1a46be498b7 +size 405 diff --git a/source/parts/detail/f/fiberglass-ring-15787---30000-in.json b/source/parts/detail/f/fiberglass-ring-15787---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b29131831a845a05aa0926471a10903f1f1cd39 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-15787---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e02551ea688507958ac41f3ad875c319c4bca3ef5e32f57bedf4f3027086df +size 397 diff --git a/source/parts/detail/f/fiberglass-ring-16000---22000-in.json b/source/parts/detail/f/fiberglass-ring-16000---22000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94b9d06c097e24f6c6dd57bc7cc4415250e04a20 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-16000---22000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ea3a6da0fb38177cde19af279b690a0d609b9b98a33b119feb7acacae211220 +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-16142---25591-in.json b/source/parts/detail/f/fiberglass-ring-16142---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7235fbcf7babec0fe1bfb4a29d432a3ad43ef054 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-16142---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6bc5d82eab47c4af84d11d20c55edccd39ad292668b423087214153b34c4b9 +size 407 diff --git a/source/parts/detail/f/fiberglass-ring-16181---21457-in.json b/source/parts/detail/f/fiberglass-ring-16181---21457-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3bf6db88a4ecd95268338e926f75d3666329f190 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-16181---21457-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1187d0714404db7e61c87cc93c973e25a9cf60481bde432676ddd5d8c886f36e +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-16339---21457-in.json b/source/parts/detail/f/fiberglass-ring-16339---21457-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36ed4651a8cc6b17ce1e2d5874fc8def5aeb83d7 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-16339---21457-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17fed31e8a5093ae7403486ffb3263a97dfe6cae1bf8cb9ee979e24732207a05 +size 396 diff --git a/source/parts/detail/f/fiberglass-ring-16350---25600-in.json b/source/parts/detail/f/fiberglass-ring-16350---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5c167c2629c6de1ce734dbcb896b752785813c4 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-16350---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b8876607b320b32892b71a9135d3197e3ec19a823e0e9bcd64fe0f5e6bf8a7 +size 405 diff --git a/source/parts/detail/f/fiberglass-ring-16400---25591-in.json b/source/parts/detail/f/fiberglass-ring-16400---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec4866e89f929e3a3149cf47c695bad41d93ebf1 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-16400---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642d3143d916452f2521a61f09ebcdfdf5db9979a97474de3d5f2c5bd8489acf +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-16780---25720-in.json b/source/parts/detail/f/fiberglass-ring-16780---25720-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4dc0639a166be2c92fc255011ffc78baca6060f --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-16780---25720-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f7012ca3f4eeda79a366633f0a6c532143242a6bd3cf4d573154b0eb027a7f +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-17626---20446-in.json b/source/parts/detail/f/fiberglass-ring-17626---20446-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e939782d462e9c7fbbb8c997680444a28cd0e380 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-17626---20446-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77c5039cbd3f46a93a09e01170361ea9f822fc1b1364cce33624b5db914b1bcb +size 401 diff --git a/source/parts/detail/f/fiberglass-ring-19360---21360-in.json b/source/parts/detail/f/fiberglass-ring-19360---21360-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddb5805b7ae901d4b592bf8b370c23a056fb024c --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-19360---21360-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26eb15b18c297d73e34cfdda5bde619fc1baebc1c75b9f189e958abbee57e4e1 +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-21067---21067-in.json b/source/parts/detail/f/fiberglass-ring-21067---21067-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc401552edef7e375375c06a5298e5dafce82b77 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-21067---21067-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a11ecd90756003dd05edc88a79f829e3e3332a38bd2d2c0525416b08bacd543f +size 405 diff --git a/source/parts/detail/f/fiberglass-ring-21122---21122-in.json b/source/parts/detail/f/fiberglass-ring-21122---21122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ffe059e81877c53c8a805432494b07ef17957d66 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-21122---21122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162334d9ee851bf83da2b88e81c1d553cd71d5f590371877d61059c43cb7d55a +size 398 diff --git a/source/parts/detail/f/fiberglass-ring-21457---21457-in.json b/source/parts/detail/f/fiberglass-ring-21457---21457-in.json new file mode 100644 index 0000000000000000000000000000000000000000..024e529d02c9dd7d66e61c8a6289724efa46615f --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-21457---21457-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df03cc9b33307a0a3e0c6bf34ee46420adc2a471f0a8fbffb924efe9a4cdbda4 +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-21476---22283-in.json b/source/parts/detail/f/fiberglass-ring-21476---22283-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b77b01a3b84f3d5389df9261750099a7367bc439 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-21476---22283-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebeaaa3b0b59d422d45f4ec07e97dcbe7c37d1950e6caa6d257535fb3fc24555 +size 395 diff --git a/source/parts/detail/f/fiberglass-ring-22000---29000-in.json b/source/parts/detail/f/fiberglass-ring-22000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..99ead5d0ba4f5d6c43df00c6dac7deedf46e2ae8 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a07594cd8b74212c8587857920c40b7afd2f5a4a86920faa7ec2e60a794477 +size 406 diff --git a/source/parts/detail/f/fiberglass-ring-22047---30000-in.json b/source/parts/detail/f/fiberglass-ring-22047---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f320905964e5d810b865f8da5b260ec9f19af10 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22047---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6af99b182f13d06589ed2bf53bb3c5ff1dda72c1b2b0b03ade1903fe3e5b6941 +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-22283---25591-in.json b/source/parts/detail/f/fiberglass-ring-22283---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eccac496741445e2b9c898fa95ebf9361dfe037e --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22283---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baad79f3734f6da4357aeb9649a5d2dfbf1d5921f2421564bba9775d30c60dc4 +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-22283---29921-in.json b/source/parts/detail/f/fiberglass-ring-22283---29921-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1bc2db8db5c5b29443255b34fe04f30d11bcf085 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22283---29921-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52875ee5c135fecf8c2332e8004158e02a193bdaa09136c06d48b3c345e90a9b +size 395 diff --git a/source/parts/detail/f/fiberglass-ring-22283---30000-in.json b/source/parts/detail/f/fiberglass-ring-22283---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff175900c88aad596944592570abafff572a1b2f --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22283---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45796c3e0d2fc0707917be67a1a1c436509870239b92cf1b5d7efc39f9742c69 +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-22343---30039-in.json b/source/parts/detail/f/fiberglass-ring-22343---30039-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1411fae2d4f4e638be9b1469e8b10cdb8c120bf5 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22343---30039-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d3aaa3cd9811c3fa702a3d84c3fcd2bbb660eff7ccbbdb92d56a739092a2e2a +size 395 diff --git a/source/parts/detail/f/fiberglass-ring-22441---29331-in.json b/source/parts/detail/f/fiberglass-ring-22441---29331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ed3a20a8792fdadbb16ab47982be7cb47ad09be --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22441---29331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c85c8ceb19b9189b530975dbae24aac20b75e4779658b726b9d7f98afd8c9f57 +size 397 diff --git a/source/parts/detail/f/fiberglass-ring-22677---30000-in.json b/source/parts/detail/f/fiberglass-ring-22677---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6561dafa7f7217c22f6e7cceca294a6369c17afe --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22677---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b77d6ef150061b00e05b338eaf82a10ed73dc907c360700a1a90f92bc0ccf3fc +size 397 diff --git a/source/parts/detail/f/fiberglass-ring-22697---29921-in.json b/source/parts/detail/f/fiberglass-ring-22697---29921-in.json new file mode 100644 index 0000000000000000000000000000000000000000..726a3adc29e71063c4d3f90652673528d3b0901c --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22697---29921-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc702e41cc49cdfbf5a6654db07e6f6eb36e62d296d022f35d323d01aad8d4fd +size 395 diff --git a/source/parts/detail/f/fiberglass-ring-22697---30000-in.json b/source/parts/detail/f/fiberglass-ring-22697---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aef485cc63cca16d0099c32b15b465584464d373 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22697---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7d3db7cb82f122a5d0222602292e8ef3f8d23e22192feb5391bac6cc40759d +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-22900---29900-in.json b/source/parts/detail/f/fiberglass-ring-22900---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e97748669f9c81152ad62648e26b36abaeda66ec --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-22900---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d4dc90b69f718b0d382c44bcd165488e3ee2dc8f4dd8e939dd77f20ec13cec3 +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-23000---29000-in.json b/source/parts/detail/f/fiberglass-ring-23000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df6d2e3879cacf1a6b874109837be300ee2f4565 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-23000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46066a95f81fd7bd068ca5856d3af5e48aeecb72f8ddeca59ba08784d372a984 +size 406 diff --git a/source/parts/detail/f/fiberglass-ring-23425---25000-in.json b/source/parts/detail/f/fiberglass-ring-23425---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..201d83f2a9492d88712ac00e81e15070236241c1 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-23425---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28ce6d829ce1a8ed543ed658a008ede0cc87d734c9008b0de05e56fe438364e1 +size 397 diff --git a/source/parts/detail/f/fiberglass-ring-23622---30000-in.json b/source/parts/detail/f/fiberglass-ring-23622---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce1f1bae899e724d87fad96d70d557cf1451174b --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-23622---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4880d226719e5d0098d1719c5fa98565dd82587f8bbd147faa9fb2d83456464 +size 402 diff --git a/source/parts/detail/f/fiberglass-ring-24700---24900-in.json b/source/parts/detail/f/fiberglass-ring-24700---24900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e91621793ef0ed67526ff573ff96461b88484af8 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-24700---24900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f4425708ae2df523b424ccd2c6bee926c08cad2bb1401390c2a0f5132811e71 +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-24900---25600-in.json b/source/parts/detail/f/fiberglass-ring-24900---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..02c5146088ff067a602cac04ff6f20c52adfd22c --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-24900---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ade8c5dd1c3e4eb38bf6980f2d22ca246a928e51945430b478e25d8150f5ac7f +size 405 diff --git a/source/parts/detail/f/fiberglass-ring-24961---24961-in.json b/source/parts/detail/f/fiberglass-ring-24961---24961-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f18b9cb75f0d5c0c5059b5abb9da3587280d5145 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-24961---24961-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50822d6a703689cc74e58673e1483ef1661a235faee6a5863b3961b0a04e637f +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-25591---25591-in.json b/source/parts/detail/f/fiberglass-ring-25591---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b19507f9e6d5d9ab4d35945beddae90dc030db7c --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-25591---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5aabf9cb7f9c014dde94aab835889e77d6a70b6e5118dcf9255fdbf7bb1f81b +size 400 diff --git a/source/parts/detail/f/fiberglass-ring-27500---30000-in.json b/source/parts/detail/f/fiberglass-ring-27500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70131171ced66cba264d7c4620c0287d70eded0e --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-27500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0515192abc1f10e14d2dbe391a21e804583835dc0e9e83b1242c6c879c05aa15 +size 402 diff --git a/source/parts/detail/f/fiberglass-ring-28425---28425-in.json b/source/parts/detail/f/fiberglass-ring-28425---28425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ff067eff0987ebd961898727af02b1525e8d97a --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-28425---28425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11baadf0153ea78e39256ac17b01e291bb5604f15725b3453aed2b6b5faa0733 +size 397 diff --git a/source/parts/detail/f/fiberglass-ring-28622---29921-in.json b/source/parts/detail/f/fiberglass-ring-28622---29921-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f00ad83df981d7eca1c9f9c7dab4dd0d8a65fda2 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-28622---29921-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e2666a65738184eee405ab4cdf9dc12c7186e46713d8145d611567a3fd066a +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-28750---29900-in.json b/source/parts/detail/f/fiberglass-ring-28750---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e47ee298b9f0dbe0763e92081dd8d7b91d226725 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-28750---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac33e0d815e5e9404139b29b25f6900614fc61a8f49477e39f347c9dc5ae650e +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-28900---28900-in.json b/source/parts/detail/f/fiberglass-ring-28900---28900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4de479e06a33635a3b7a72ce00fceb299f4e8b89 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-28900---28900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5e6e0fecdea6c87a55a79889845ee98a6351d64244bd0402da6f056bb5e395a +size 406 diff --git a/source/parts/detail/f/fiberglass-ring-29331---29331-in.json b/source/parts/detail/f/fiberglass-ring-29331---29331-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b680e521c09c57279c4221338e6586191c48cf42 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-29331---29331-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed66800bd692b625c3b1fbe8e20e5a9b5f7cd114b5ec24d2b4705ac111f0fa6 +size 401 diff --git a/source/parts/detail/f/fiberglass-ring-29370---29370-in.json b/source/parts/detail/f/fiberglass-ring-29370---29370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f6bc2a197c2b184e83cdc8e273fe04ab596d5b0 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-29370---29370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa32742a677e7f7218daf9b06f9e9661f4a2af8ca347d4a2c410b86c7a39376 +size 395 diff --git a/source/parts/detail/f/fiberglass-ring-29700---53625-in.json b/source/parts/detail/f/fiberglass-ring-29700---53625-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48b77bc43d48933cf063a518abfe13a096c679f2 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-29700---53625-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3abbd1f2c43261ce8198f86730cde158a1699f91ddda63bc3deb63dcbf99519 +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-29921---29921-in.json b/source/parts/detail/f/fiberglass-ring-29921---29921-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64815685bdb824155f92cdc6a360bf5b60f2e4f2 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-29921---29921-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d38c5d779e995a301887c65e6069f0549ff4b34713a2fd2205126430bce4adf +size 402 diff --git a/source/parts/detail/f/fiberglass-ring-30000---30000-in.json b/source/parts/detail/f/fiberglass-ring-30000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddb4ffaa732e7061f87a4cfb9fbf099012625c7a --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-30000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145cca7c94bd6bc12833d7ba85a2b13d3870f0d1d51a10e722c96e8471a692ae +size 403 diff --git a/source/parts/detail/f/fiberglass-ring-37760---39000-in.json b/source/parts/detail/f/fiberglass-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a222e41205df209d612255e9e8df738a0d0fbc86 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fb527c2ff16a6124a02447ee47a31936dd44ddcc7fdfc0b957e4fc01b34f3f1 +size 393 diff --git a/source/parts/detail/f/fiberglass-ring-51920---53625-in.json b/source/parts/detail/f/fiberglass-ring-51920---53625-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff1b3d0e0cf4b513f3b61d1e5b4bb8c07ba36be2 --- /dev/null +++ b/source/parts/detail/f/fiberglass-ring-51920---53625-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5313d6439b33295cb481bd04822258c3986623205aae37ff19aabc00ee37523 +size 393 diff --git a/source/parts/detail/f/flis-basswood-ring-01600---02550-in.json b/source/parts/detail/f/flis-basswood-ring-01600---02550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03dc0a48c62dadca7bdc78c77e82ee8efa528109 --- /dev/null +++ b/source/parts/detail/f/flis-basswood-ring-01600---02550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209042f02317e626a6b1e229635f63b3dbc871d8b1c9b4d71aa3983fa62d331a +size 451 diff --git a/source/parts/detail/f/fliskits-balsa-ring-09760---12800-in.json b/source/parts/detail/f/fliskits-balsa-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58f8d37d05aab6051b7c3a057b952bf5345b5659 --- /dev/null +++ b/source/parts/detail/f/fliskits-balsa-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1a65bc1e6613c2d6e8fc1bacaa6a5c5257bfba5ccb281b0143b218abaaaf01 +size 424 diff --git a/source/parts/detail/f/fliskits-basswood-ring-09760---20000-in.json b/source/parts/detail/f/fliskits-basswood-ring-09760---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8173dfaf711332a43d7f8585d26581add367d48 --- /dev/null +++ b/source/parts/detail/f/fliskits-basswood-ring-09760---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d45e73285949dcf8ebc31c5eac5ad3fe3189da80c8dea5932a8560b73113f9 +size 473 diff --git a/source/parts/detail/f/fliskits-birch-ring-09760---15900-in.json b/source/parts/detail/f/fliskits-birch-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a9a528e6a6cff9922c84819c18f89d0b5c39f35 --- /dev/null +++ b/source/parts/detail/f/fliskits-birch-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68293854bd6732017c685bd90baa9eadbc4514dc1e3d0b3271c7f77aabfa5e60 +size 464 diff --git a/source/parts/detail/f/fliskits-cardboard-ring-07360---12800-in.json b/source/parts/detail/f/fliskits-cardboard-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49c288dcd99cba20989128bf25e3b6cef91b190f --- /dev/null +++ b/source/parts/detail/f/fliskits-cardboard-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4006560a06f2dcba4cd64c32bc4a6891302a1284055d0721087f3075f7418756 +size 436 diff --git a/source/parts/detail/f/fliskits-cardboard-ring-09760---12800-in.json b/source/parts/detail/f/fliskits-cardboard-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53746141a0fa99935d9efcb2af34d09d5ae561a6 --- /dev/null +++ b/source/parts/detail/f/fliskits-cardboard-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407db22951f662a4c7bcc2b261523dbfc480ad5c760b9df486a1172af29c9447 +size 436 diff --git a/source/parts/detail/f/fliskits-conical-transition.json b/source/parts/detail/f/fliskits-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..f30f3295fe9fdcac3d7e40721f2c331edb0be256 --- /dev/null +++ b/source/parts/detail/f/fliskits-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303ecc720829da6d89b74b4c91a2ff9cd1de2d8372557f42bc1d425049d5fe56 +size 620 diff --git a/source/parts/detail/f/fliskits-eh-0275-engine-hook--275.json b/source/parts/detail/f/fliskits-eh-0275-engine-hook--275.json new file mode 100644 index 0000000000000000000000000000000000000000..933f4fbb9b127173d4cc3da3acf1575c86c4febf --- /dev/null +++ b/source/parts/detail/f/fliskits-eh-0275-engine-hook--275.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a97f89c8e3f6732b49bcb132b9614ffa2d399f1e2f3745eab52186d61f4276b5 +size 407 diff --git a/source/parts/detail/f/fliskits-eh-0275-engine-hook--standard.json b/source/parts/detail/f/fliskits-eh-0275-engine-hook--standard.json new file mode 100644 index 0000000000000000000000000000000000000000..0cca7881880d0af318d71dd9043cb2f91f176160 --- /dev/null +++ b/source/parts/detail/f/fliskits-eh-0275-engine-hook--standard.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d914da49bfe03a211504c74c91640a484e95cbdc34e93fad43421320cc88993 +size 421 diff --git a/source/parts/detail/f/fliskits-eh-0275-engine-hook-275.json b/source/parts/detail/f/fliskits-eh-0275-engine-hook-275.json new file mode 100644 index 0000000000000000000000000000000000000000..420ba68551f1224f3c3795d1b7b81a3df74bc8e3 --- /dev/null +++ b/source/parts/detail/f/fliskits-eh-0275-engine-hook-275.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12345abf463d893859a37cb0ffaf5bb506176d88382c16b5dec1a6ffcfd5d6e5 +size 405 diff --git a/source/parts/detail/f/fliskits-eh-0275-engine-hook.json b/source/parts/detail/f/fliskits-eh-0275-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..525696988272ea1897b4f1b59b110b28ea2f9597 --- /dev/null +++ b/source/parts/detail/f/fliskits-eh-0275-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15502c83f15da108463d45c45650bb0ff17082bbd5d6ad15cc3e6f72c096654d +size 381 diff --git a/source/parts/detail/f/fliskits-fiber-ring-02810---03490-in.json b/source/parts/detail/f/fliskits-fiber-ring-02810---03490-in.json new file mode 100644 index 0000000000000000000000000000000000000000..69baa0066fdae36ffc56b99508a9a8472cb841ed --- /dev/null +++ b/source/parts/detail/f/fliskits-fiber-ring-02810---03490-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f641d26d893d5dd7662d641ee63e977dfb55d4531b4dafc5f183058b354c53 +size 464 diff --git a/source/parts/detail/f/fliskits-fiber-ring-07360---15950-in.json b/source/parts/detail/f/fliskits-fiber-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9c91d803b8dfd360c3b36097c962db84617d009 --- /dev/null +++ b/source/parts/detail/f/fliskits-fiber-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7769f1087add06cdad1494b3a297e73f707c7be7a92f11b92f651f09301903 +size 424 diff --git a/source/parts/detail/f/fliskits-fiber-ring-09760---21748-in.json b/source/parts/detail/f/fliskits-fiber-ring-09760---21748-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f20c75b33ba4fe6abf397eac88acc8051b6eb8b --- /dev/null +++ b/source/parts/detail/f/fliskits-fiber-ring-09760---21748-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45655509b5c044ed3838e61a00e25c8163797a3812bd1fc9e2d25394fedfa3af +size 466 diff --git a/source/parts/detail/f/fliskits-fiber-ring-09780---21780-in.json b/source/parts/detail/f/fliskits-fiber-ring-09780---21780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f93902d40bc5d4cb985a9afff7c8c4568bbd45bf --- /dev/null +++ b/source/parts/detail/f/fliskits-fiber-ring-09780---21780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfad99ab5b56050d8fb28591f82c39af25220d6c2a0e1c16d08b70890b2f66a6 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-00000---07100-in.json b/source/parts/detail/f/fliskits-paper-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..44bfde0517f014dd6bdc8ac9c1468b17b3c912b9 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c2eeddf03cb82cad85840a6d8a8e7dd7ca2fe935066cb973261f0e4bd3be597 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-00000---15950-in.json b/source/parts/detail/f/fliskits-paper-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..173d3a6486ad43d94d8382bed2c8952ba41e40d9 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f97bb2640f231fdb34e687cac00dec8ab33a735304f0645c4787debf540737d +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-04500---05410-in.json b/source/parts/detail/f/fliskits-paper-ring-04500---05410-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af026ffd5714cabe6cc8318b00613c43879cadab --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-04500---05410-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ee50fcb7215f61cf521c252de83889f05fa1bf40a5a90b4e6fa6a801b06dee9 +size 424 diff --git a/source/parts/detail/f/fliskits-paper-ring-04618---05150-in.json b/source/parts/detail/f/fliskits-paper-ring-04618---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95d67281c0b2b8ac41746868e971002427659511 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-04618---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd7e1108a2a97605a5ab72e1e4ab5609bcf08ae1ab0fd0d903ee5941e53122f1 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-04618---05180-in.json b/source/parts/detail/f/fliskits-paper-ring-04618---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48623fa0c61180a288962595ff9ffd4e1a828d7e --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-04618---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e9e249a18a05dc50ccc9c418d127f8b3a18a98f6bc9c6255a317d2711a896d +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-04768---05180-in.json b/source/parts/detail/f/fliskits-paper-ring-04768---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f350a3a275aac60932e948388325e11b438eff18 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-04768---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2433d7fce42e72c75cda326e2ec87416163ebd756f6b2deb90d1584ccdf9c8 +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-05268---07100-in.json b/source/parts/detail/f/fliskits-paper-ring-05268---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5087e825bfacf7ff1948b75db297b7f9be71463 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-05268---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1725a6ba9ed4476b752c8424a9caaccdfb876519398c63d3dc430b58cdadedd2 +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-05370---07098-in.json b/source/parts/detail/f/fliskits-paper-ring-05370---07098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..edabb76fdf54af6b181d94b1f57af500d6be1002 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-05370---07098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e474e8cd615c39cffdbb62ccd4e2a083ef1a00eb6d145b37a63f64009ce9b8 +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-05370---07100-in.json b/source/parts/detail/f/fliskits-paper-ring-05370---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e31cea5ff2ca8db5e125a9e4d2ce8bd62ed5bebd --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-05370---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ea23c3e582a2e208d2c7fd9b1b5c98e8ddd47e7b03e9cdffc3dff6f31622e3 +size 454 diff --git a/source/parts/detail/f/fliskits-paper-ring-05440---07100-in.json b/source/parts/detail/f/fliskits-paper-ring-05440---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f375821bd95cc1ea72cf9533da3c73f5c7de26ec --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-05440---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bfa3a9b1f65465e769d098929b2a87cbe9794aba95df49ccece76715b55cadd +size 462 diff --git a/source/parts/detail/f/fliskits-paper-ring-06508---07100-in.json b/source/parts/detail/f/fliskits-paper-ring-06508---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a65f7726e9e6eeea63939d0dddbbb50ee5245044 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-06508---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f0214711020ea6cfcb5f64c094db37dc1b6750751f03d69234e0beb5e40453f +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-07287---09500-in.json b/source/parts/detail/f/fliskits-paper-ring-07287---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b2e78f3d41b7eddbc9a2444b66241dc4e2c09b5 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-07287---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7560657f51a18fb2bdb920d8f339e7ffc79357715fadf925a9a476da7236f06e +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-07358---12831-in.json b/source/parts/detail/f/fliskits-paper-ring-07358---12831-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf479fda96eec6cc5bedc0347dcf00102a8b9724 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-07358---12831-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d54570ef396ddf38e2e0199701dd3c0ca44d0eb786b06223e791994594818fd9 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-07360---09500-in.json b/source/parts/detail/f/fliskits-paper-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c9bb88e88eee5f4f2e5ffc29d9090074ea781f80 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95f7e4882404477e42de2c7c9ae6031346b9c82affecc34ad17a776ab0aa05ca +size 469 diff --git a/source/parts/detail/f/fliskits-paper-ring-07360---12830-in.json b/source/parts/detail/f/fliskits-paper-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8a06d72059a2ca8d56d71bf61fdd7f0dc385f591 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17c145b16398e537e724c5236e731bf4e97950a07e577d798e06cab0b29765ed +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-07360---12831-in.json b/source/parts/detail/f/fliskits-paper-ring-07360---12831-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca25b95141aef330b78f3a70c9abcb23d839c05e --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-07360---12831-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9269d5a7accb8e9c51d619cf2b7272b358c50153b270d86d2aa2f06e674d5c82 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-07360---15950-in.json b/source/parts/detail/f/fliskits-paper-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..19f9aedc4a3da0c430bca3a805506ab53d1a1c6a --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91dd5609426b536a006c9dd4a5f1122a0f8448ab3d7e3ab059ff9ed3e7deb712 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-07461---09500-in.json b/source/parts/detail/f/fliskits-paper-ring-07461---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..271ffed57ab946a581d5c0ebc4a69ea7040ef917 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-07461---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abb062b1e8021384116aa675a02be46dd3eed8e4494259db5916eea455b0ffc9 +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-07870---13380-in.json b/source/parts/detail/f/fliskits-paper-ring-07870---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b44ad616089a430ba6cd62cc4055dc5add77938b --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-07870---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bb6c38188a3cd5e8880553b115d5255d171f690b49cd36f1325c49e9b06631 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-08850---09500-in.json b/source/parts/detail/f/fliskits-paper-ring-08850---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9150124c5ac83070b830a5f8593cf2828b1082a7 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-08850---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fa39b5f8aedc5a7d6e821628fdb68d460b516eaa4dc1da0f22e0f38d127d55c +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-09760---12800-in.json b/source/parts/detail/f/fliskits-paper-ring-09760---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bfc49aafad33d0208ef4145cdd986735e5a1b069 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-09760---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf66d0dc1ea9659b3b57c32eb0a3faca30b3182613d8c449724c0787adfc7078 +size 469 diff --git a/source/parts/detail/f/fliskits-paper-ring-09760---12830-in.json b/source/parts/detail/f/fliskits-paper-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50b559bb2c17869cb24026eebf23385b4a6ab551 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3364ccbd7a03cc72fff694c30a68d4366e8f18c449f71766975fcd4b783eea0c +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-09760---15950-in.json b/source/parts/detail/f/fliskits-paper-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a436cc808a3d9e65a0fb4345287d44f7b305ce82 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e68ddc02b811690e2117baaebfa517ccc790f0d559b33b362b5602f42efbb6d +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-12480---12830-in.json b/source/parts/detail/f/fliskits-paper-ring-12480---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f75e317e4da9c3e1de76ea78d07d4f01f94d8981 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-12480---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb128cfdf48728b677e106896f20f2a8f12ebb8c7bb94e4c0451633e94383a4 +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-12480---12831-in.json b/source/parts/detail/f/fliskits-paper-ring-12480---12831-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c0e12e1c6ba8f14d9309c2ffe719ed8be5712fb6 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-12480---12831-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d5cd898cdd204d7b52cff91760a87d1955a1a478e857e300b407b4f9a7a07f +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-13200---15900-in.json b/source/parts/detail/f/fliskits-paper-ring-13200---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e91bccc83f3d35ca265cf1a398c4df4a4f14cdbe --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-13200---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0f53a690297c7c110d3be858b9dcb1f4823dc537aa5f563d661eff322180987 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-13250---15950-in.json b/source/parts/detail/f/fliskits-paper-ring-13250---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..84258bf1ed24298a878765ad87a83b153a171b8b --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-13250---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2918254e7528e157f3d40fd39a2e9eb6c694e30efa62508e37104322e4186a0f +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-13250---21748-in.json b/source/parts/detail/f/fliskits-paper-ring-13250---21748-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f34d649a82f3714cf996cd1c3523f22ae4be06a4 --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-13250---21748-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618f618b0f59c113ab7ac2ebf32396afce0e4a09c03357b5c52df0aa92fcc967 +size 464 diff --git a/source/parts/detail/f/fliskits-paper-ring-15157---15950-in.json b/source/parts/detail/f/fliskits-paper-ring-15157---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b8b9576550d650b6c942b39629ee5ab686bec6f --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-15157---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddfcb48130e42af6290a0001ad3885b9ef75ef702e4ecfa95c742d5ac5bb31f6 +size 466 diff --git a/source/parts/detail/f/fliskits-paper-ring-20900---21800-in.json b/source/parts/detail/f/fliskits-paper-ring-20900---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a74bedc6c2d360a6e941415cca287cffc99136b --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-ring-20900---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b333f0cc9cb995e984af6f8883fccdbd782e29b30882f57948784e7ca7053f6e +size 468 diff --git a/source/parts/detail/f/fliskits-paper-streamer-00012-in.json b/source/parts/detail/f/fliskits-paper-streamer-00012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f32fc4104a2a60964ed58271e6018c083155d0e --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-streamer-00012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d363efa206d02fa08c485f10386c0ef966d7dfd7a2d8acd125f8e8e6a9ab86c6 +size 411 diff --git a/source/parts/detail/f/fliskits-paper-streamer-00100-in.json b/source/parts/detail/f/fliskits-paper-streamer-00100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..277b6ca30c204c55f2a20578b8900ee3bf80858a --- /dev/null +++ b/source/parts/detail/f/fliskits-paper-streamer-00100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1efd4c407f67994c77b58fd32345bb81902a5b6ca33424405602c6c5b44038 +size 407 diff --git a/source/parts/detail/f/fliskits-plywood-ring-01575---02550-in.json b/source/parts/detail/f/fliskits-plywood-ring-01575---02550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64371ff8b4c42f37ade95765962833812f87de04 --- /dev/null +++ b/source/parts/detail/f/fliskits-plywood-ring-01575---02550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7daef5dd778b9e1b33f2ce2f241490927abebe3328e29dfeee8a371cc07f76a2 +size 464 diff --git a/source/parts/detail/f/fliskits-sc-1-12-shock-cord-18inx12in-elastic.json b/source/parts/detail/f/fliskits-sc-1-12-shock-cord-18inx12in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..02e488edb80a4229bdf4b2e6328edf53e6a47fb8 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-12-shock-cord-18inx12in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339620106dd4e4d737c3bbfb1a54e45101226bd6452efb1d48c875db186e5195 +size 451 diff --git a/source/parts/detail/f/fliskits-sc-1-18-shock-cord-18in.json b/source/parts/detail/f/fliskits-sc-1-18-shock-cord-18in.json new file mode 100644 index 0000000000000000000000000000000000000000..aab38202b5ea17c280fbc4b63238d228020d6d91 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-18-shock-cord-18in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7046779ca436aa233b3c35e7d45441c723061a30ff04cd3e4266a566b247e531 +size 397 diff --git a/source/parts/detail/f/fliskits-sc-1-18-shock-cord-18inx18in-elastic.json b/source/parts/detail/f/fliskits-sc-1-18-shock-cord-18inx18in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..3912e2ff9ab5152bac83254e2a8b2434a142574d --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-18-shock-cord-18inx18in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c29d926fdca6ef51a98708626f06b562ac3d0cc5527854f8ccac64c7e47a899 +size 451 diff --git a/source/parts/detail/f/fliskits-sc-1-18-shock-cord.json b/source/parts/detail/f/fliskits-sc-1-18-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..5775c561d66d1424912129c9154cd4d70ec57f5a --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-18-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43402ca628c7f95a3d67c92c7e066de7cff1509e5149b72f01bce851fe7d9344 +size 377 diff --git a/source/parts/detail/f/fliskits-sc-1-24-shock-cord-24in.json b/source/parts/detail/f/fliskits-sc-1-24-shock-cord-24in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c38f32e9b95164fc7dfc18f3015d47429ab11e6 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-24-shock-cord-24in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0852a32bb9578814f408ccb9502a2f908dc69d06acfb5b35f8dfb1fd5bef2b +size 397 diff --git a/source/parts/detail/f/fliskits-sc-1-30-shock-cord-18inx30in-elastic.json b/source/parts/detail/f/fliskits-sc-1-30-shock-cord-18inx30in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..37e726ffae9d57a335ba1a231141a17298d92d0e --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-30-shock-cord-18inx30in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6cfe8f9811b62328f6a0e7fa6e434374cb2c3269ce580b026e2ad35d6ecff6 +size 451 diff --git a/source/parts/detail/f/fliskits-sc-1-30-shock-cord-30in.json b/source/parts/detail/f/fliskits-sc-1-30-shock-cord-30in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f75c2d19effc0da7e7ea0f396115350b670316a --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-30-shock-cord-30in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbc128d1ba4e05886e815a8df15893998b18ada44c109b56564917f95a49c7c4 +size 397 diff --git a/source/parts/detail/f/fliskits-sc-1-36-shock-cord-18inx36in-elastic.json b/source/parts/detail/f/fliskits-sc-1-36-shock-cord-18inx36in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..43c14514dce0c9eb02988d4f037853fa416f9293 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-36-shock-cord-18inx36in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477ce201ea4f8d0d2d77d9d140147f452e2de1058000e84620ffa8e9dd7799c7 +size 451 diff --git a/source/parts/detail/f/fliskits-sc-1-36-shock-cord.json b/source/parts/detail/f/fliskits-sc-1-36-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..33cc4ea94515065894d2f9f6127095f05e661873 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-1-36-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4567f48e12d1f32cdd9d4fd92b74a133fd740b0424432b0e8beb14807bdf1f9b +size 377 diff --git a/source/parts/detail/f/fliskits-sc-2-18-shock-cord-18in.json b/source/parts/detail/f/fliskits-sc-2-18-shock-cord-18in.json new file mode 100644 index 0000000000000000000000000000000000000000..57641d77d414e1e83a33f928e0f8c1e288b55fe1 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-2-18-shock-cord-18in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211af06a0c3e0d23efd952b4cda08640166e0b092efb275b27fa1917ded160f8 +size 397 diff --git a/source/parts/detail/f/fliskits-sc-2-30-shock-cord-14inx30in-elastic.json b/source/parts/detail/f/fliskits-sc-2-30-shock-cord-14inx30in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..ecd1414f1eeb9384d0d805aae0c8c9743b374353 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-2-30-shock-cord-14inx30in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df76df1ed08c863f7cbaa2b58cb4a35ec0ac1e729509d74678458daadd001f84 +size 451 diff --git a/source/parts/detail/f/fliskits-sc-2-30-shock-cord.json b/source/parts/detail/f/fliskits-sc-2-30-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..ee92820b8b59029cf4ab7c11b9a4d4f13f4876f4 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-2-30-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74b3b6772ee354452dae923eb6fdbfaec20f3bda8a203f54b06c3dd1034fb837 +size 377 diff --git a/source/parts/detail/f/fliskits-sc-2-36-shock-cord-wide-36in.json b/source/parts/detail/f/fliskits-sc-2-36-shock-cord-wide-36in.json new file mode 100644 index 0000000000000000000000000000000000000000..08fba5d69c7fa728fed9bb4f486bc706ffd49fd1 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-2-36-shock-cord-wide-36in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7a18b7088629b4443703b0005afbc09520028a3c67837e13cd8d21f946b8cf2 +size 417 diff --git a/source/parts/detail/f/fliskits-sc-2-48-shock-cord-14inx48in-elastic.json b/source/parts/detail/f/fliskits-sc-2-48-shock-cord-14inx48in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..00cf7485bc9e3448a8efac1395b969e45b562996 --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-2-48-shock-cord-14inx48in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ee877516f061dcbf3ef4243e336dd4345315bc71667b84508d6b707ed2d3b6 +size 451 diff --git a/source/parts/detail/f/fliskits-sc-3-48-shock-cord-38inx48in-elastic.json b/source/parts/detail/f/fliskits-sc-3-48-shock-cord-38inx48in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..8ccf12c18a06d27093f2fbc22277eaf53d0335fc --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-3-48-shock-cord-38inx48in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14c3f237fa78690925c9c6c732bf3b513f9a019f26c449f8d1100f3e51c67ef7 +size 451 diff --git a/source/parts/detail/f/fliskits-sc-3-48-shock-cord-wide-48in.json b/source/parts/detail/f/fliskits-sc-3-48-shock-cord-wide-48in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f0fa830c92a32e6c87bf99953be9485919beacd --- /dev/null +++ b/source/parts/detail/f/fliskits-sc-3-48-shock-cord-wide-48in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a52ce2e5dfeee833052e9d4e79a84948ac8261c085085b6da19da4ddfeab78 +size 417 diff --git a/source/parts/detail/f/fliskits-se-l-screw-eye---large.json b/source/parts/detail/f/fliskits-se-l-screw-eye---large.json new file mode 100644 index 0000000000000000000000000000000000000000..8346720dcd1d98e6b5eaf2e08ac7e1a630e7d3e2 --- /dev/null +++ b/source/parts/detail/f/fliskits-se-l-screw-eye---large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2edb6661252695e89c51b7ca78b53d7bf234afce0d5b080096bbb14e799647a +size 393 diff --git a/source/parts/detail/f/fliskits-se-m-screw-eye---medium.json b/source/parts/detail/f/fliskits-se-m-screw-eye---medium.json new file mode 100644 index 0000000000000000000000000000000000000000..39e259e99e27640005012477b0e9b38dafaa9168 --- /dev/null +++ b/source/parts/detail/f/fliskits-se-m-screw-eye---medium.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a6b98fcea966ca22c8e480b8deb00e8cbdf771f94973f6c146a060e35556d5 +size 397 diff --git a/source/parts/detail/f/fliskits-se-s-screw-eye--small.json b/source/parts/detail/f/fliskits-se-s-screw-eye--small.json new file mode 100644 index 0000000000000000000000000000000000000000..284e4cc3d9b8e73975d25e5e33a00f78746bfc7f --- /dev/null +++ b/source/parts/detail/f/fliskits-se-s-screw-eye--small.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d98285097fec24476c80a043e578b2b2c5068fa461601493bd3628c4aaa27520 +size 389 diff --git a/source/parts/detail/f/fliskits-se-s-screw-eye-small.json b/source/parts/detail/f/fliskits-se-s-screw-eye-small.json new file mode 100644 index 0000000000000000000000000000000000000000..65e7f593912d592df1a77bdc38638b088aaf48d9 --- /dev/null +++ b/source/parts/detail/f/fliskits-se-s-screw-eye-small.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22867116436761096f0dd5cc9d6ea1a3f602fec3eb29b7922f9679713c3535b4 +size 385 diff --git a/source/parts/detail/f/fliskits-slk-08-24-thread-kevlar-8lbs.json b/source/parts/detail/f/fliskits-slk-08-24-thread-kevlar-8lbs.json new file mode 100644 index 0000000000000000000000000000000000000000..e1d57320bae524d42cb076c8751188120215e2ab --- /dev/null +++ b/source/parts/detail/f/fliskits-slk-08-24-thread-kevlar-8lbs.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e277a3d5e0f457f005420bf6a53e4623906b2c869843f17669f42486fabfaa +size 417 diff --git a/source/parts/detail/f/fliskits-slk-12-36-thread-kevlar-12lbs.json b/source/parts/detail/f/fliskits-slk-12-36-thread-kevlar-12lbs.json new file mode 100644 index 0000000000000000000000000000000000000000..10ed301d7147f22bf698b6a78255bed6c9698721 --- /dev/null +++ b/source/parts/detail/f/fliskits-slk-12-36-thread-kevlar-12lbs.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b5f5dd969793554429b4528fcae1ca97d8e7c07712bda6b4aca87d3ef4c5ac +size 421 diff --git a/source/parts/detail/f/fliskits-slk-150-36-kevlar-shock-line-150.json b/source/parts/detail/f/fliskits-slk-150-36-kevlar-shock-line-150.json new file mode 100644 index 0000000000000000000000000000000000000000..c5fa622f51d84682199d5e3f02acaff6faed3d23 --- /dev/null +++ b/source/parts/detail/f/fliskits-slk-150-36-kevlar-shock-line-150.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf8237ee711960963e3ac58c75b8c3ce15c51299f7156ffa9187728cf099be82 +size 435 diff --git a/source/parts/detail/f/fliskits-slk-16-288-kevlar-thread--16lbs.json b/source/parts/detail/f/fliskits-slk-16-288-kevlar-thread--16lbs.json new file mode 100644 index 0000000000000000000000000000000000000000..570c82125d1a63e9456557cd4c73c2f916d10a43 --- /dev/null +++ b/source/parts/detail/f/fliskits-slk-16-288-kevlar-thread--16lbs.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92edbfaf649b13aca27eefa56455c7c2db187f76d730dfa86fc964d397eb53ee +size 429 diff --git a/source/parts/detail/f/fliskits-slk-35-24-thread-kevlar-24in.json b/source/parts/detail/f/fliskits-slk-35-24-thread-kevlar-24in.json new file mode 100644 index 0000000000000000000000000000000000000000..262d516fa7f5bda4e14187acb9cd4ef46d92a75f --- /dev/null +++ b/source/parts/detail/f/fliskits-slk-35-24-thread-kevlar-24in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b752d705a9f5da76c0bc68bfbab8af471bdaf2c5138d62d47dff3ae4cbfa327 +size 417 diff --git a/source/parts/detail/f/fliskits-slk-90-24-kevlar-shock-line.json b/source/parts/detail/f/fliskits-slk-90-24-kevlar-shock-line.json new file mode 100644 index 0000000000000000000000000000000000000000..ec09845271b9d73c29011ac94e07926e4d9d54b2 --- /dev/null +++ b/source/parts/detail/f/fliskits-slk-90-24-kevlar-shock-line.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99645f52479780dcf1ee486dae92ce1b33892fdc95a3f0aa00df04624852dbb9 +size 413 diff --git a/source/parts/detail/f/fliskits-slk-90-24.json b/source/parts/detail/f/fliskits-slk-90-24.json new file mode 100644 index 0000000000000000000000000000000000000000..380e1dd886a4cc0e921d89ece7b8c306827f3e76 --- /dev/null +++ b/source/parts/detail/f/fliskits-slk-90-24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d26adb6c8170f4e0061024c1d680e47ede1316ef5363058414481e181fa8c43 +size 321 diff --git a/source/parts/detail/f/fliskits-thk-24-kevlar-thread-24.json b/source/parts/detail/f/fliskits-thk-24-kevlar-thread-24.json new file mode 100644 index 0000000000000000000000000000000000000000..31394ab9d89ee0eee2089f401ba3e2a4dc40ce40 --- /dev/null +++ b/source/parts/detail/f/fliskits-thk-24-kevlar-thread-24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42df55c13a8ef661a0d4d16f17a79af923fa9c7fbb303ca32f561b06bdc576e0 +size 403 diff --git a/source/parts/detail/f/fliskits-wgt-cly-01-clay-nose-weight.json b/source/parts/detail/f/fliskits-wgt-cly-01-clay-nose-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..33f0a2bf96f00ae1f1487895d9140126f81196da --- /dev/null +++ b/source/parts/detail/f/fliskits-wgt-cly-01-clay-nose-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5302bab9aebbcf9ec12881c89b1b516ea5c79aae5364eb48c6410b7900f221c +size 413 diff --git a/source/parts/detail/f/fliskits.json b/source/parts/detail/f/fliskits.json new file mode 100644 index 0000000000000000000000000000000000000000..71f3f1c13e67862332acc1971901084456c503cd --- /dev/null +++ b/source/parts/detail/f/fliskits.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1974792fa40f45eb41f5b8f229766105401257da489dfb5dd76c5b96adf81ce +size 266 diff --git a/source/parts/detail/g/g-wiz-hcx-w2-9-volt-batts-altimeter.json b/source/parts/detail/g/g-wiz-hcx-w2-9-volt-batts-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..1b45e6ed7e630288774c6c9485550dc020a69fdf --- /dev/null +++ b/source/parts/detail/g/g-wiz-hcx-w2-9-volt-batts-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a324eed1fc1bbc748e36b8e41802ec771041859ceb15d1cff874f03cd00642da +size 411 diff --git a/source/parts/detail/g/g-wiz.json b/source/parts/detail/g/g-wiz.json new file mode 100644 index 0000000000000000000000000000000000000000..96b4fdcb3c9bbf03e186c3f53b56adaa7cd06beb --- /dev/null +++ b/source/parts/detail/g/g-wiz.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a9f78898fd169893addd99a5085f0df7b0c7e7a00b8673425ceda2adda66d10 +size 249 diff --git a/source/parts/detail/g/g10-fiberglass-ring-00000---20000-in.json b/source/parts/detail/g/g10-fiberglass-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b21b645f50bfecae7f41bb2d9a10cfd19b2b1747 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f963b43e9269610a8610b1eb2aa287b2a6fe98f836e141af466922be9cd7eac +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-00000---21400-in.json b/source/parts/detail/g/g10-fiberglass-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59a00f61a92463fac0014c49a26880f4cf74d91b --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c265a9f627fb5039ccf6ecf4f9ca967bc46518f9e7832ed1e204470cd5f5ee6c +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-00000---25670-in.json b/source/parts/detail/g/g10-fiberglass-ring-00000---25670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be3feb07fb48bd0b8ec51dc180360d8e15bef305 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-00000---25670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae135b3c147f25172ccfae8b74256cf6ad20bdc56353a7187a6ad433bd1b23e +size 404 diff --git a/source/parts/detail/g/g10-fiberglass-ring-00000---28750-in.json b/source/parts/detail/g/g10-fiberglass-ring-00000---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86e4a8d254c9ce8f1a87fe9b2878ad2cefbd9299 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-00000---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec03421b5bb542f31efb265ccc72d6be3789d3c113d45ec12785b207b6d199b +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-00000---43750-in.json b/source/parts/detail/g/g10-fiberglass-ring-00000---43750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b0a44b2d2f00c9258841b8aea74500db4a3c4d7 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-00000---43750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfb95a45bc5b6a8b755a33b5960b3fe6ba82a6ebfd483a6950c5eab757540e1 +size 424 diff --git a/source/parts/detail/g/g10-fiberglass-ring-00000---57500-in.json b/source/parts/detail/g/g10-fiberglass-ring-00000---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..354b3337b1db8b9ab17dfc50a4ad79ddcce8a145 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-00000---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4fb3fa5850119e25e0fbf7284507981eb83a7e0214f0bd705ae9560d9d3f858 +size 438 diff --git a/source/parts/detail/g/g10-fiberglass-ring-13750---15250-in.json b/source/parts/detail/g/g10-fiberglass-ring-13750---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9ab018edbd6ba27b57ed68ccae493acc6378794 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-13750---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f276ca679349e56c10e474473d6827c052d32e0a0614e3b97dd8b8bbdf95216a +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-13780---14961-in.json b/source/parts/detail/g/g10-fiberglass-ring-13780---14961-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1675a591f244e75a07396c70b5eefcc91ed4ed97 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-13780---14961-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d714c0bb0d033366ac4af5738896987698572b47edc939d50dea5e9286c91832 +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-15984---25670-in.json b/source/parts/detail/g/g10-fiberglass-ring-15984---25670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cd300ce6be7127e1abb638531a95fa5765ae1299 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-15984---25670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e3ec5137decbab3cf7162ec02d2a0c33d616c6326b2e387eca769d7f5368ffe +size 404 diff --git a/source/parts/detail/g/g10-fiberglass-ring-16350---25670-in.json b/source/parts/detail/g/g10-fiberglass-ring-16350---25670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..737bd82b9be826201b6a8fde86783b78af625d8d --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-16350---25670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e818e05d76daff0dc9efa20f808d8ed16e2a289ef24a6cba9426bb3ec168ab +size 404 diff --git a/source/parts/detail/g/g10-fiberglass-ring-16457---21575-in.json b/source/parts/detail/g/g10-fiberglass-ring-16457---21575-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dde7aafd66afc44b995db96202117009e5293492 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-16457---21575-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e1da2328fdc7eac8a8df08710836b35434679684ccd196cfaa5574538e6df7 +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-20000---21400-in.json b/source/parts/detail/g/g10-fiberglass-ring-20000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..faadc65ff2cb882146b9cc14dd2184ad5199c0f2 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-20000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b677e83abb910935a5dc09bc0430abc0acfe5923bea1e3f9cbd2c03e51116524 +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-20050---21550-in.json b/source/parts/detail/g/g10-fiberglass-ring-20050---21550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49c82ef24984563a701cb7434f7c10ee711c0878 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-20050---21550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74cc21867776690bddfcc9c3da6fb00f7364316b2ce04105e36d9661b886108a +size 411 diff --git a/source/parts/detail/g/g10-fiberglass-ring-20075---21555-in.json b/source/parts/detail/g/g10-fiberglass-ring-20075---21555-in.json new file mode 100644 index 0000000000000000000000000000000000000000..918fc136727838fff08134ef426a76b7762ec6e9 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-20075---21555-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d247d3807f4d71c2786fb5a1373aa0cf1787d463d53a48c0a3bb3cb1b12ae9 +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-20200---21400-in.json b/source/parts/detail/g/g10-fiberglass-ring-20200---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2c11ab27366366db8b3bf41b21f01e2f55f446d --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-20200---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64a7d0c2a2ae466dfb12079249f1f24f0022d3b2eec461075b9b2aa12934da57 +size 405 diff --git a/source/parts/detail/g/g10-fiberglass-ring-21260---50500-in.json b/source/parts/detail/g/g10-fiberglass-ring-21260---50500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d96566950d2a2e0fc1a3a051945b3c2e50cf2d8 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-21260---50500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc66330b52b695f43dbc31a7fa7a6af8eebf98e6819d1f87d9af224d6f187a0 +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-21550---21550-in.json b/source/parts/detail/g/g10-fiberglass-ring-21550---21550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49a076efe96a5d24160b5e6d6b37b28205cb1806 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-21550---21550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31e4d80abdefcdafae76c17b66e3092bc3450a1218fb02f7a175e1e3540549a +size 411 diff --git a/source/parts/detail/g/g10-fiberglass-ring-22520---39173-in.json b/source/parts/detail/g/g10-fiberglass-ring-22520---39173-in.json new file mode 100644 index 0000000000000000000000000000000000000000..205d997739ea277250c4e1a96f749deb479e376f --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-22520---39173-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:943c80580984ea98bb8ca70f52491fa98fc6e56094420bea7d9968bc57e16170 +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-22677---39173-in.json b/source/parts/detail/g/g10-fiberglass-ring-22677---39173-in.json new file mode 100644 index 0000000000000000000000000000000000000000..491bb46ceeaa1c468ca0909dddd0301182d029af --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-22677---39173-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c677b44e3c32aaa82b99099ca49939c1e5db1f44363db5809e55b4c9b70bb27b +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-24740---25670-in.json b/source/parts/detail/g/g10-fiberglass-ring-24740---25670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27249b134a95072f75bdb1f433a83f3af90c30f4 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-24740---25670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1370cc8af329de92e98dadedcb306a4951c3acc9a1def10d12cc09a38d605730 +size 404 diff --git a/source/parts/detail/g/g10-fiberglass-ring-24780---25620-in.json b/source/parts/detail/g/g10-fiberglass-ring-24780---25620-in.json new file mode 100644 index 0000000000000000000000000000000000000000..784a2541d9552dfe3638c11c9347d6703deeae09 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-24780---25620-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd4cb7f38f93a02b9c0a38ce429924cce1dd7b30f8e0e4f12ff77bcfdf6599b +size 409 diff --git a/source/parts/detail/g/g10-fiberglass-ring-24803---25394-in.json b/source/parts/detail/g/g10-fiberglass-ring-24803---25394-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9a6f3bbeb5194aa0d4ac78c2b8ae61523af9aab --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-24803---25394-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d3a5b329dd45e40d4cb5108a4ee55ab5a879a5df58ca0e4669fba18786785f +size 404 diff --git a/source/parts/detail/g/g10-fiberglass-ring-31250---43750-in.json b/source/parts/detail/g/g10-fiberglass-ring-31250---43750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4293171aff78448166e8c7fbfea3ec5593556c83 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-31250---43750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5284ad826c97b01bf1994e36d6e32a7dd757c02b79473e1e1449772a866fc2 +size 424 diff --git a/source/parts/detail/g/g10-fiberglass-ring-40000---60000-in.json b/source/parts/detail/g/g10-fiberglass-ring-40000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9df2e597d35dbd9db4ce954296c0d19ea9a877e2 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-40000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44f312c6dbd084dfffa77e0b7bdf08f557a3e10df1269ec0bd64d9e28ac82c1 +size 438 diff --git a/source/parts/detail/g/g10-fiberglass-ring-42500---43750-in.json b/source/parts/detail/g/g10-fiberglass-ring-42500---43750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e240fd8d5aceadc07cae288afc44f321d16fff32 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-42500---43750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac8b490a6180a969c3d0a8620359f24403316679b4eb7c9a6a89ce411c23923 +size 424 diff --git a/source/parts/detail/g/g10-fiberglass-ring-57500---60000-in.json b/source/parts/detail/g/g10-fiberglass-ring-57500---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2eecc8a885590e0a05d3f145f57a12078c757773 --- /dev/null +++ b/source/parts/detail/g/g10-fiberglass-ring-57500---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1033766abb1cbbd4cb2701260a9654b7c81ececb7dec51add2e18266a1f2b3fd +size 438 diff --git a/source/parts/detail/g/g10-pml-0062-ring-00000---22913-in.json b/source/parts/detail/g/g10-pml-0062-ring-00000---22913-in.json new file mode 100644 index 0000000000000000000000000000000000000000..540f92ceca7896199e9912d2c406ef2736410853 --- /dev/null +++ b/source/parts/detail/g/g10-pml-0062-ring-00000---22913-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b648c4a6dd01fd041e87a7dd772fa7114a43ee4e779fab2d1aaf922a218ba005 +size 412 diff --git a/source/parts/detail/g/gardei-fir-douglas-ring-12100---21400-in.json b/source/parts/detail/g/gardei-fir-douglas-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36e60c9ab75d70b5e60cd9674da443c9ae4a554a --- /dev/null +++ b/source/parts/detail/g/gardei-fir-douglas-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32e061c9e6f1b4278abe22a6dfd3e2c2df52c9185d855c2e525ff047d4ffb010 +size 476 diff --git a/source/parts/detail/g/gardei-paper-ring-20000---21400-in.json b/source/parts/detail/g/gardei-paper-ring-20000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7a290c9c0fbe3979ccef4c44ac7f74bdde1a2eb --- /dev/null +++ b/source/parts/detail/g/gardei-paper-ring-20000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df9e134b7c6ade7524a1e9774abdcb7bfa7ab318b5eb7764764b55a33539b96e +size 452 diff --git a/source/parts/detail/g/gardei-rocketry-balsa-ring-05440---09500-in.json b/source/parts/detail/g/gardei-rocketry-balsa-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6cc9e2c6f3030c81ec0829c929568823d5759fd3 --- /dev/null +++ b/source/parts/detail/g/gardei-rocketry-balsa-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49eae9ae6b75008eac46ea96910bd9621a6a714c0d339540f9294e33dba8d0fc +size 490 diff --git a/source/parts/detail/g/gardei-rocketry-paper-ring-04460---07100-in.json b/source/parts/detail/g/gardei-rocketry-paper-ring-04460---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41983a10922124e0749ffd5fb794d959e5e164b5 --- /dev/null +++ b/source/parts/detail/g/gardei-rocketry-paper-ring-04460---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c284fe48fcbc3988dc3e7c2a83a337f1527c04a8e7dda6836597029320714ee +size 488 diff --git a/source/parts/detail/g/garmin-astro-dc40-gps.json b/source/parts/detail/g/garmin-astro-dc40-gps.json new file mode 100644 index 0000000000000000000000000000000000000000..7e15b8a886ecf087428cdc9a5a267571d23bad7a --- /dev/null +++ b/source/parts/detail/g/garmin-astro-dc40-gps.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efb88ad10b3a5363128bf956b2238032579cadc0c1367c29c1fcc2854d2ef511 +size 353 diff --git a/source/parts/detail/g/garmin-dc-40-gps-unit.json b/source/parts/detail/g/garmin-dc-40-gps-unit.json new file mode 100644 index 0000000000000000000000000000000000000000..a9abff37194b2176b85bd4dc26283bf8532ae07f --- /dev/null +++ b/source/parts/detail/g/garmin-dc-40-gps-unit.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6efdc3a91555c11aa28b064e9eb390b38846be2d7f4021743520d73efdde634 +size 353 diff --git a/source/parts/detail/g/general-connector-ring-1-1-inch.json b/source/parts/detail/g/general-connector-ring-1-1-inch.json new file mode 100644 index 0000000000000000000000000000000000000000..b075d70e801760ff31fd64113541ea121d2f8e1a --- /dev/null +++ b/source/parts/detail/g/general-connector-ring-1-1-inch.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c9cfa0b856b74f7dcb1c0f97acaecb58f8ca492817ce111823ae05bb2b712df +size 397 diff --git a/source/parts/detail/g/general-mini-screw-eye-mini-screw-eye.json b/source/parts/detail/g/general-mini-screw-eye-mini-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..870873fe71a599bd08f95e40f3b2278b166de984 --- /dev/null +++ b/source/parts/detail/g/general-mini-screw-eye-mini-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71abde406d0741c3839d41e2e2f2d25efa1d4734916dc7ed576351de0c2b8efe +size 417 diff --git a/source/parts/detail/g/general-small-screw-eye-small-screw-eye.json b/source/parts/detail/g/general-small-screw-eye-small-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..a9c0a6c511fac653b90d4ffb6341499d1c33cf47 --- /dev/null +++ b/source/parts/detail/g/general-small-screw-eye-small-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7151f9987f3b870e626f9a1e3fecdd223bac1d786246ce08cf5bfb7ecfa6bf1 +size 425 diff --git a/source/parts/detail/g/general-snap-swivel-medium-swivel-clip.json b/source/parts/detail/g/general-snap-swivel-medium-swivel-clip.json new file mode 100644 index 0000000000000000000000000000000000000000..bf5368d9d259b26588c394a2f66ee90f6da25467 --- /dev/null +++ b/source/parts/detail/g/general-snap-swivel-medium-swivel-clip.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c3e12396d69dda92b87beb1d5a23d04870d346da7d44bf7e640008b0ac3c14 +size 421 diff --git a/source/parts/detail/g/generic-8375-id-bulkhead-birch-ring-00000---82500-in.json b/source/parts/detail/g/generic-8375-id-bulkhead-birch-ring-00000---82500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ada5e79f5c62a4f1b81aad18466557da3fef9e3b --- /dev/null +++ b/source/parts/detail/g/generic-8375-id-bulkhead-birch-ring-00000---82500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1045cfc7e0458a8091d91c21a2e43674f598d26528274cbdda3fe0a81115c5 +size 512 diff --git a/source/parts/detail/g/generic-8375-id-bulkhead-birch-ring-00000---85000-in.json b/source/parts/detail/g/generic-8375-id-bulkhead-birch-ring-00000---85000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0865baef96b1a27e2e6760812d27b16146955d50 --- /dev/null +++ b/source/parts/detail/g/generic-8375-id-bulkhead-birch-ring-00000---85000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d8c4323062d04522b91dad910f0caddfd97ea8414c64bb0079eccd0975169f8 +size 512 diff --git a/source/parts/detail/g/generic-hardware-screw-eye-screw-eye---medium.json b/source/parts/detail/g/generic-hardware-screw-eye-screw-eye---medium.json new file mode 100644 index 0000000000000000000000000000000000000000..99e2c7f96afc4c180e1f38b36259680808e96d38 --- /dev/null +++ b/source/parts/detail/g/generic-hardware-screw-eye-screw-eye---medium.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723c6a090cb8cfb867dcb2b73aa6125b14acecc30691546b65096cfae1ff6862 +size 449 diff --git a/source/parts/detail/g/generic-parts-shock-cord-shock-cord-wide-36in.json b/source/parts/detail/g/generic-parts-shock-cord-shock-cord-wide-36in.json new file mode 100644 index 0000000000000000000000000000000000000000..02e72e80c9d500eb9706a60f4cc489e7f7a5a109 --- /dev/null +++ b/source/parts/detail/g/generic-parts-shock-cord-shock-cord-wide-36in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80ce6ff53fc506407802bc26fb5bb960aedcc8341b460836b8942839032e92ae +size 449 diff --git a/source/parts/detail/g/giant-leap-39054mm-aircraft-plywood-loc-ring-22600---39000-in.json b/source/parts/detail/g/giant-leap-39054mm-aircraft-plywood-loc-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8037f86891c4a5631d3c8bbd00b0941eeb81d22f --- /dev/null +++ b/source/parts/detail/g/giant-leap-39054mm-aircraft-plywood-loc-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e637c5ad291475939fdc2cde3b876c1b3f7638cfd4ad4c83426e8082dee6c1ba +size 563 diff --git a/source/parts/detail/g/giant-leap-39054mm-aircraft-plywood-loc-ring-22709---39000-in.json b/source/parts/detail/g/giant-leap-39054mm-aircraft-plywood-loc-ring-22709---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62fd9e0dd126de68c02eaa01721b7bfe8bca886f --- /dev/null +++ b/source/parts/detail/g/giant-leap-39054mm-aircraft-plywood-loc-ring-22709---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80755f457bab8cc7d548429efe19d1f18ddca649fc0f80fe569808d941f7317c +size 563 diff --git a/source/parts/detail/g/giant-leap-cb-tailcone-ogive-transition.json b/source/parts/detail/g/giant-leap-cb-tailcone-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..3a5b7da5da5f813fec8d947908d745a61fbfa73c --- /dev/null +++ b/source/parts/detail/g/giant-leap-cb-tailcone-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e85753b5f266002a2d09842efa19a8b87248b6d8cb22f4f9eb8b767d68148f8 +size 630 diff --git a/source/parts/detail/g/giant-leap-rocketry-14-aircraft-plywood-ring-22700---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-14-aircraft-plywood-ring-22700---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0167e5d1a67a05ed81e44c709f7a79831e1bffb1 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-14-aircraft-plywood-ring-22700---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73104446d0476b0170e3f975a442c59d7d867b9c29e388303311452a1a6dac73 +size 544 diff --git a/source/parts/detail/g/giant-leap-rocketry-18-aircraft-plywood-ring-11800---29400-in.json b/source/parts/detail/g/giant-leap-rocketry-18-aircraft-plywood-ring-11800---29400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..addc3c59d91311efe676b07e7029ba1b87a9fc72 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-18-aircraft-plywood-ring-11800---29400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50875a9d8e58e90d7ed0550894fe75f3ca0fe80b52d195020f9daa1dc449eabc +size 544 diff --git a/source/parts/detail/g/giant-leap-rocketry-18-aircraft-plywood-ring-22710---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-18-aircraft-plywood-ring-22710---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbaad3f8672970f886dd2835ea8c80124be16e8f --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-18-aircraft-plywood-ring-22710---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de21d325f793e5a68bd21ceddc4b71d78333bbe56214afd487300b6ff9965e87 +size 502 diff --git a/source/parts/detail/g/giant-leap-rocketry-316-aircraft-plywood-ring-00000---25600-in.json b/source/parts/detail/g/giant-leap-rocketry-316-aircraft-plywood-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..81ee23dcf61af5c6638e36bd5a0780b07c732e1d --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-316-aircraft-plywood-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5427969866a50cafb400c1dbf23c9b5024521989193a4c5164f8c1118c05a85d +size 541 diff --git a/source/parts/detail/g/giant-leap-rocketry-38mm-motor-retainer.json b/source/parts/detail/g/giant-leap-rocketry-38mm-motor-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..c717b276cf3d2c234deeb08cfd4c734de40e16e0 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-38mm-motor-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1e223be12d363ca31f86cfb07e4bb09e3336eb606c8bedb6542674dec131ba +size 416 diff --git a/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-00000---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d89a77c3ffb33b9de08388126f5b5d4dbc86b1ca --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:841734635a4e7431ae67c3e9d301f420fc972c88fe1edc4d18bc81ad8bcb4875 +size 548 diff --git a/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-00000---75000-in.json b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-00000---75000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a10e4925d83c4f727d65d1b35751dcffd2e047a3 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-00000---75000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c27e99c8fe9972217b4ad0816ac70ddb3b715d2ab156943f48d4ed8e6be34a8 +size 548 diff --git a/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-07360---21800-in.json b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-07360---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49609f1d327fc2ff83444a1e7f8b95c438a39a66 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-07360---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac166face84c1ba3c542f99a887dee71a1397dc88079e3f631b04a43072fa60f +size 512 diff --git a/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-09760---15900-in.json b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb1dc94cc2841bcfcd48976560564ee745e46060 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-birch-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0621ca65904c172d0c65088d8a273d849a176875ec67c1a5955d9f60a7c0f83 +size 512 diff --git a/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-loc-ring-00000---30000-in.json b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-loc-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c51830728e68f640996c9a4706ed921444a9d36d --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-aircraft-plywood-loc-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a348d581940333a87828e1a916fa468eceda6a88a3dced9b1ac39d17206c67b9 +size 542 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---00000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2c3bb34ec3d38e8dd177206d0f5ff54abe48bce --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527bbc318dd9cd35826b9a7d938f59868bbefcdf9d4372eb6276add85388b21a +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---21500-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..731ff6f7790c7c020eddf1bbb11759ee27a25936 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26f5a9bace90528b25a33ef20fc1545ff04aa8f807a21230718393fb10cb73a2 +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---25600-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d32e0223a01fd25c14a3122cd49ecfbdf575977 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09aea656654ca2b1ef394ef95554df7ca3f2db92538ab08eab0c5ada562df71b +size 500 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---30000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08c62b44686c12249a250bdf8c977d649b9a7d46 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77adcded2646c2513f74d91ab2c9ad86a117761263d4fa1cfc9613d2a7aefc80 +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---30030-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---30030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a927301a436fa314ad8bc13d59bfd447b1668f21 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---30030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ba85ef2ab6edc6a6709dbd45506ab4bc84c355495cbcb57ff6a30a91ff8d515 +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---37000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---37000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ab1f8bebae636c1bd22f30b21b4443a5b9359e3 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---37000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94750caa857f6479da8954f3278c4cab879366af961a5c33c50d5c1465a7bf8c +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---37900-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---37900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..61a9b80a4c58713969eeee3ddc312a119195ce8d --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---37900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d040f6a38286cc25cb72995863fd8a941a31707e956a5e004ab0bd5033021c7 +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f80566c1889840b3986222ab143862ab3463a0f --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93438c0d549da47e68a9d997a2ddb328cd28c7e1598ce9af67614755b43e512f +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---60000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29451b3bc2f43ae2b6720f3133733bfe495cced3 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5a8b2d24eddf35d7cfaa70475358a7fae11a84418e1bb98b590f6aaf767f7f +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---75118-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---75118-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1396e70494f767067dd408f2f1c9dbb92d3260bf --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---75118-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8b6deabe8281a964ef09857e36e9b2770ecc7c97133a7f26844d04e45b0adc +size 459 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---75120-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15314560b3c9bcb3feb3420736132dd2d19c8981 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:309f1dc7783843bc42d63a1002e44a8ad80c7ae1dd5e7d8751351fa1e7f4c75c +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---80000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..662080a0965f2ceb37bd3399b117ce32c7170dac --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-00000---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f97eb18fbcca215eac858c95ddcea66e92a275fbc58ebda92ec2177d1b2c63a3 +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-02500---57500-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-02500---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d5e411b6a411935e337a5360427ef92f5f17b7ce --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-02500---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94e26b0a93225204bea37d7fd19f65a3f935c2bc1fd53ea0d02c148b694b48aa +size 495 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21520-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8c96de456af27dcf569d8b143c44ea9a86272b4 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155404626e43246be97d731eb0478bfef6ed91167760f748473f51df4b958b29 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21600-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6bc43cc1babddc7ebf7e528477feb2c44da6c725 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32dbdcc5dbf4aa633484027883bba6201f7985e615b540742b494e9d449572fb +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21800-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c9ffd7c3c1073157264cc762bd51390584bb10ea --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61220d07d4e099772e785c67c565f996778a7b5caf4acc41f77b58c2987547a1 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---22500-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6385ee176e45c20b364242aab41d721fe1f42dce --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8151cfadf23c608fededcfbd000f4a1ec6a698339ed3b459e81b7f56b17c0945 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---25600-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b713df621167024902cb1bfe410137d0bfd9ebe5 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11417---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084ee97efee20f18ad98b38e39887566c0151a0a8942f6f43c94e57c8e648b18 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-11760---38960-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11760---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de838169a3178371a319007df74ea3a74bf38ba4 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-11760---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e301e1ed95e9227f90929a07caa937bf7baa2fcf81650a54ab59f36a587c3490 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-12350---15000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-12350---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..428eb438c322d80ca08c50c03dcd1ea3089093e4 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-12350---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eac7e2975f09add1bd4a929bfb5c459073c2a053fb7d66266ed134b0c5eadad3 +size 459 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-12650---15250-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-12650---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e37168a17ccbec554c01ee3d0022b22ab555fb73 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-12650---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad374b4f8114b850ca490ac6d672eb5cfe3f84a0f0f6b53cd88b1668a92d36aa +size 459 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-14961---25600-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-14961---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..edeca5ba71d683883c954ce77beb86f79242d787 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-14961---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7394dc1e6a9d6e6296e08b9c28440e5cff1adec8a463de47797aca27dac4d76a +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-14961---30020-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-14961---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a6bc6b12db1d8d0c1e7b5a3c0f874ac4fe17457 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-14961---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322610985c05cdf25c0ebbe99c9dc445c16e3c9bbe439d2bbe6a471e1ec05c53 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-16350---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d4684bf190fbad1f4307acdaff23698b7cb5b69 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbae436daa076179e205024e413be7efbb8f5dae24ba56528f19f7e43b87d7b1 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-16420---25600-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-16420---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b909e70ca801d7e9730a12f7a8a0a8eacfa23176 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-16420---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0192965a87737d4c0989cfda9c1bc611da30a544bd890c9d15bbe8e8b05d0790 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-16420---30000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-16420---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff04f457df15f2e03bed87c598d091eff189c2f3 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-16420---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff4ec34853000091cca4455eea404557d683db47c3fda2a1bb1206a66312817 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-21260---30000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-21260---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d5aae76cadbfddce2385ab4dc47bb42ed59585e --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-21260---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f26956ac7aff369e0b472e3ca6237775730053e176736b9d765dc5bbd8c6eb49 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-21260---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-21260---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53b24a21386aed395802443d1aa094196ed91e31 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-21260---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43afe4bfe14e9b0a35cc36c7ac9216b942cdbee037185881f0bd257a70381f47 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-22770---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-22770---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d28581e49b7b7bf970d2164bfc01d55bae29d1b --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-22770---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb2a64d3452aa807b157fae72a3f1bcd9e41d5f6562f31f4722dace987a9ae87 +size 459 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-29921---60000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-29921---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8f9674cd31b3102adce95b524143b32c4640885 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-29921---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dafa5f5defab2ec89ef4c972720e9cd9be5fa3ac08aa78dbeee13d6ffeefad9 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-30000---80000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-30000---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa6db23f2f8c932d43155cb9939a0725e9e6df4 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-30000---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72d0c6e24949bd015927ae78895424b0008ed6fe01c1649f64d1cfdda4ae1480 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-30650---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-30650---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5aada440c12445a05d72ef8f388d4a5e2f3fb722 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-30650---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:727685de17117643e301d64d1a9099259297bfcd802f22c32598c21343d9496b +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-31250---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-31250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e6ea6607d46b341f5983cba1480eed80105f45e --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-31250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eccf12035d580fc7891aa1f1c0e1b23a1557c6e34616131252072469c674068f +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-31252---37500-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-31252---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ba59f10381062edf1643fca00fa0b7aa9ef95f6 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-31252---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61290e9ddddb475594ea1a6910aba11d6e4cf962a3631772bc72a0ef156c0070 +size 501 diff --git a/source/parts/detail/g/giant-leap-rocketry-birch-ring-65000---114000-in.json b/source/parts/detail/g/giant-leap-rocketry-birch-ring-65000---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d09d503695313902bdb4487fe2584d61cffeb014 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-birch-ring-65000---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df666bfafbc8560639da628300abed01becd17bcc22bd3b9da1a55e8a0a99324 +size 462 diff --git a/source/parts/detail/g/giant-leap-rocketry-bluetube-ring-37900---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-bluetube-ring-37900---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac5b341ee16d9c2d79c0d03160f9fea665e261c6 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-bluetube-ring-37900---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8766c9e7a22c39e5a9b8241cc714a0fc3e8f236c956f3c451706b40909d12b9c +size 502 diff --git a/source/parts/detail/g/giant-leap-rocketry-carbon-fiber-ring-37730---38980-in.json b/source/parts/detail/g/giant-leap-rocketry-carbon-fiber-ring-37730---38980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08866fdd745f11ebe6cd555402969c79ae4c7a7d --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-carbon-fiber-ring-37730---38980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57d73ce702dd16039ab93adc60274165b04a7eddc009075758a82672323c74bc +size 480 diff --git a/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-00000---21520-in.json b/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fd219a71fb1bd2edc15fcdcaeeecaec2cea97149 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2587b1d554df035df0e81e385a8c2d355719cf88e56dbd148c9f5c42be15b16b +size 509 diff --git a/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-14961---21260-in.json b/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-14961---21260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de7cef5006836be0c33426f75ea62c6434d9e49d --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-14961---21260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb891b4356fd66bce6bf9ae2d799609e616a7e476d82e44e013de15c2a394f1 +size 509 diff --git a/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-24700---25600-in.json b/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-24700---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..320adff5b3276e2bdea3c827b6cd9bbe6c244f08 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-cardboard-ring-24700---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab4d274213bb5db1c832125f3c555875b36cfece6b63a082f5512c423d74125a +size 505 diff --git a/source/parts/detail/g/giant-leap-rocketry-cellulose-acetate-propionate-ring-14961---21500-in.json b/source/parts/detail/g/giant-leap-rocketry-cellulose-acetate-propionate-ring-14961---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e87a55460011352d8e0b10c2c4e922d60d2e9854 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-cellulose-acetate-propionate-ring-14961---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812ce95f52a5a1129dfd07798f3e6d06db4fbffac261b397d6cdbd2327709b27 +size 528 diff --git a/source/parts/detail/g/giant-leap-rocketry-cellulose-acetate-propionate-ring-23500---25600-in.json b/source/parts/detail/g/giant-leap-rocketry-cellulose-acetate-propionate-ring-23500---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..be3edf15851754a3771d6e385c1ca099c5d8b6ad --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-cellulose-acetate-propionate-ring-23500---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75bd8126b1467d89769167b139d59676da6e6149c2ea515cee8f22f94d15b9a +size 562 diff --git a/source/parts/detail/g/giant-leap-rocketry-custom-ring-40300---41550-in.json b/source/parts/detail/g/giant-leap-rocketry-custom-ring-40300---41550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..040a9bf7af8bb4ff8f34bbad3a05514f5ae455a1 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-custom-ring-40300---41550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:806c685edc42a014495f6448dc1e600e350d2f90e153ff6a5acb4eac545c6ee2 +size 535 diff --git a/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-12350---15000-in.json b/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-12350---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..def87e12fc1cf1e79437ebf774feb927d1481bb0 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-12350---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a1b07b51d3261d420331cf70143bbec54659ab2290a0a80b121154dcecb9f5a +size 537 diff --git a/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-22770---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-22770---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a5bf372d25581d819b53718cd759e45d2c922ca --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-22770---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:525957ad656e7ba48da0f11c3af1bc4d7e58baca067947d047e0d1e808263eeb +size 516 diff --git a/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-29000---30000-in.json b/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0255f379030c56c4e894d1309329cc09b0274215 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-fiberglass-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a30dd84ead6c6a1d87aba820f24756f796bc24a307bf73344d23a33d1eb11e2 +size 512 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---33980-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---33980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..61e4d3ed7fdc393b8954a252ea363bc0efea2b97 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---33980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce7b40f3d1b0400f193bebf838b1d90a406f6541e849d9624ade8b43acbe2421 +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..14650c50d13f8154eb0463e2d53384ea4c5342a3 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a29dd7adf1a63b98358db737123dac1aa53f089881f2abaf5f6c700bff6edb0 +size 522 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---40000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..519062f66519ca33831e326d49375ce62a794bc5 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3e8cb17f7cf43dfd81a5c871456a1975c8b7ed3f5a54b1907ab6a8a8b044749 +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---59000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---59000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9f57736699e51adcdfaf8d76c0c2ae9348bd0943 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---59000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7698a54360bf6ee90597cd4825d52379d2b00cce0c4e034efa39d9b6f3a0180 +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---60000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..300c444a4c7e12fac6842cf2f217cddb6e206e29 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d812014b72ccab17e0c4c1d3a7742e012a968c645e1eee691b903f40d30e2c0 +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-02500---57500-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-02500---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93f18d1446f117e738e254084abcc0ed1fa1bc64 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-02500---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dad256fc81163760acea52d16c7a3f1b7871f0d50c9ed409454caf8045f1606 +size 522 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-02500---60000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-02500---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aeeddcbf928628fae9c8678a50e63a94fbe49370 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-02500---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18462da4a6121185b76004eee103f973f3a151ee65987ecd1c3bc6d42a5810d5 +size 522 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-12200---21520-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-12200---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e3e0ab8e7b62a475e92e3ebc771246a9cbaf2f5a --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-12200---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f778a53d2b476fa7c4318bb7f8412663b67d7f2f7e16bc4bd64df723aa61cd +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67d16024a1adccc3bb347b20ee3193cb66202c9f --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:015eb2d97231c8c6638b702e3801089e646c446d1d22fe5f3b84ee9fc4583e5b +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---40000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f0853fc296430a4490f33f74b7cd82f231e555b --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a1a31d06486059eb7e6bd8362aed2dccf861147bf72f7b69698594c03a0116 +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---51800-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---51800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..81c122351a69f08a2cb1bdfcafc5db74846ce9b2 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-22770---51800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aed187e8a02ff95ccd95ed0e279b6d81a2d00ff56b98cce7d4a186fc7d26fb5 +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-31250---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-31250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bcb5a63c2258e8ce197c2c7a36cbdd72eb86bf4f --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-31250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d4ec3b770d08e54bac09fc80d841d14af76b9a3695ccf67be7731584be7c5c +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-58500---60070-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-58500---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef3f4030d2757bd2ec6135601ece94b35673636a --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-fiberglass-ring-58500---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87730f1f273b970caa8924ea3fbc6268b18d1a1188dd3b6e710dde3aec7436ff +size 526 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-pml-0062-ring-00000---50000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-pml-0062-ring-00000---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..771557b3f673693dcf84b9277888eb95aa0cffb3 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-pml-0062-ring-00000---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe7aad5c24ec6a2cb94ec78e941686312f1aa507402c8ef911d26367e964865 +size 521 diff --git a/source/parts/detail/g/giant-leap-rocketry-g10-pml-0125-ring-22770---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-g10-pml-0125-ring-22770---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..47bfb2f6f89080aa51468a9514cf6c4e50d08729 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-g10-pml-0125-ring-22770---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb72e7c2bbbcca5cbc01990469561aefe11518dba5d811236776aee183c6b52 +size 483 diff --git a/source/parts/detail/g/giant-leap-rocketry-hard-point-hard-point-anchor.json b/source/parts/detail/g/giant-leap-rocketry-hard-point-hard-point-anchor.json new file mode 100644 index 0000000000000000000000000000000000000000..5321446148c8689cc3388fe05d675a9df633d303 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-hard-point-hard-point-anchor.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bade191d70e0a0532317b6ebdc6adeb97a00ea5861a251e149d0be2a98ace8b8 +size 452 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-20200---21500-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-20200---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e949489748577c35d93034e299efa122e4d07d98 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-20200---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31da9a8d14958f22e94314bd27442671fb452543b4fa454f0b19f1a333dcefbf +size 520 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-20300---21500-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-20300---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..21a25d3ad27ae50ce9049809c743898dfe77042d --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-20300---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:372beb9c7fd5165fe5315b39819be4476d4fb486f624fd972de33e22074409f2 +size 524 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-24700---25600-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-24700---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b15d67d0905452a90274bed2f59ed9a9d94c4ecc --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-24700---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48adc983e7c9a895cc12a68dd6bf6735ef5a6cb36c4b664b4fee2b47b24af235 +size 520 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---29400-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---29400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..705d6a35d28298b105081a6e105cde4c17dc103f --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---29400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811c8d3322a8913d614707c8c7ecee52276f64405ec50b315d0bfb18febc732c +size 520 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---30000-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e37560a198eeb7254d9bd1f8461faae752dca7f3 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bfa2c0b87f2ed6af3cc214b7dc2a3974437694d1dee208740bd0847fe7266d4 +size 520 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---30020-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d6e585d1b86fc3fd88704f07b0688f43a6ba833 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-29000---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a29baeb14ee676b0844d400db115fcbedda4b70b654b89aa7e022d38fe085a +size 486 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-36000---37000-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-36000---37000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1831f7d9d913e520c0e16538702e3e9637143702 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-36000---37000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aa56bb0402731005aa9fb6922d9b330606127b4d9b52b11496556b26a765b85 +size 520 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-37900---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-37900---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41f5575a6859e6d7e105ca725f430b6882a7b050 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-37900---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09991c7fa4354951ebbf6abacdacc95d7c4feab07f4f6e23750e9fcc8be7c782 +size 529 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-37902---39000-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-37902---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b7fcea7e894f54acd16ad31e344e66c05a67d1c --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-37902---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:765a4ed27984e5f2b3c7c6f5fd42cdb736da44e9285e194448a213835100de9e +size 524 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-58500---60070-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-58500---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d44559a3a83ccf9f096b12c812f39906342698fb --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-58500---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1ab2a1028f2cd7c27b2b7837927f3b48831b4c40aa974716e283d855fe6b5d +size 526 diff --git a/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-73300---75120-in.json b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-73300---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c38c3303bda49e5c74a9d3e189318b6775f95d34 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-kraft-phenolic-ring-73300---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:581dc0791f4283dd42f24661f0154907bc873aec4d4b56de2136244ce2f05067 +size 526 diff --git a/source/parts/detail/g/giant-leap-rocketry-lg-fireball-large-fireball.json b/source/parts/detail/g/giant-leap-rocketry-lg-fireball-large-fireball.json new file mode 100644 index 0000000000000000000000000000000000000000..7eed4785783e1477463e7255c85f7c7e22086ae5 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-lg-fireball-large-fireball.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19b3c74991a4358ba353675754456092759a30f42a8fffa86f5da8e1858963cb +size 444 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-1-15-1in-15ft-nylon-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-1-15-1in-15ft-nylon-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..a5bb976720b1367289df1b5f160a12026e515974 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-1-15-1in-15ft-nylon-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a75cebd025d46196ab5c979c4b08a4ef070a14b58614e678b40c8ce4dfec0b0b +size 476 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-1-25-1in-25ft-nylon-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-1-25-1in-25ft-nylon-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..6cbf04d4b197a12f4334b16adad0c6679cf0440e --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-1-25-1in-25ft-nylon-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52180230b0c3e7a5742a9ecd7c51d6e9b904f9c1b0422f9a404b7a47ab32e108 +size 476 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-12-15-12in-15ft-kevlar-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-12-15-12in-15ft-kevlar-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..e9b96dd5e390f67a3eaaa9323f2035b589d53d22 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-12-15-12in-15ft-kevlar-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800b64e8ee8fbc3f223ab416a0999b91ef6d6df9d707fc10b44ca44dd054ea5a +size 492 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-12-15-kevlar-loop-12in-x-15ft.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-12-15-kevlar-loop-12in-x-15ft.json new file mode 100644 index 0000000000000000000000000000000000000000..fd7a50aa45aade49de82dbbac890358baa485e57 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-12-15-kevlar-loop-12in-x-15ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6315b24b283bd8013c8a71d1a7cf0c7ed820fd81f94622eac490d231573f3710 +size 500 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-12-20-12in-20ft-kevlar-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-12-20-12in-20ft-kevlar-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..bf016c7df858f0ea88fc147e6cb25aea5395c046 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-12-20-12in-20ft-kevlar-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b6c441acea1cea622ff464961836faa057c763756f023f61a9da2f6bd186ec +size 492 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-12-25-12in-25ft-kevlar-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-12-25-12in-25ft-kevlar-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..95133ffda11aab26c5a3f37b5f32883eda4504c0 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-12-25-12in-25ft-kevlar-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406b59b2af2ec5b9e76e731a71ee5334868630d097ad5a9fa72452fd1f7cb4f4 +size 492 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-14-15-14in-15ft-kevlar-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-14-15-14in-15ft-kevlar-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..06759d647ca2211e75c83f14502c466be14a2113 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-14-15-14in-15ft-kevlar-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff2da8753e21366e0ad60626c7acb9ebf39e6d7bc1d2d277619e3b345dd6034 +size 458 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-14-20-14in-20ft-kevlar-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-14-20-14in-20ft-kevlar-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..e1e847c6ce8f7df516d68c0e138d2905a61e69ec --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-14-20-14in-20ft-kevlar-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cdcc1de5ffed1bac84ead538af81ced671b872a4a1034c118ec19f33ff696a4 +size 492 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-9-16in-12ft-nylon-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-9-16in-12ft-nylon-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..3d53bbf4eb126a1a5a69bae6028c8376de4a40e6 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-9-16in-12ft-nylon-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98aa96c659afe1fd4e44b5625a79b07b5a620411e2fbdf7956f898ceefb2e775 +size 468 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-916-12-9-16in-12ft-nylon-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-916-12-9-16in-12ft-nylon-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..0701bdb71de8a40bfcde2a1ff9c6f40a1200d078 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-916-12-9-16in-12ft-nylon-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57e7df0ff2eb2ca6bf080b7f29679bf74c4ede3b1b0860a749bf8f1ab125aee +size 496 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-916-15-9-16in-15ft-nylon-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-916-15-9-16in-15ft-nylon-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..0c1d4cc0f803f300db1e91dd8a9d13b8c7494d89 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-916-15-9-16in-15ft-nylon-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d4e78dbac46c67075239ea37771dd4b397dfc81d90d405a8e07acdeb35b375c +size 496 diff --git a/source/parts/detail/g/giant-leap-rocketry-shockloop-916-25-9-16in-25ft-nylon-loop.json b/source/parts/detail/g/giant-leap-rocketry-shockloop-916-25-9-16in-25ft-nylon-loop.json new file mode 100644 index 0000000000000000000000000000000000000000..aea15c0ab70f74863010e04845b75c662092ea7b --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-shockloop-916-25-9-16in-25ft-nylon-loop.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a22c8cdb064673514d434e7c289ac5b388c64854115a33cafab8a25715226fed +size 496 diff --git a/source/parts/detail/g/giant-leap-rocketry-slim29-slimline-29mm-retainer.json b/source/parts/detail/g/giant-leap-rocketry-slim29-slimline-29mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..df5d3c7cc68a01e17833954ca23db9fe411c7edd --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-slim29-slimline-29mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5a50744a760707eaab242c8a579b22cbcd124004f219d04e16cc27f8d563a86 +size 456 diff --git a/source/parts/detail/g/giant-leap-rocketry-slim38-slimline-38mm-retainer.json b/source/parts/detail/g/giant-leap-rocketry-slim38-slimline-38mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..c44738ae29699cb8c0bad36c03ce63524d374228 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-slim38-slimline-38mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e5c76e75d5326f420f26184ffdc3fb9a71637924c4c7ba138368f1a8dfbe47 +size 456 diff --git a/source/parts/detail/g/giant-leap-rocketry-slim54-38-slimline-54-38mm-adapter.json b/source/parts/detail/g/giant-leap-rocketry-slim54-38-slimline-54-38mm-adapter.json new file mode 100644 index 0000000000000000000000000000000000000000..794bd5efdecc1af71c162af35a812bd02ecd2409 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-slim54-38-slimline-54-38mm-adapter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bb6567e4d117f84a836f406f2e397db4ef39135c92cf7a5b2e6f7cb09d1b4e9 +size 476 diff --git a/source/parts/detail/g/giant-leap-rocketry-slim54-slimline-54mm-retainer.json b/source/parts/detail/g/giant-leap-rocketry-slim54-slimline-54mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..b47e8e1108f3dc758cc7114f3f8013f881039f23 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-slim54-slimline-54mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec7a0a792b6eedf56ca46dcabaa82e0538f23b0fb5470a1edfe203c0367847a +size 456 diff --git a/source/parts/detail/g/giant-leap-rocketry-slim76-slimline-76mm-retainer.json b/source/parts/detail/g/giant-leap-rocketry-slim76-slimline-76mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..31fc70905fc2ad8bd30348d6cd1d6964e83b9eda --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-slim76-slimline-76mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d759ed27dbcbce8403d4149218ea1efb0e5530ed715f899381fdbe6ac7a8b0fa +size 456 diff --git a/source/parts/detail/g/giant-leap-rocketry-slim98-76-slimline-98-76mm-adapter.json b/source/parts/detail/g/giant-leap-rocketry-slim98-76-slimline-98-76mm-adapter.json new file mode 100644 index 0000000000000000000000000000000000000000..08aa9e9915c65269eece1d5f9abcdf5a0387e982 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-slim98-76-slimline-98-76mm-adapter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb36adcd217621c1ec1a7d851fe3885a7df3e93fc265594f0a94c53e7a884bd +size 476 diff --git a/source/parts/detail/g/giant-leap-rocketry-slim98-slimline-98mm-retainer.json b/source/parts/detail/g/giant-leap-rocketry-slim98-slimline-98mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..965f041e93027e68ac680f0c28eb17bc83dd0d1f --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-slim98-slimline-98mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:049dd2eef80f346d53758c3eb0ec1141e2ecf8f0e716a98650080143d8d01778 +size 456 diff --git a/source/parts/detail/g/giant-leap-rocketry-slimline-54mm-slimline-motor-retainer---54mm.json b/source/parts/detail/g/giant-leap-rocketry-slimline-54mm-slimline-motor-retainer---54mm.json new file mode 100644 index 0000000000000000000000000000000000000000..7e8d691d61b0f1d1f399ed9fdbf36df6a3f50914 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-slimline-54mm-slimline-motor-retainer---54mm.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e609b6d56354707a113112c6e52cf7d9f6eb5104231fee1b5cc14fdc46fb38a +size 516 diff --git a/source/parts/detail/g/giant-leap-rocketry-sm-fireball-small-fireball.json b/source/parts/detail/g/giant-leap-rocketry-sm-fireball-small-fireball.json new file mode 100644 index 0000000000000000000000000000000000000000..05870d0f3fa1b6febf216a5976fd30ea2eb60cb9 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-sm-fireball-small-fireball.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab807eb49e3d227a94b2fc3f50b23c3066fff755c0937625a92d753c353ce56f +size 444 diff --git a/source/parts/detail/g/giant-leap-rocketry-tc76-38-slimline-76-38mm-tailcone.json b/source/parts/detail/g/giant-leap-rocketry-tc76-38-slimline-76-38mm-tailcone.json new file mode 100644 index 0000000000000000000000000000000000000000..cb07b8c231a02169edb78837aa0872809949ea60 --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-tc76-38-slimline-76-38mm-tailcone.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0886d8ff34abe5739fc64df6af483d0208f67b437731a52d83ab9cccb28c835e +size 472 diff --git a/source/parts/detail/g/giant-leap-rocketry-tc98-54-slimline-98-54mm-tailcone.json b/source/parts/detail/g/giant-leap-rocketry-tc98-54-slimline-98-54mm-tailcone.json new file mode 100644 index 0000000000000000000000000000000000000000..d234f53e10c28bb616c7bb127c33914363807ccc --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-tc98-54-slimline-98-54mm-tailcone.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3fd9dcbea2328738cd03081f1060975ff11794e0fbb1c79796274c04c09a272 +size 472 diff --git a/source/parts/detail/g/giant-leap-rocketry-tc98-76-slimline-98-76mm-tailcone.json b/source/parts/detail/g/giant-leap-rocketry-tc98-76-slimline-98-76mm-tailcone.json new file mode 100644 index 0000000000000000000000000000000000000000..7289e98a2bfad5c4fa2cad508125e5348818245f --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry-tc98-76-slimline-98-76mm-tailcone.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba3c828162427862395d9b0aa27e18249f97fe140f633b36539c383b49124f6d +size 472 diff --git a/source/parts/detail/g/giant-leap-rocketry.json b/source/parts/detail/g/giant-leap-rocketry.json new file mode 100644 index 0000000000000000000000000000000000000000..a44feb2aafef5475cb8d4fdc2eef5c0adc3427bc --- /dev/null +++ b/source/parts/detail/g/giant-leap-rocketry.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c955612a2d3f04fc6748637664cfb47c5ec1fab6be368218b39d6c5b6194e8 +size 301 diff --git a/source/parts/detail/g/gray-bs080911-forged-eyebolt-14-with-washers-and-nut.json b/source/parts/detail/g/gray-bs080911-forged-eyebolt-14-with-washers-and-nut.json new file mode 100644 index 0000000000000000000000000000000000000000..3c42c82ee7aa9761af3b966d07ac341e92839857 --- /dev/null +++ b/source/parts/detail/g/gray-bs080911-forged-eyebolt-14-with-washers-and-nut.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:044fa9e42e69ff350f8738386029cb33a90cca852d800591dbc4f08b5658365c +size 479 diff --git a/source/parts/detail/g/green-g10-ring-20094---21575-in.json b/source/parts/detail/g/green-g10-ring-20094---21575-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b32c10c7d41afcb818bdcc64aac0238bef4dc7d0 --- /dev/null +++ b/source/parts/detail/g/green-g10-ring-20094---21575-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28c428576a0ca6be0710aade64c0253bffff7d3d831e1b5559e2289d44fa4bf8 +size 389 diff --git a/source/parts/detail/g/green-g10-ring-37638---38976-in.json b/source/parts/detail/g/green-g10-ring-37638---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a4531a597e7c7d20b074aea042ff13136733ac21 --- /dev/null +++ b/source/parts/detail/g/green-g10-ring-37638---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0716ba2c268eaf024806460a01c8bd1e001e973178111fed9edaf9916f2a5815 +size 389 diff --git a/source/parts/detail/h/haack-transition.json b/source/parts/detail/h/haack-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..aa6dc76f072c279c6c929998a5b1b4cacdc1e604 --- /dev/null +++ b/source/parts/detail/h/haack-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d676322ff51361e64d27593fa97b58335f64e6dea689336b67df862ad1ce06b +size 560 diff --git a/source/parts/detail/h/hardware--steel-threaded-insert-for-14-machine-bolt.json b/source/parts/detail/h/hardware--steel-threaded-insert-for-14-machine-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..5185ed78b5bbb942e87f1ccb116eae7f10667b01 --- /dev/null +++ b/source/parts/detail/h/hardware--steel-threaded-insert-for-14-machine-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34e115e4050968363249dcf2aa11c137b679e4c8585ff12cd3def0f40695ba39 +size 457 diff --git a/source/parts/detail/h/hardware-532-screw-eye.json b/source/parts/detail/h/hardware-532-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..caac4fcee9bad89ad5a7d35971abacbc2d5faf9a --- /dev/null +++ b/source/parts/detail/h/hardware-532-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c85d09e65d89cf1d43d6a905e6983bcaa6a15f367ef978243fcf9f233874008 +size 343 diff --git a/source/parts/detail/h/hardware-parachute-snap-swivel-large.json b/source/parts/detail/h/hardware-parachute-snap-swivel-large.json new file mode 100644 index 0000000000000000000000000000000000000000..a5be43a7d47537db1799a183876e559da5ee9a3c --- /dev/null +++ b/source/parts/detail/h/hardware-parachute-snap-swivel-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35a0008e6a52f5598b6b508f44200aee61885d9692729232079b74f220456edc +size 413 diff --git a/source/parts/detail/h/hardware-quick-link-small.json b/source/parts/detail/h/hardware-quick-link-small.json new file mode 100644 index 0000000000000000000000000000000000000000..d55e209a2c4db54ad9962f4f2276286b1dec217b --- /dev/null +++ b/source/parts/detail/h/hardware-quick-link-small.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c843cfc781cd85ee6d3e7db5b5761260e05dae671ed313feb37326d29a6abb7f +size 369 diff --git a/source/parts/detail/h/hawk-mnt-g10-fiberglass-ring-77850---78330-in.json b/source/parts/detail/h/hawk-mnt-g10-fiberglass-ring-77850---78330-in.json new file mode 100644 index 0000000000000000000000000000000000000000..341fa6779b9989008de1a49c59a02c3a8f082c01 --- /dev/null +++ b/source/parts/detail/h/hawk-mnt-g10-fiberglass-ring-77850---78330-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f70f0133ae53496ce44c46c185a43c987c3649f53f0b3e553dcc67ae6d73b839 +size 451 diff --git a/source/parts/detail/h/hawk-mountain-aircraft-plywood-loc-ring-00000---20000-in.json b/source/parts/detail/h/hawk-mountain-aircraft-plywood-loc-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ff38d9570e5089e1601e11d558f3f58607247367 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-aircraft-plywood-loc-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a6c9e489b22ed3a8aaecfb0a576613a26dec3c278fa238eef2f5241245d5674 +size 525 diff --git a/source/parts/detail/h/hawk-mountain-aircraft-plywood-loc-ring-00000---21750-in.json b/source/parts/detail/h/hawk-mountain-aircraft-plywood-loc-ring-00000---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6993c7534df52f23293f5937c645b86b3ab5842f --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-aircraft-plywood-loc-ring-00000---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:395a0600b43bfaed018a428add1435d60cdcaf66e3409ccb734f1b8e287a5736 +size 525 diff --git a/source/parts/detail/h/hawk-mountain-custom-ring-40300---41550-in.json b/source/parts/detail/h/hawk-mountain-custom-ring-40300---41550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..952322aada2f2cf522aac5b80a0ad9cc6abf2b94 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-custom-ring-40300---41550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54f0747c88e9aedb8ff2274ee22e9d6bf574dda3b4d7cc43ebd0b9ae720c09c +size 511 diff --git a/source/parts/detail/h/hawk-mountain-dynacom-fiberglass-tubing-ring-38050---39100-in.json b/source/parts/detail/h/hawk-mountain-dynacom-fiberglass-tubing-ring-38050---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e24fb308895079716fb9e886fcdfb8f0546fb78 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-dynacom-fiberglass-tubing-ring-38050---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36453132c620bc2dc1a09188921616b4b30e221171fb8a5f047c7cdca03e400a +size 558 diff --git a/source/parts/detail/h/hawk-mountain-enterprises-fiberglass-ring-30315---39100-in.json b/source/parts/detail/h/hawk-mountain-enterprises-fiberglass-ring-30315---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f66101cb778fca60c35bfee35b02060db73ac98 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-enterprises-fiberglass-ring-30315---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4837591faf05b71028f59b0bea677726fdc94fca5fafc8078a908a64473e591 +size 545 diff --git a/source/parts/detail/h/hawk-mountain-fiberglass-ring-00000---21520-in.json b/source/parts/detail/h/hawk-mountain-fiberglass-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ef4cad24c2f89642e72da2d836eec184a9f4ab9 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-fiberglass-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd68917e6e898c4ce147784e79f740887d26bb7082402bdca1783337b96cbb3c +size 495 diff --git a/source/parts/detail/h/hawk-mountain-fiberglass-ring-00000---30000-in.json b/source/parts/detail/h/hawk-mountain-fiberglass-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b474c71bc67fe41363b997b53aa53c08e0694234 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-fiberglass-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b37c60d5815340b795c99f747953a8555f9706e01d8b658deb66c137e4172e +size 459 diff --git a/source/parts/detail/h/hawk-mountain-fiberglass-ring-12690---21750-in.json b/source/parts/detail/h/hawk-mountain-fiberglass-ring-12690---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c71f451923ea3d08bfc3977faeca7b9238a43b56 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-fiberglass-ring-12690---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1c63f703fc413c2de7fbd5355882b2906e645f348464468f1cab60a19172de +size 503 diff --git a/source/parts/detail/h/hawk-mountain-fiberglass-ring-16500---21750-in.json b/source/parts/detail/h/hawk-mountain-fiberglass-ring-16500---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5dba6467bbcd1c3bcbdcf1f63f0a98372b08dbc3 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-fiberglass-ring-16500---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9044b866885c7af0a3e7291ba2ba12df3545389806838fff22147b5cb68fdf34 +size 503 diff --git a/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-00000---37300-in.json b/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-00000---37300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20a76634c0c3d103a575afa723f7aced8eefc617 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-00000---37300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f4afa4c7d076aa9ebc247c2de53e583339a1093d6cc483a826d509a7db567b +size 507 diff --git a/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-20760---21700-in.json b/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-20760---21700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9257be2a6ccaf2ffa7715fa9d3bbf0151509e96d --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-20760---21700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bd3d0299bd1f924d24a7c97a6e03a6a5f5af185fa9a1fa74775553370e187b3 +size 507 diff --git a/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-37900---39000-in.json b/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-37900---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3482e484b48ce46c1c51f8957fd594886256fd7f --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-g10-fiberglass-ring-37900---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:409341986298d6610b166cc3c8640d2681027031a1b03917dad553bf505d0cc2 +size 521 diff --git a/source/parts/detail/h/hawk-mountain-paper-ring-09760---21800-in.json b/source/parts/detail/h/hawk-mountain-paper-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..719819dc7d4ced167fc107ff98729629e2263f94 --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-paper-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a7493b917e3b9d1b4bc770a307c11db1f176f267ffa876686c04d78b052f012 +size 444 diff --git a/source/parts/detail/h/hawk-mountain-shockloop-1-x-10-1-kevlar-strap-wlinks.json b/source/parts/detail/h/hawk-mountain-shockloop-1-x-10-1-kevlar-strap-wlinks.json new file mode 100644 index 0000000000000000000000000000000000000000..8d37fab8b0ba45f94783f9a92dfcc43966bc7e3c --- /dev/null +++ b/source/parts/detail/h/hawk-mountain-shockloop-1-x-10-1-kevlar-strap-wlinks.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96dac56b403b0727d2f847e26978969534251cabb3d3bc055b2eacbb2063bbbf +size 489 diff --git a/source/parts/detail/h/hawk-mountian-fiberglass-ring-37800---39000-in.json b/source/parts/detail/h/hawk-mountian-fiberglass-ring-37800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d44128eeabe4f0596b685a68978d424c6bffbf0 --- /dev/null +++ b/source/parts/detail/h/hawk-mountian-fiberglass-ring-37800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f132c6032efc5892b7f435f3a2563953f116041712da63bd6e723716ccd6b9bb +size 489 diff --git a/source/parts/detail/h/hawk-mtn-aircraft-plywood-birch-ring-31290---39100-in.json b/source/parts/detail/h/hawk-mtn-aircraft-plywood-birch-ring-31290---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f25c44918fb6656648bbedcde8932289a30e51eb --- /dev/null +++ b/source/parts/detail/h/hawk-mtn-aircraft-plywood-birch-ring-31290---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded2ce992f57831d9247bd6da5fcaaaf4ed85e3f02a89461c5d0d1b6494b57ea +size 521 diff --git a/source/parts/detail/h/hawk-mtn-g10-fiberglass-ring-37760---39100-in.json b/source/parts/detail/h/hawk-mtn-g10-fiberglass-ring-37760---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab6abd985ee1646bf540c0e37d930a836fe3e333 --- /dev/null +++ b/source/parts/detail/h/hawk-mtn-g10-fiberglass-ring-37760---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f9e39aed835f79d8057173b8a07c033b73934f0ad5f230bbee80ad8b2b763f +size 499 diff --git a/source/parts/detail/h/hawk-mtn-g10-fiberglass-ring-40300---41250-in.json b/source/parts/detail/h/hawk-mtn-g10-fiberglass-ring-40300---41250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85f6ba09ac26ee45c83218a0a40a37422cc3bde8 --- /dev/null +++ b/source/parts/detail/h/hawk-mtn-g10-fiberglass-ring-40300---41250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f7e0672c604d32aa8e23a916b61f3a67d1e534edd0be21670e571670c79059 +size 507 diff --git a/source/parts/detail/h/hermes-tracker-sled-tracker-sled.json b/source/parts/detail/h/hermes-tracker-sled-tracker-sled.json new file mode 100644 index 0000000000000000000000000000000000000000..136fbeee6ca590bf851e96d3e140cda673bba7a9 --- /dev/null +++ b/source/parts/detail/h/hermes-tracker-sled-tracker-sled.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e098af671974f98e9327489b73158760b15c87bfebf0a4cce46df7adb9c614b +size 397 diff --git a/source/parts/detail/h/home-depot-all-thread-all-thread.json b/source/parts/detail/h/home-depot-all-thread-all-thread.json new file mode 100644 index 0000000000000000000000000000000000000000..221af7485003295193936e9749068ef5bbf06353 --- /dev/null +++ b/source/parts/detail/h/home-depot-all-thread-all-thread.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5e7601ca5a73fee5b9cd7bc5cf69b8965ef10ed8143c2cdf69bab7f30cbfc25 +size 397 diff --git a/source/parts/detail/h/home-made-aircraft-plywood-birch-ring-16350---21400-in.json b/source/parts/detail/h/home-made-aircraft-plywood-birch-ring-16350---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a14510eb957e623dbfb74d6fda8ff0eab161f9b --- /dev/null +++ b/source/parts/detail/h/home-made-aircraft-plywood-birch-ring-16350---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde9ab4c1b86781f7053b7313c84b3b7dcf45e59a6c955778b308cb41b38ff33 +size 525 diff --git a/source/parts/detail/j/jawa-18-aircraft-plywood-ring-12830---38960-in.json b/source/parts/detail/j/jawa-18-aircraft-plywood-ring-12830---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d5604e4b4a6005d0dccc60410b28a952abc0352 --- /dev/null +++ b/source/parts/detail/j/jawa-18-aircraft-plywood-ring-12830---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc89b7eb4ea8b8b7dfec7e66919e40290455ff6cd8ad1ccc03c63b582b133067 +size 489 diff --git a/source/parts/detail/j/jawa-18-aircraft-plywood-ring-16400---39000-in.json b/source/parts/detail/j/jawa-18-aircraft-plywood-ring-16400---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..680e112b8541b2e5aea05e021592b9500777d380 --- /dev/null +++ b/source/parts/detail/j/jawa-18-aircraft-plywood-ring-16400---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36e0a75a74099ad8459eaf597a855bbd0994bdaf90ba34954fd520f2bb0c7a1 +size 489 diff --git a/source/parts/detail/j/jawa-aircraft-plywood-birch-ring-12283---20500-in.json b/source/parts/detail/j/jawa-aircraft-plywood-birch-ring-12283---20500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b55724f4437c6a123d797703ad3310e7aaea8d87 --- /dev/null +++ b/source/parts/detail/j/jawa-aircraft-plywood-birch-ring-12283---20500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:307badeb9a7ba311d3f549af6fec07c9bfe82d4e2db97c9abcce38f0c13a1577 +size 501 diff --git a/source/parts/detail/j/jawa-aircraft-plywood-birch-ring-12283---25550-in.json b/source/parts/detail/j/jawa-aircraft-plywood-birch-ring-12283---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80b66c57ec8dc3af5cc1de209fe291976ab12910 --- /dev/null +++ b/source/parts/detail/j/jawa-aircraft-plywood-birch-ring-12283---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd145698471775599c3b3af2bbc80dae9a8d17576ca12a9a04e12f5dd73b3da6 +size 501 diff --git a/source/parts/detail/j/jawa-conical-transition.json b/source/parts/detail/j/jawa-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..8bf00cf7fda88efae851f5397a298adffc195507 --- /dev/null +++ b/source/parts/detail/j/jawa-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f30eac6194d8b15e2f053a59ed3461386da2b4ed96b9067fe8b5a7787c6fdede +size 595 diff --git a/source/parts/detail/j/jd-customs-carbon-fiber-ring-40200---41302-in.json b/source/parts/detail/j/jd-customs-carbon-fiber-ring-40200---41302-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a6fbc88d30b5c7a666029279ac556c11615aae9 --- /dev/null +++ b/source/parts/detail/j/jd-customs-carbon-fiber-ring-40200---41302-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fdd26c74a9a24a57fbaebe3949597e2ecfaeb772c561a7257c58e69afac5d98 +size 519 diff --git a/source/parts/detail/j/jd-customs-conical-transition.json b/source/parts/detail/j/jd-customs-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..f6e87267adf7d730ab028f848840acfc0b5ba901 --- /dev/null +++ b/source/parts/detail/j/jd-customs-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3199c8b7121258159f8eebf0efce97cb8d72c04f83ca4327087fc401e2591cb +size 633 diff --git a/source/parts/detail/j/jeff--screw-eye-large.json b/source/parts/detail/j/jeff--screw-eye-large.json new file mode 100644 index 0000000000000000000000000000000000000000..0b0745b1c25e5df919c6b0e8c230a47bf93617a7 --- /dev/null +++ b/source/parts/detail/j/jeff--screw-eye-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70dee51f281cb012fefb19bf5f4a3506b473b438686b14d9e830e38ec305cb16 +size 331 diff --git a/source/parts/detail/j/jeff.json b/source/parts/detail/j/jeff.json new file mode 100644 index 0000000000000000000000000000000000000000..a2a2bfe7019bba0baaa3ad3e5897b8baa29a0da6 --- /dev/null +++ b/source/parts/detail/j/jeff.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee4ec9960d7ca0ed100fff25512c953b5a135c932121e390bc5cf2436080aa4 +size 245 diff --git a/source/parts/detail/j/jobsites-mylar-streamer-00020-in.json b/source/parts/detail/j/jobsites-mylar-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00874e0adf43a55671d12f0e44f52a9b42067050 --- /dev/null +++ b/source/parts/detail/j/jobsites-mylar-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627d56863c13df3c82c976c493dd737aa00afe32f52eab9fec141342f00015bf +size 403 diff --git a/source/parts/detail/j/jolly-logic-9135-altimetertwo.json b/source/parts/detail/j/jolly-logic-9135-altimetertwo.json new file mode 100644 index 0000000000000000000000000000000000000000..2d445fc5db965be7b8aa544c9ad89520772c2d6a --- /dev/null +++ b/source/parts/detail/j/jolly-logic-9135-altimetertwo.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396192717c4f6aa5e70f17fad0cf1b28dfa0bb2d4ec3f389b8726453d20e10fd +size 385 diff --git a/source/parts/detail/j/jolly-logic-altimeter-two-altimeter-two.json b/source/parts/detail/j/jolly-logic-altimeter-two-altimeter-two.json new file mode 100644 index 0000000000000000000000000000000000000000..2970300f94ff7a8d9867b1307599cfb7062cd883 --- /dev/null +++ b/source/parts/detail/j/jolly-logic-altimeter-two-altimeter-two.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ddaf6b1b585f6c1afd73fe5663c4fab6acd8d4b2da3ffa54e0abcbef7e0b80 +size 425 diff --git a/source/parts/detail/j/jolly-logic-altimeter-two.json b/source/parts/detail/j/jolly-logic-altimeter-two.json new file mode 100644 index 0000000000000000000000000000000000000000..97081c61be5528c584e5df1ad0d5497cdc8b5cd6 --- /dev/null +++ b/source/parts/detail/j/jolly-logic-altimeter-two.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b2ccae13db9c3b8b5e18e788ea4a8395b8a44888f8cf36b31c19c4778d0119 +size 349 diff --git a/source/parts/detail/j/jolly-logic-altimeterthree-altimeterthree.json b/source/parts/detail/j/jolly-logic-altimeterthree-altimeterthree.json new file mode 100644 index 0000000000000000000000000000000000000000..303cb33e9e9a1382cd6a86a7d0a1a895c39d38af --- /dev/null +++ b/source/parts/detail/j/jolly-logic-altimeterthree-altimeterthree.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4250c6974fc9fcf7f65fae65246608760f64c3f547208805022bf82d49e5ef02 +size 433 diff --git a/source/parts/detail/j/jolly-logic-jl-cr1-chute-release.json b/source/parts/detail/j/jolly-logic-jl-cr1-chute-release.json new file mode 100644 index 0000000000000000000000000000000000000000..77614279c9deea40e4b3017d5c5ef2e025f712be --- /dev/null +++ b/source/parts/detail/j/jolly-logic-jl-cr1-chute-release.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f665032b020ff3acb4047c7759c9341b8f9f97e8860b217294479750739cad2 +size 397 diff --git a/source/parts/detail/j/jolly-logic.json b/source/parts/detail/j/jolly-logic.json new file mode 100644 index 0000000000000000000000000000000000000000..428c7c85f1eca263a2841cf212a0cec67eb6afd0 --- /dev/null +++ b/source/parts/detail/j/jolly-logic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39e8e7ddb5ea756efff0dfffbdfdd3db7169830b711fca724fc665e22f67285 +size 278 diff --git a/source/parts/detail/j/jz-cardboard-ring-00000---15950-in.json b/source/parts/detail/j/jz-cardboard-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ba326adcb23f8bd5c02fe52ed0c33a3701bee0f --- /dev/null +++ b/source/parts/detail/j/jz-cardboard-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5276a6fd6f951e75da45901d62961f487120066171ce1d1cf74600468ba4143a +size 440 diff --git a/source/parts/detail/k/kraft-phenolic-ring-14961---15150-in.json b/source/parts/detail/k/kraft-phenolic-ring-14961---15150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eec6c9864d5622424fce112ea76b5684f285da8e --- /dev/null +++ b/source/parts/detail/k/kraft-phenolic-ring-14961---15150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:836c2cb137a8e1e4e7cb2d4f8909d3ece8f992dff7ff1b61f28a984f16fde18d +size 409 diff --git a/source/parts/detail/k/kraft-phenolic-ring-24360---25600-in.json b/source/parts/detail/k/kraft-phenolic-ring-24360---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..764196361e37ccd5db562aa9898021c482142047 --- /dev/null +++ b/source/parts/detail/k/kraft-phenolic-ring-24360---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:606b9b45484a0c9d8a30d10bb10c61dbde5fb1892c76259014bfb1d802c1e796 +size 409 diff --git a/source/parts/detail/k/kraft-phenolic-ring-37760---39000-in.json b/source/parts/detail/k/kraft-phenolic-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c090db04b590c09522c795e91897232b534759d6 --- /dev/null +++ b/source/parts/detail/k/kraft-phenolic-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0a8294d484c64123e2f716a8362e1935e45fb814ffabece2e6fa587fea6372 +size 409 diff --git a/source/parts/detail/l/lawrence-8-lead-8-birdshot.json b/source/parts/detail/l/lawrence-8-lead-8-birdshot.json new file mode 100644 index 0000000000000000000000000000000000000000..c6662924eedcbf9edfbe524919098bc66c9758d0 --- /dev/null +++ b/source/parts/detail/l/lawrence-8-lead-8-birdshot.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9115acceb310c2597ce957859b93be0bc727ca03b6851ea1b989b652031bef97 +size 377 diff --git a/source/parts/detail/l/lawrence.json b/source/parts/detail/l/lawrence.json new file mode 100644 index 0000000000000000000000000000000000000000..81b9e478047d784578686e7522fb132785657a1e --- /dev/null +++ b/source/parts/detail/l/lawrence.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03e62f186ea5619bc8b7336b3fefcc99da7407643db2f70311f0e58cc63686a +size 261 diff --git a/source/parts/detail/l/lead-weight.json b/source/parts/detail/l/lead-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..3a805d038a7ebdc56896b7da0cf0dedf9f557dab --- /dev/null +++ b/source/parts/detail/l/lead-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c0e78c7dbaa36df3a103b2cef46c06aa4328b5788d25e2a87f90b47558ea504 +size 273 diff --git a/source/parts/detail/l/loc--precision-paper-ring-09500---11450-in.json b/source/parts/detail/l/loc--precision-paper-ring-09500---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55522923a5e8a754a165b69778f7c756e9692b33 --- /dev/null +++ b/source/parts/detail/l/loc--precision-paper-ring-09500---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bfc038df8114fe51454ef2f08ac2136e36886241603b10663102a9efe323cd2 +size 432 diff --git a/source/parts/detail/l/loc--precision-paper-ring-13800---15250-in.json b/source/parts/detail/l/loc--precision-paper-ring-13800---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d608a37a157b5b9a4ca50ea691fafdb59cd07ac3 --- /dev/null +++ b/source/parts/detail/l/loc--precision-paper-ring-13800---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98595efab60cd541b06dc2ecef2aa45a4be1f2b3bdabe205ee243cf275b898a4 +size 436 diff --git a/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-00000---53800-in.json b/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-00000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b404d757444388aeac4dea6673d7463f76c57ebb --- /dev/null +++ b/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-00000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c1c53871a15f26414a210d3832e775495d70ad836d5d1bd51b781461ddb69bb +size 465 diff --git a/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-22600---53800-in.json b/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-22600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03a2dcf406dd03f33d2c9f2df3194b5ba167065c --- /dev/null +++ b/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-22600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f41f55d0aa7c9423079c318c73b05b713edc7268b6ae2825ff79684521c03b07 +size 465 diff --git a/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-31000---53800-in.json b/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-31000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6bb6165c9350d6edb6e86c1fa03292564dfe0c81 --- /dev/null +++ b/source/parts/detail/l/loc-538-14-aircraft-plywood-ring-31000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163bc6e6a938458dc42bec9210e69e9a271a883c965fb3a4731f9be22ca0a276 +size 465 diff --git a/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-05540---25900-in.json b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-05540---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..584b2b35ef369c916691b52bcfcfb92edbcb4e08 --- /dev/null +++ b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-05540---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb0e07a1a540cc2c735c5ab4e4fbe3970f4ff8a88a7c8f8281e7bfdbbfd0c7a +size 488 diff --git a/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-13800---25600-in.json b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-13800---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ad77de8e21927ca292e87c516715ff22f4af69d --- /dev/null +++ b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-13800---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e1999f72eb203b157473e6d73443cc33e0144dc5b033e282220f8d234dcf17 +size 488 diff --git a/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-16400---24900-in.json b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-16400---24900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c517ccc2eba1b3f6c492cc7ad70f0754b7e82cb --- /dev/null +++ b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-16400---24900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5e2030175608faf82248b51be37501ee1f00c41e9e1b302a18b69a753ad2dad +size 488 diff --git a/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-22200---25900-in.json b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-22200---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9128805ca02022318d5106affbfa44ad9d7978d --- /dev/null +++ b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-22200---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7086a2e4cdeb81fd6e4a58e93a60914691bf7f847f37bf6ab4b2ab45a5e9471b +size 488 diff --git a/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-22600---28750-in.json b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-22600---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..57474cca69727fcba3c7b8e8aeb340c37a2a19d8 --- /dev/null +++ b/source/parts/detail/l/locprecision-116-aircraft-plywood-ring-22600---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420b9d6f029f6020c57c9bdbe21ed2566b2549a16112bdd577be81b0c08ab5ab +size 540 diff --git a/source/parts/detail/l/locprecision-13-oz-ripstop-nylon-skyangle-streamer-00000-in.json b/source/parts/detail/l/locprecision-13-oz-ripstop-nylon-skyangle-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2e032395a2dba6b71c3ea27571efd1d3fefc43c --- /dev/null +++ b/source/parts/detail/l/locprecision-13-oz-ripstop-nylon-skyangle-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7e44ae6b98efa9e66f3dd723efd4c1daad0f8b80798989e6407feccfd8011e2 +size 496 diff --git a/source/parts/detail/l/locprecision-13-oz-ripstop-nylon-skyangle-streamer-00800-in.json b/source/parts/detail/l/locprecision-13-oz-ripstop-nylon-skyangle-streamer-00800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..99e6ebe6643bc08c132ce4c73ac8198f4a69b7b1 --- /dev/null +++ b/source/parts/detail/l/locprecision-13-oz-ripstop-nylon-skyangle-streamer-00800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a375b0ff4ef4dc20c8c30d4fccec3d83683ccb95aef2eed2999932aa8310cf58 +size 496 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---07500-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90a68ce3e92a27f860de74c3f009e6bfbdce7c0b --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5253c95f3f1bde4ee65b7ee18c3ee144ffc91b96f5c453ebf2ab5e100eea5530 +size 485 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---10000-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..71a9a7b3e366d4f6409ae1071c4eaccacc231393 --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c7510a5001ba327677c150ed5caca38acb7298feb056311647424725c8a5c2a +size 485 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11250-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..406c7ffd7edd5d969c6dd39b23c060e4054ccb25 --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b2e9c3f282ce78f58335956fbb6f35c92b87edaa93ff3afd63166e378dcd43 +size 485 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11420-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11420-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d805dcb73a4e66f698f842c61c1a86f6dc1d0d9b --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11420-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8908f55c9918ce8e0908e77b48673a634cec32b6b73415bd2ba3801a9fe305 +size 485 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11450-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..523c9192d119fcba8e24fa48417aa50040df1e90 --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94d49637f958706ad4c7fbfc49ce5f0c9ed6b6ea8fc54e5704f99df8c7c49e6e +size 485 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---15250-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fbf357a47e0639e956cf39a590d773445e1ef2ae --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:911acb87008d76e48f1e773b51c60ba548f80de104a9d05821eea3dc480e40d1 +size 485 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---17650-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---17650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0d56d40c672c55c7480262d6fdc61a7656464370 --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-00000---17650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca7e0913cd19f6c2ea6140450a200e625da9eb0836cb85ec9c9ec521fbc795e5 +size 485 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-10000---25902-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-10000---25902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a5add401dca215e3ee6e5e4d80207d843c09265d --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-10000---25902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b624ed5bc180f869817340b0cfd11840d6344be94286e22d28c818cca12bf16 +size 485 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-12100---39000-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a3d2bc98ff5cdbc8325b9d12e4460780f1087285 --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c2bbcc167bbfe9431efdfeab13acbada9a94ceaf892975ed2028754c6a9a066 +size 516 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-16500---39000-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-16500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a8b3978e785020bc52da249e9f10f1837368b8 --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-16500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63597ca739f2b170a55c2feaa3af4787027b15cb77d3abb3b4b8df9db8f0c28 +size 537 diff --git a/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-22640---53450-in.json b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-22640---53450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1a0fc7a1a2309765892bff465b0fbde0d262cfaa --- /dev/null +++ b/source/parts/detail/l/locprecision-14-aircraft-plywood-ring-22640---53450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c677efd7d88f0ef1d44d8fdd94452ae20d165d644192d4166defd919dc4938 +size 541 diff --git a/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-00000---09500-in.json b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78ccde14b3fa2faf7650a719d397b006041e2399 --- /dev/null +++ b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7ecba22055f0392375981c7e6472327b553cdd180ace522a4b2414b993b790 +size 485 diff --git a/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-10000---27500-in.json b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-10000---27500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf2b8d64dcbf0782309335aedd8c9b1130a35e47 --- /dev/null +++ b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-10000---27500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1c958b9e0190884eb1a99c04ac416797ac82ee90a9c2bd90f5b6c900ae9564f +size 485 diff --git a/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-11900---25800-in.json b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-11900---25800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..738db6370a9239e36fea2bfe8cd926fcb27119fe --- /dev/null +++ b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-11900---25800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d39e27a34b1f38aeda9a762df0cccd6cd038731af21f9998d8b903b28d42a9 +size 539 diff --git a/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---23800-in.json b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---23800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d02b7c965e8bad82f86c464e09a522ca2f0545de --- /dev/null +++ b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---23800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cde9c1a805df821116431af751266fc11c94940123b5d2433995b1bf196ae63 +size 485 diff --git a/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---25600-in.json b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4d8693ba9a709527d4519c72faaf158e44916830 --- /dev/null +++ b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef1c11641a519c025defd2cd4376651e5b3698cb250d08f87cec4c07c0265af7 +size 539 diff --git a/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---25650-in.json b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---25650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07961700b352eb874640b39c264b9cf1a2d045bb --- /dev/null +++ b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---25650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cab629c84df9c09c7b881832c32f34b074517045c5370719f1cbabdbec7b185 +size 490 diff --git a/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---38300-in.json b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---38300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b2ddba81d7fbd896c8c763310b32a6a4b1a10ed --- /dev/null +++ b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---38300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9be2e474c0a63122906df3da7370a69715f8ddee1a3dc43787cfcfa15d67ecc +size 485 diff --git a/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---50000-in.json b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4d04b509d0ee677ee230253631f1e1f3f26e5f5e --- /dev/null +++ b/source/parts/detail/l/locprecision-18-aircraft-plywood-ring-12100---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf159739c0f52748b3aab8ccc545cd3935526d4d1310759e324ca6ecfc1d2aa +size 537 diff --git a/source/parts/detail/l/locprecision-19-oz-ripstop-nylon-skyangle-streamer-00020-in.json b/source/parts/detail/l/locprecision-19-oz-ripstop-nylon-skyangle-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a91b5e4662a4cb396de43dd599b4130845460b68 --- /dev/null +++ b/source/parts/detail/l/locprecision-19-oz-ripstop-nylon-skyangle-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3faa64fb99b0dbc20fcfaffbb6d43c393e57da324add7f8a61eaa0b1556362d +size 521 diff --git a/source/parts/detail/l/locprecision-19-oz-ripstop-nylon-streamer-00040-in.json b/source/parts/detail/l/locprecision-19-oz-ripstop-nylon-streamer-00040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0419137523dfbd327e8708859beb307e8da8cb94 --- /dev/null +++ b/source/parts/detail/l/locprecision-19-oz-ripstop-nylon-streamer-00040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39f967d876bfd748c94c2afd06669e15389e5aed0694887ee63d2c6c3510e74 +size 481 diff --git a/source/parts/detail/l/locprecision-316-aircraft-plywood-ring-40000---58750-in.json b/source/parts/detail/l/locprecision-316-aircraft-plywood-ring-40000---58750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28039adc21be2aae43046d4cc58f1a3b26244de3 --- /dev/null +++ b/source/parts/detail/l/locprecision-316-aircraft-plywood-ring-40000---58750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd571995d1518d4ea144cb8dca09a487b776f5a260d556acac91bfcc3fd20087 +size 488 diff --git a/source/parts/detail/l/locprecision-6oz--2oz-fg--poster-board-ring-12100---15200-in.json b/source/parts/detail/l/locprecision-6oz--2oz-fg--poster-board-ring-12100---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2fd597a9e9a494a896e49d1eea28da6ca5878183 --- /dev/null +++ b/source/parts/detail/l/locprecision-6oz--2oz-fg--poster-board-ring-12100---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e5aaf09404e2a25ce18896a35700da54446619dda7f1459a43b1497cedc0c2b +size 560 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---11410-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---11410-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10ddaebb1c1fe19972160920760c0f560c6143ef --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---11410-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7186c42d5f6b51a54d79ab2f67625737fc1323a54973279cd7b0c3ed701c539 +size 495 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---12800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a498beb37b00361142701fa32673d3910963276c --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d1555d402a4ae6030584b603ac72f70fadd1af9dfcf4ea46865bc3b44d393f4 +size 495 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---15200-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a5eaff421aa2944778aa6feedd8f4ed7594ae57 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f74e3904e561bc78307c52dc9762dd6d4d0dd18ce58a9141be07be8002fdde +size 539 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---25600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..13a16b2d9c17357ebdb1d5e24965d3dfa93351ac --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd89f542ca979c9ca9e34cf85b10949b3ec36c688301c580bc03e7a0db28678e +size 539 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---29060-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---29060-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a291cad8cd3c305fa74cfa373bbe2dadfb262253 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---29060-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d7ae2c4b0d28780eca3afbf9ba57a4001647df0d127ffa147f88206dd4aec3f +size 539 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7cbcf6f9a9f8011e992f2693b3335a0dd954fcbb --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d50abc12489cf49926441450029b45d58aeaa2a9bc692905c4c204d5f35f471e +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b6602ac282c4253d254d2b282bc4ffa155d72a9 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71bb3f7f855d03035bae6d60a639556e6be8a18cc85da213ae8d4c4f5a25dfb9 +size 506 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---51560-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---51560-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b70c84b15f18a11ccb8f290e7cb8693f47ee05ae --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---51560-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95fe759268710500a2518e42013434b2204f73b31c0f1fc17f73815705a4440 +size 539 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dfa5326c48d5e2916ca505d5125115b657bf4e5b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb84835c3e1bda1c094429b2cbc2f5cdb0ccf85deecc7253f75a6a66d4514cef +size 462 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---74150-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---74150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..99a821292abd570cf6ed6b63f4d9468025612000 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---74150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d14be5ddf416aec83943058d8cf81f7fc1aa77d01337653f35f3c4380f1a9dc +size 495 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---75100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55877f31007d217370546b810ad1bda3dab038f3 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b140062fdaed28df9ebab421604aa25918e5c41501672b5fbed5ec9ff0341415 +size 539 diff --git a/source/parts/detail/locprecision-aircraft-plywood-birch-ring-00000---75150-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---75150-in.json similarity index 100% rename from source/parts/detail/locprecision-aircraft-plywood-birch-ring-00000---75150-in.json rename to source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-00000---75150-in.json diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-11800---15900-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-11800---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..107c9222f130980ed43a2b6914a1b80f34fa1709 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-11800---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca48c9a5bd482bd9524f0cb1cc568645624a6cf441484bfa2e71a05e46955aaf +size 495 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-12100---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbcc32bf915d398ea7253f9abf4f01145d6fb2da --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f99c7683c3ab13b6c6138804fb45329deaef59279fc7e1debd204f5427486d +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-12100---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4b34ff1b178bc1f49ffee29323712b3f5e93224a --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcb70ff11c6c38a8d176443ea7521e39c406c784639eed84f9cf0e718bba2f10 +size 511 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16350---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16350---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f5aa536120f2d8af15ad36b270a7790765db275 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16350---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7cadd97901bfd493f599cad03061d497e30d5ef7177154a73c62c447df924d6 +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---21400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fbba6c125777bc5ab60cfcd085c4521aa5c565b7 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:201ea5f50c45ce6ae7faf85f3fb1168edce6b3fc87fd71cf0eeb35e2794a8af4 +size 495 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---25600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..190b86fa770d7db231a6f91a84c85589284615cf --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cddda49a0fe338b0b52481050ad73d8a37408abde796b9e101c828b56741a252 +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---25900-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c863567b9bc00ff2287f74aff504966f210677e --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-16400---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59336ad9006d5687c67308403fa144cf316dddf37fb2690961455d08d4135715 +size 495 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-21600---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-21600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a4262c31ee54d96b2f77790c8f732e44ecb0ad8a --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-21600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a0ef6f7c392c48e1c1e1282dbdd0bdbc8d564318f679de8a851fc5a5d436bc +size 539 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bc8b538185e69c988d97471f49365dcbdfa24b3d --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d07365da682ffd5c25aa050f78c2fba051a85409fd1ef1c68da277cc0247a48 +size 547 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d16023565d479d0d1366ada2e7a8867d6982a939 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b75ee640e60476638706fdc4914df5e0a4fc2249f10230d8e60dd0cbb67019 +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---75100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b972b57f00cc8f70583270907e69e8aef468ffb4 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8864cb145471152694ea9c1fc5a08d13e57572621c435b64e255449205a0f620 +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---75150-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a848176b392a87107315a372a043716269624fb0 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22600---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cdb79a5a813200ddad941d5f17099883d822e531f52e1acdf90816ee4143c91 +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22640---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22640---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..19147d3042b5b0138d565795343a44256e963f4f --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-22640---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73654045a35094aca7924e455767b3a5bf63188d5ffb645fed22e717232dd9fd +size 495 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31300---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31300---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..650793ac43137eca7eac8a7bf3c53c89b5afd966 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31300---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5465477b25c2b63f1977081b3a9280fd287d8cd6601067bc7e14abb5b55ca0d1 +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31800---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31800---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0d752820de60f7ed550a581d600d662b09ff6afe --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31800---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d857eb1ef88fd33714fb0b15b78baa8d3aa75b5677b9e511de7c22ac08b030d0 +size 484 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31800---75100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31800---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c1ddaec38f52273d259f3cb68a09e1efc11c147 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-31800---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01991159f727d7b9ad6ce96be2fd860a4e13866c40badf8f01f2c5048f10767 +size 484 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-40000---58120-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-40000---58120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c5dfa0cca64141f08d0581fa4fa98f17f89dcc9 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-40000---58120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a059a45e9de6f22a50f7061dd5aa34049adbc089779270059652783f51d3644 +size 495 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-40780---75150-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-40780---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3e2c07582cf3abf7dfd162489e280dba8d7c521 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-birch-ring-40780---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c624be04700f808ce9d473c60dcdf6b0f84950c860207f3231f3a26cdaeb16f +size 547 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---00000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..158bb5569e1d88176643280c580d20b53d7d22b6 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a42396801ec2712c0035082688cb4ead76f083732072d2f1dc665206fa3eb1 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---08850-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---08850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6fea5fd0991d4b1177a9afa6224fc1cec639ba3d --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---08850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65775137d6f065cdb0572d1667076273cb52ececda83fe14dff1a88203c50945 +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---15250-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9c2028854e672a9244a742d51a772dfd3812331 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fabadaa1fba59cc604d5703a35447e28e1d33fa6c6293586db2c1908be5e4674 +size 458 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---15400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---15400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1189f77be71989e71c7f7e7e04a412e5af45c548 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---15400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f3ff4ae08140ca7fb191c110de2cf18e550d8527440f17451152306dac03eb +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---20700-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---20700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e2f433f4abdc18c88b771a713b0b525cdc1f6f36 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---20700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279b102f004a82a6b093a516b66f91ad07da9ebed970b8a7f28f438b03ceffc3 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---23500-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---23500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86be081c9a7e43a5d66a2ce03dc9a5fffdec2854 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---23500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b68b1df1bcaa2a68bd1f7186b5877ffef00c5a6e7942d1197c47fd7872ab366c +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---24900-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---24900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6051c75caee8403da6f3ffad0b0a426f06cdd880 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---24900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdacb0b219a902e9b129e6cdd3dcce4b2e82a560af31910425d7733f64346b6b +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---25600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03a3316d859df9650636c5c090328d80fb91d72b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e2a95620b8d20a57c00ea3222dfa354bde4f1471c6df3229c0bd849b5bacf5 +size 458 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ebf5ec659fcaa2f15420b80d15ffb6f044c6c49 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e2a37207d3c5b127a74be23a979e4375e6a3666f6a53d585e1391b9acb91a07 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38299-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38299-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66369afe5395333180f11e8898a123a6c8c39dec --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38299-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866e8daa87618c31eae87f7b85832530a4c740aae7b757aac99f9e9f22057f6a +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38300-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1fb7a28e54f93927a420b7c67b559ae6d48f516 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c207a73d246a9409a77b297cc41c04ee20c31ca065c93477e57d8bd7757f36e0 +size 525 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38750-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..51bb705014c3f1a710f86af764e388f7d9ca00cf --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d27fe79d92e2576d59ef56e8a41fafaab4da141c493441af4fbad4a4b5f989 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..47ccc8f9354e0d1be36c4a14fa5596aebdee02dd --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0134d205f93096de0c49b1dbc94bc6f61f666068e3bc8ce123597d72d3703d7 +size 538 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---49000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---49000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f4ce846acf8fa9f760b61a6cc8f2506ef6ce0a8f --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---49000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584c2a955293ce088a894ebc727692c1ad9267af4464bb8649fe267f4ead114c +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---51250-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---51250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe3410fa4be95e0171f97da229074bf0c1b164b1 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---51250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94649ebddb5f66b6f8a094bf0b44527a073f87171155715f576a03e573228d8f +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---51902-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---51902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f95db31da3ed8a47f14d6f68e08429be539c84e --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---51902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9068bca37c3674b19dbfba3411e6730ef89c87109a37427fe835057951a2b895 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---52598-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---52598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec3f9a72938857eaba88739c35a784ae93d95cac --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---52598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00723012c2ce954c4eabe919bfd211d25645906793cfc217bf280f46be5e3b11 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---52600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---52600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1332d257c11a5adf70483208ee54575638230e55 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---52600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d519fa7269d160ba31ceccc6c9581c30e24d5991738b0e656437b5c021164046 +size 462 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---56875-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---56875-in.json new file mode 100644 index 0000000000000000000000000000000000000000..627d02fe783ba39e9eb30e9c2989da078f7d28d3 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---56875-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a78f35717c31aec202727f752d43147abc1d57efaae1bc4eecd9a93d2c9707f +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---68000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---68000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed71c92d12a653ccdb04a7394c5c32eea269eb29 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---68000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b69df2810970df0125c3def47285b5b14a9c7fd813915210d0fb3728c17f711 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---73900-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---73900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5393107be866ff8525e8725225e0fa58e641c6e5 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---73900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:916992518f4c7b6dece5811e23bc3f42760e28f02eea9a8b4e53f7d604404062 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---74150-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---74150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b2ce3766ae3a0bc6711dd00742adea03541faac --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---74150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc60ecb669f87f2b7597a86ca312165154043687f5195b0d0cfd01d367be5e55 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---75000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---75000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a76c6d9c4b462eb1a946bc2e756a17ef6210c378 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---75000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15545ca67664560b217575348b5dbe882171f18013d5de7ba47c29f5da7e3aac +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---80000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e211b42272ccab8d84423d4be7a8e77ffc69bb26 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e8b95ec4a6bcc36960355a4afd95e48507af42f509a7656958db0422cd4634 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---97400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---97400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db15144bea0a8138f549aad502fd3aa3ba15d023 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-00000---97400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5f2113b16b6e8a17c18b35a3e7be3f0ade7bb6e3bcc1c5c4b1a6a100f9a3eb0 +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-01680---28920-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-01680---28920-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f43529e132c8d13ebff8225a4d9c078687d9abd --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-01680---28920-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff0583e5b57ee1ab435a06e42be4428f7b4ceedda0b958393b79f49990760cd7 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-02500---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-02500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae8c51f9d01576fac523e430701dd37d86de849b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-02500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c107a9140fe16f761b4fc13e146d366f251ad71fa95883d85fa61f05f973d25 +size 533 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-05000---74100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-05000---74100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c72bbfaa257990a3c8ccfe4d69651eb9061bc917 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-05000---74100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ffdf0bb6d91d29d62e2447e93c20b27f0f07e2012c8314c07a3a55ddac9fb3 +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-09760---21400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-09760---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8756bc5e111533108a6a36b4e7c3d085dd1b8c4b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-09760---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b232273d9f8580deaa5f197019ac56ded934f31d41fa81937c37a0deaa38ab +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-09760---25880-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2140819da77b41e8107737f856802d8f7e49ab05 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be475397b191e510b455e9963893a126b2cd6c26706812e008f0526c0b445183 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---15250-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..371cae7fc0408184810d264f1c0f2076acbbd92b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef53b4bb82ea386813c54ca8813567b8e6c49ffb0cbcba033529eef78d8e241c +size 548 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---21417-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---21417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3cc9853740ee4ce579a8cbc290888cbb1c4bc7a5 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---21417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb099ee5b8f1ce93bb20e43c6a9358dd0301ec512fc5e2b6dd2860878981e8f4 +size 548 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---25600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..88c62dee13116f5f4c36601f0a30d97aae277462 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-10000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b017c25e1a6ac7bb1fc468657fd4318998d72df0ab833a5f6e13cb01baf68625 +size 553 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-11417---21400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-11417---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e3f3a900fc56fb52d5f417402cd4b0897365e9c --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-11417---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:113a416b4e084c03afba4caccdc7472e6cc5511fc1edd76cee4791edfd59bc76 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-11811---14500-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-11811---14500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6279e4d6c718348ed9f4a8dcb91df2a7ad5c69d --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-11811---14500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd4e64e5c561b441db6586b313f58025b3db42de608ad6a69fc279c536fc122c +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---25598-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---25598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94cb1e77cb80f609bc4ae6bba6834a112fa36809 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---25598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04541e61038bbe3e4c91aaabc24e8b0a9e9705d762ded56570c06bf84e3a1928 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---25600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d905a386b26211ca01447464bc844dd73664162 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1ead2388fb0a76ecddd48c807c299da497c0baed444a59744f38438d67e672 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---58750-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---58750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62cc4d15bd01143d580ba5f96158c6637f93b1cb --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---58750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:430767150e1ec2c2f3155f7ffbc366250af095621791eae2b1b64f97f6875c1a +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---76250-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---76250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9ccf023b0337d851c7975351ef6c99421654cab3 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12098---76250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25928e2f2b993131ea465d05d82095b48348ac2d7fed61e6368245e4134722a7 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15200-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a923e41f008aebeff5a913d0e4e5892df61740a --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09368bc11c8e99e7d6db3f2470ec63b00bc5f783fcc4742619ca8b105b10bd0b +size 548 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15250-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7b4b1071a83785a628c3000609f0831e6132f6a --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6bedd17d6a5c688665c9d365d77b24b508863fabde31f9f854a3db2baaf724 +size 545 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15900-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9ad6bd96039770ee2f47ebbd2a1696e2fe4c02d4 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02fef614baacc153d4b5dfc8ca60a69e0382a2ba91670e39f498e0d9055ae73a +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---21400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52aa4362cf7380e6d201b745a3f1830311294a6c --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61871a29a9cb7a543cedf2553068a2c2403634ec0d462f57e1e2a255d91db038 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---25600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0306d463c799bef3336d9c04e91eed8b618ad89 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a711256b7341d799e94a397e73281ae562c1bc2f0685a3c3ffe796eecb3293c8 +size 548 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---29300-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..91192ab48ee703ffe84b12489815df312f9ce6af --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:221708291c6310825a21f74d5840356995019afb95f00940ad087666fab9967b +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1725c2b7b8625b2de6aa57604036c9c2faeae0b5 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa92bdf382f0774a69c157c70f597677c32eae045772268e743ca5fac48106cf +size 456 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..265777438b928e02a65089b3faba1ae6218d0cd9 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c471a6bc23c471ee53fc5250afbeae95ce9604da8be3338d3d6246d78f6e2d7 +size 488 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12200---18000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12200---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f22125fe352cfea67bb41e307f5ed3b9a4458232 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12200---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b862d704477283c8e70a6dc7aebe8f30f5eae743709a0de7dbfdb7546683ebd7 +size 548 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12650---25500-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12650---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b036eb204a6be8a80e8a559c550b414b2a263d64 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12650---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519d758f62df45ac88c84b73f1e75160f76cafcad5d224cc1b97670f8912313d +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12690---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12690---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d779903541cf74800977455806ae0d7a0c900489 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12690---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d27550889d3550ae173c443b72dca1bc3391b3abdda988c4a9807083a22d535 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12700---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12700---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50d7c5af32400a0bf488d067c031ce8ac04ae884 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-12700---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637c01f1e626cb91308eededf5616f9536d0b41de51f7abe09a93d4911872e00 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15200---20000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15200---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70f66bfcc09b332f39a643fa22d31c0c60a1d5db --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15200---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2cfc768b291caf37229147f1236d36a2a4f1b668e8e2dfe84edb80dc6895b37 +size 545 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15200---22600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15200---22600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dacc51fe679382a8ea1ac2b5baeff39edcfd7f34 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15200---22600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea7583873c003c83eb952d702147e27ab93c0f918d48591182b6bb076beae068 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15250---38300-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15250---38300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d00ab6223ac7758c538ea5b664084114e48ca13b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15250---38300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1aac480d17269785d189b5836f5921d71665c4067fe0b8631e1de15e5f235fd +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15551---21400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15551---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a781b47179baadbda5240d2a718c99c09cdbc467 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-15551---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6578f0072815087237b810291c595910713031904d5ebe255d24019db051816 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16300---29900-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16300---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4ade9d020ccc681b54e7bab312dd02172b0fb04 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16300---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e84cea5db9171f88f48c076cdafe072e39ff239550a8f4bb10aaf06e2ba6a6 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---22000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---22000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb0bb1d0c787cf9027510468bff7736d66a96a44 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---22000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8726d80345798f7a1f58596744004a1245bcd0f0e6669aebb71b3c041e2d9da0 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---25591-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---25591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b40ab0e1584d1f321c29e777b1e5c230c3dd052 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---25591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba7ae55097e74cfb82b026a8bdf6dbc4a4550cc813ec9b0ce98c69b4966b06b7 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---25750-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---25750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..12be751cfc2a2f3c6688d27d5949b7accfe83bdd --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16339---25750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa17c3fb75dcfff4af57270bdf095cf0435ffee95841c0cad3d72c860329119e +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---21400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da9df606ed7341591f987ac0871cbe93ade71a6d --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811171100d2e7fc6969c51081dc31fe3fa30c8a5967510fc8925556cf2223a14 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..611694d951fc4a4657a676231fcda36a77e9a426 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda3ef4a063c13524eb29e58e1722f69f3f48e2871cee3be556a6fb9c56b87bd +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6370284923da83dfa2cc53831311b6eaafa9fc6c --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0201e369900ac2a473a0917c25f20feb73c8d046cb8dc74b1b2fd167bfed1f32 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f74548866e84b1b0650cf5cb8a73167b04f1ae8e --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16350---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1ec783fbf3967af8f701ba94f3693570327dd0e3d8afaa99fb84921c0bf84f +size 548 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---21400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b0dc3df70dd5f41dabe0a2e437e2017d05e22b4b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a1246199af98c467dc34c41bac73165fd93c2c4cfa9aa4588b280c8a5143950 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---24900-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---24900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ea4e38abfa837995a15345878aaed6660089ba5 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---24900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc113aa9d32947426f95b1483a5a449a0be2ac01575bc0b75243e9fec3958a74 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b67a690b8efb2dca95d867a2b5432fac50fcac2 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eca9119bd66b51c038679f9b47ab1b7d3a8bfed584e130e5c40eabcbcaa976e +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---35000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70dc41831fc7e63170b21fec57d1233bced9a5ba --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b14a4f835033a01aba804e0af04d6fdad9be7301c2160eaf00aa9d1b37de23fa +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0291526d673a7d080d5127d28ccc940900600318 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1162b20f7b6be1cc98cb1d4ae08b34d5aa20186a8fcb606e257836c2acba44e8 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..92af0b28f155553303c248352ab607a35ac2bcc6 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16400---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd77ac77731319dfc31a54cbe275fc36fc0ccda006ee3471335db7b7a06d9d4 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16402---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16402---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75508f7f9c29004a9da0a3d7434d622e4ff553e2 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16402---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23274c63a17f18597e1adce8f3225c9c32b045ad23a8634133a5e6e6087bfea8 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16490---21400-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16490---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d75e62dddbb810d6af7696dc6ea52e8cb32647f3 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16490---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8900430417dd5edf7d44dec6747cd8d42699792c00847240411d2bf1a54bcc2 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16490---25500-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16490---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..158b833fb8821dd859c9e807873a4e90207c02a2 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16490---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75a67dad93016452d53d8baed85b2373e2833eabd73e2636c2c6776d48a879e5 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16500---29800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16500---29800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39222ae3ad7c987ca5bd9d699b6dff793088c430 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16500---29800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:108e7146dd580dbc6370eb3c6504f04f5c22bbacfd5fbb2df4d67a4f4fb3f6a7 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16535---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16535---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9c25eb5e696b025f90c77571e9128a4e5dbe4cd --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-16535---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8595ab743a5078ac41a00a7e5d1b1eb0d7f15cd18d5411ebd37e5f85dc18660 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22307---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22307---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..820a80cc00f92d97106bcbe8e1daedc6ee785e8d --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22307---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878c0c0f6b22004f797ba54deac870eabafb2107b064ac547477f74f6ca033d6 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22598---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22598---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53d4b79ecf2157d1bad3bda78e42377b5dcbd08e --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22598---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8995bb379b375182be9f77a1be6b87d51abe3218799e027ca685f751e32e40a5 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22598---75098-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22598---75098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0454876c79895f6dbe1d1dcc6c2171e0135a16ae --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22598---75098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b6a4750a6aa2e116c9043c58b542236e2a30e3e80342f6679ebde3507f8bcc +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---25197-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---25197-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09fef9f6357a47e15680195dfd0ee554d16f629b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---25197-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:295a85f0ffa0a6e289bac2edb465728bfbc538ce88d34e73a994406d7b185aca +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86d21da8480e4db39bdeb6aba6820f50900131ab --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7d8baa7a2044b67d4b7c6ae6b66f746f75b2d5038967f9b64aacbe12939eced +size 548 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---38300-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---38300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d69a939b1b049baf37760a387bc6dc66a05898e --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---38300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f097917d5b22bdc606d9f78efc06e19d49c865d8028204b108a89a855ba71213 +size 538 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc9a3e4f3e0344ddd0fb04c5060ec9b7b77bdd9b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd894a21aeb1cedbf8cb8407bc4d46e620148bf353b1fc28774bb281ae4ecf2c +size 546 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---39100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..92e59f505a21ed4fb16797602eac2e7522aed87d --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1225e52393e33185cbdfa903e1573e47f1f2f0bd53e41c0c1f5c79d9961cc33a +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---49000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---49000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11ab20930524dd048e7252cb45ff96e99bc1c7f2 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---49000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eac9ad9201677a19385f4a5b7e4641c790ce793a739b557a6e1e142f0dd7f51 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---51250-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---51250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da5f3f04240817ff338aded109dce45db12a513f --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---51250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d5358cb6e189f52251787e165e44637d53d3a97de19d181fd4a87d8f7472d46 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53fbbeb5e4c94d18f189337292084172bb013d15 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:979b2a340dcfa8d40fc8ca54f870b874df2d290a5335b2505a4d3d79cd8f4bee +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---75100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8ed80e2491ded2fdd9dcb97c27543855edc9b4c --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22600---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e103ebd3a1511b9c59154924f28d70181aaa2ad5f44dfe05e64542559eb3fa +size 535 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22760---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22760---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..191ea3e0e29de1aae71a327a1799e673567d9045 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22760---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ef71816a928addc8c284a56a94119e6bb6c913e7e3545b0e7ff0d96b486162 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22770---30000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22770---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a6d0bf02fb364040429b814fd0843b88a335e92 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22770---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4b824db05855a4020c046aa8aaf2292a2d1d551bc28e65c2cf86d812366ca3 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22799---51902-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22799---51902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..761fa729de882daa1218ea57be10a1685d9d2e68 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-22799---51902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbede47ae4b462e983feabf4323f4b3a62d2ac894a97753ba8ff27d4875789c +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---35000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c6437f3529ef5b347884f887eba2ed0d3c64d86 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd47d6cbba0974f35fb37e5eab0a97aa65b1275aea041dbdf5660b52f003eb7a +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..36c2ec7e4ca8024e106b791a6b414a58e6ed6449 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98999505b43430f665f779dd9edde5e6ea606a70ddc239bed3fa8ea859319970 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---59000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---59000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a7cf5dea8d10f772b72342fce176585dd9c44eac --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-25600---59000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927620153eef46500bf40f5220f02e845154f29565b4382023020d06ea319432 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-30000---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-30000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0da82abdd14e31a812d657126e350205908067b7 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-30000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35304624dc5520922ee34be444c2f47127f120275bc5ae26b49609f016962f5 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31000---37500-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31000---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8c5c8df39008e6e46803c6ffbfe14b2bdac90ba --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31000---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74f748dbbe379e1a69d9b881a2f5c767a1780cdf341e7a8aa5cb591165d53b3 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31000---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4fa478c12553c665e2a0f70aba4d18cfdb49674 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87898d3ee5505f096d8f6681e2c7b9af4d340aa9da6db5446dc4a7e3fe1c78ef +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31300---60100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31300---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..248734de109ddd629d6da53b0c933c229518b1f3 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31300---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af268b5ebb00fe895917b095851e3204e65b0a348a4e24ad18f177af8fd8b92d +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31799---53799-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31799---53799-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c016e9231864438943d24dafc42e02dd484fba09 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31799---53799-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5780c794f205609d2d6957fb7e0c51f236d6dbc4d548451e946a18814f99895f +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---39000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10b491e989607055032fff7856a55f5d0b4c8b50 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36bfc3dc4b580650da2fd1ff645d718bc2b0ae0f3e2ced234987935a9751147 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---74200-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---74200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..653b7ea91a862aaed282a3f8fc2966d04ac8da71 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---74200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ccf83938b7e7f0f881e91ec6b0bb365d8fb2e7edab9182a6ca2308d514b616 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---75100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c3e5d72098e1c9a54aefdf7648279f8789f84857 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-31800---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fe98248d29000a3887fdf5cfd5d82e895059ba47b5d085deb8ca43c153abdfa +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-39000---70000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-39000---70000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03997cce5436596c2c21d7bf20f7fbe5ab54f0fd --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-39000---70000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7609fbb48bfdfef76f24a7cb06d7434650366bfbdb84a8fb7b948678f723215 +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-39370---97600-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-39370---97600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..abe510194cfc828b5b931539e47457101aa382f8 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-39370---97600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8f0f8a00ef0538afb61b4717d9e24f2d124743b57cb25da2c1f8ea5f4ff2bdc +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40000---170000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40000---170000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d953d16430762be4b25d4b9dce42c3827920376 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40000---170000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d70eb63e6ee06a151561a26819f1ed412b7ea70beba91decaa6d277dc5283f8 +size 549 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40000---190000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40000---190000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fee8a1fbec26abe051fc3b2543e53392da015f8b --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40000---190000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b503b86af2fc16f601df03d2312f21848be3755e0de736742a4228fd8d8a240c +size 545 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40240---75120-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40240---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3adaaddab884d060b802efa075542bc10b23473 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40240---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ced1e19ba34d6fcc2419598fe8f2843558e48dac09531141af62d2240df833 +size 543 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---50000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..faee58a5fe3e83e127da5b1c0c3836f1ccb9f69a --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba325d5c7c647c9e3a4b754fb9e7ad7f12268400c6ade1cd84dbb9355d3dbc4e +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---53800-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b155a13ef8f89aafb823bb2adb9435fea32070a --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c6d94d9e671aac2bd627c7f6bc1943e37cc7d0fa604ffdfddfecdabedba9c3 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---55000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---55000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..226a78b5c0a5e45cf93d057a788d3efe21368570 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---55000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b111b03ba39ef3f93536163a2dabed58773fb787e060a8e64314a34a7921e5e0 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75000-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26aa27eaf97aabd9202b7dbbd27bbea937be6ff8 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c91f7796f16c2e31e0693ea84cfee1266848ed574f158129526b1b9afebec9d +size 489 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f06af46c0bc0afa4df9dfa1ce70ec001c141d0f --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97f1b2a2ab9446564349f34eec4085995bcc882017adce1b4e781fb4d4e8274a +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75118-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75118-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d104fc021167df37ce70f5f00dd21454f6ccda1d --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-40800---75118-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b565f637d70aeb6a967c1cc4bf80fac5627ed2510167bf2af59973109c5fd9 +size 541 diff --git a/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-60000---75100-in.json b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-60000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77e4d4382381ac6c3ad2964fba2d6d5b56abc2b0 --- /dev/null +++ b/source/parts/detail/l/locprecision-aircraft-plywood-loc-ring-60000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e336c967773754d8c32f07e403710298cea3f979ad467b0c2b29a530a0d9469 +size 541 diff --git a/source/parts/detail/l/locprecision-balsa-ring-00000---51902-in.json b/source/parts/detail/l/locprecision-balsa-ring-00000---51902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a7ae6ee2a7deff9c2e22030b4e71d895f33e50f7 --- /dev/null +++ b/source/parts/detail/l/locprecision-balsa-ring-00000---51902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9719f8375f35ac5790a737d54fbf2393240ab032cf8a72a0f4d62ed75f9c7c +size 486 diff --git a/source/parts/detail/l/locprecision-balsa-ring-09760---58800-in.json b/source/parts/detail/l/locprecision-balsa-ring-09760---58800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70786d5de5b00d5e8655982f002b55d004b52a15 --- /dev/null +++ b/source/parts/detail/l/locprecision-balsa-ring-09760---58800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599e9e79f66f78a075adf691846aea726c6b728113f0f2fee8a83d15c1721c74 +size 442 diff --git a/source/parts/detail/l/locprecision-balsa-ring-11800---21800-in.json b/source/parts/detail/l/locprecision-balsa-ring-11800---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e80a2cda3a5dbdcedf3465f42fc7e28663b2ea84 --- /dev/null +++ b/source/parts/detail/l/locprecision-balsa-ring-11800---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050ad6fa7f3581ccec0d7d1c43d6e3c633b3b3f7842c9121ba2c92f8e82f88a2 +size 442 diff --git a/source/parts/detail/l/locprecision-balsa-ring-22200---58800-in.json b/source/parts/detail/l/locprecision-balsa-ring-22200---58800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1079eb7a4491aa2d2355494e9189e4ced77ae06 --- /dev/null +++ b/source/parts/detail/l/locprecision-balsa-ring-22200---58800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb5425870d566d66a390de05144b3f1942b0afe5e105c51b0a2a2d29ae873924 +size 442 diff --git a/source/parts/detail/l/locprecision-balsa-ring-22200---59800-in.json b/source/parts/detail/l/locprecision-balsa-ring-22200---59800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..220d948576be6abd1d7722041cb62a30f439371e --- /dev/null +++ b/source/parts/detail/l/locprecision-balsa-ring-22200---59800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba5affcdafa4c570c12ffbf320c0fa1d5dcc4c3306cfbfaed51dbf3e68990d9b +size 442 diff --git a/source/parts/detail/l/locprecision-balsa-ring-40000---79850-in.json b/source/parts/detail/l/locprecision-balsa-ring-40000---79850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e3884a4694f2c69c20758bf4a1cce988fcc7b383 --- /dev/null +++ b/source/parts/detail/l/locprecision-balsa-ring-40000---79850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6831c08b58c2c0cf6bbbc6c15a6a9e926c5cdb8a3e433cfcc0ec728816372786 +size 442 diff --git a/source/parts/detail/l/locprecision-basswood-ring-09760---25900-in.json b/source/parts/detail/l/locprecision-basswood-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8797a972efde0b0d970ba736c5a4f59c1eff6066 --- /dev/null +++ b/source/parts/detail/l/locprecision-basswood-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:088ca71b387b3ee9811832beaaa6168f3e9e3746769b6ffd0ceb4b5655ae0610 +size 505 diff --git a/source/parts/detail/l/locprecision-birch-ring-00000---24900-in.json b/source/parts/detail/l/locprecision-birch-ring-00000---24900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29182ddb132587786e1fcee7e56c83ab5db1f682 --- /dev/null +++ b/source/parts/detail/l/locprecision-birch-ring-00000---24900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca9f8370df8e5bc992700e076660ebbc9ae64ec12f00ba3664c9e1c861d8566 +size 457 diff --git a/source/parts/detail/l/locprecision-birch-ring-00000---25197-in.json b/source/parts/detail/l/locprecision-birch-ring-00000---25197-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65cc288eba65189d42faae8491e19c54b7b71ffb --- /dev/null +++ b/source/parts/detail/l/locprecision-birch-ring-00000---25197-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d2d756e9374544fcb3658aad8e8429aaeb7b5b13e911a7d47a7d86cb5d18623 +size 486 diff --git a/source/parts/detail/l/locprecision-birch-ring-12100---25380-in.json b/source/parts/detail/l/locprecision-birch-ring-12100---25380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93b942d529ed6d29e0f96c3e2eabf303ded51270 --- /dev/null +++ b/source/parts/detail/l/locprecision-birch-ring-12100---25380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed2bdc05483128426bd6afdbcd33b791ad2bd7b1cf1082d1767d21944423e4ff +size 460 diff --git a/source/parts/detail/l/locprecision-birch-ring-15200---56875-in.json b/source/parts/detail/l/locprecision-birch-ring-15200---56875-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0aecb025ab1b890ed41d23dcccd9d528fc97a8b1 --- /dev/null +++ b/source/parts/detail/l/locprecision-birch-ring-15200---56875-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f3898f615f75a1e7415d0dcf061e4d0bcdfb7fb121c77c0b3ad6b8579a4de5 +size 496 diff --git a/source/parts/detail/l/locprecision-birch-ring-25600---30000-in.json b/source/parts/detail/l/locprecision-birch-ring-25600---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bbb5648ac16a036161a6b673bbe4fd59af226a6c --- /dev/null +++ b/source/parts/detail/l/locprecision-birch-ring-25600---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91ed799e2c0037062d8ad51f32aee2a818e448fd48b2a6adb8233f2d323be6a7 +size 496 diff --git a/source/parts/detail/l/locprecision-carbon-fiber-ring-00000---15236-in.json b/source/parts/detail/l/locprecision-carbon-fiber-ring-00000---15236-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee9a471304cefd66ba7d7785ec1148bddb06786c --- /dev/null +++ b/source/parts/detail/l/locprecision-carbon-fiber-ring-00000---15236-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa794d33ef7ed06025fe3ea1bd0a6330d9a129877a5ad13bb0a25f39ba5cce3a +size 507 diff --git a/source/parts/detail/l/locprecision-carbon-fiber-ring-14500---15200-in.json b/source/parts/detail/l/locprecision-carbon-fiber-ring-14500---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c7b0cffa15ead8d2f2156d9cf5cfe4fef7ebe35 --- /dev/null +++ b/source/parts/detail/l/locprecision-carbon-fiber-ring-14500---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d274630441373c6ca45572d5ccbaebe78226d85b1d1918f11b61b4c5f1f09479 +size 499 diff --git a/source/parts/detail/l/locprecision-carbon-fiber-ring-20300---21400-in.json b/source/parts/detail/l/locprecision-carbon-fiber-ring-20300---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2b875f93612099abcdf2571981b9a99a8ab719b --- /dev/null +++ b/source/parts/detail/l/locprecision-carbon-fiber-ring-20300---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bf75a26216064668a89eb5054fd5651c705e012b5fae6956f9bd63d2cd64327 +size 499 diff --git a/source/parts/detail/l/locprecision-carbon-fiber-ring-28800---30000-in.json b/source/parts/detail/l/locprecision-carbon-fiber-ring-28800---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06ba454b964efb95b2a2f48966eb289f80670ef3 --- /dev/null +++ b/source/parts/detail/l/locprecision-carbon-fiber-ring-28800---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7daf2b56c6be3a4aef59566468474d5cfea214fa02dedf63e06beb5b5326246 +size 463 diff --git a/source/parts/detail/l/locprecision-carbon-fiber-ring-40799---238583-in.json b/source/parts/detail/l/locprecision-carbon-fiber-ring-40799---238583-in.json new file mode 100644 index 0000000000000000000000000000000000000000..17b15f3126ceefaacd8d62746c93aa239d9c9a11 --- /dev/null +++ b/source/parts/detail/l/locprecision-carbon-fiber-ring-40799---238583-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb2ae9a9e0c21359fde8cdfbab3ee85e009cd31722f616dd43b3974b5f7e19b +size 467 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-00000---25900-in.json b/source/parts/detail/l/locprecision-cardboard-ring-00000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ea020c8e7312f358de3002794d7ff5df3f48e8e --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-00000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8b6377a2d4083a01e2473d54db416a13c5f3cb9457f90cf968de5e0a5ae116 +size 454 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-00630---21800-in.json b/source/parts/detail/l/locprecision-cardboard-ring-00630---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..322c5059fdb90abfe2940758628c14bf15da06dc --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-00630---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b894532601a35ffe3dab6926d3a8cf67e6e491677e6142dc8a50a1592e8649 +size 498 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-05441---09500-in.json b/source/parts/detail/l/locprecision-cardboard-ring-05441---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76f5a6c8310c2703d796682f8938d582ed505618 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-05441---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:effb5e720d79f2918134d8a167f0f0ea7f32d375824282d150729f6c429f7025 +size 454 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-07283---13000-in.json b/source/parts/detail/l/locprecision-cardboard-ring-07283---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..903ed85dac02890e6a571eb8b37a8e35237aa901 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-07283---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab3b6ed3c8f9cbe5d1bf725cd46ea8019c75e7e6c5b21db9f5b6a1cd4d9e1fff +size 454 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-09760---15900-in.json b/source/parts/detail/l/locprecision-cardboard-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8bcef5df581588505d15e50f23bb1687399e1bc0 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aecd14ddb64d52c172963f28e07884245760ee77fdedcc0f3cd65f4341ecb1a +size 454 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-09760---15902-in.json b/source/parts/detail/l/locprecision-cardboard-ring-09760---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d87024e0106337c85a0b98b4eba8ef5c89e31674 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-09760---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff8621e7e25bc65e2e364fa2391d7004c6d0aaa6a230ab4ddfa789340728a5a8 +size 454 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-10000---21250-in.json b/source/parts/detail/l/locprecision-cardboard-ring-10000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad26736a289b173358132ff99792033d65f8beb4 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-10000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f0e8ac86fb492d498bf497eb2250d54f99b1c8bfdc47817cb38f037ca6d4be +size 508 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-12100---15250-in.json b/source/parts/detail/l/locprecision-cardboard-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9f2bcbf876c3a753737a20b6a9bc284f21ace07d --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:952d2a508b378d33c387c38f23ffd7a7e32d8873741e6fd7a57fafe2cc74929b +size 510 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-12100---25600-in.json b/source/parts/detail/l/locprecision-cardboard-ring-12100---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9f4aaa881dce020b3f2f34dca33bd639a183e7d8 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-12100---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d956650739f884cccc07db7971bbaaf3e474a38489369ea1af96d982f39c55c +size 508 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-12205---15039-in.json b/source/parts/detail/l/locprecision-cardboard-ring-12205---15039-in.json new file mode 100644 index 0000000000000000000000000000000000000000..952aed3f878ef16c088bd5c4f989aec09564d0c8 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-12205---15039-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:183dee2a54811fe57b353638e000a2096fdb2a5f470afba46b8493d107a7fe21 +size 510 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-28800---29900-in.json b/source/parts/detail/l/locprecision-cardboard-ring-28800---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40aaebcae79875865291ed1af53911593404787f --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-28800---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34588c411780d81e6b8dc361b44ce1985f1a8b848ff04721bab4db681f537257 +size 490 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-35550---37850-in.json b/source/parts/detail/l/locprecision-cardboard-ring-35550---37850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03e60dce769f8aa131f4966e3477ad6612bb50ac --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-35550---37850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821faadc8d38fcd65fdf46d95e9dc9a2ec989e49b022e5f3d70d73e769d06b43 +size 454 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-37760---39000-in.json b/source/parts/detail/l/locprecision-cardboard-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8e995a790fbb586250917b0144431598fcb8c98 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2a4c936e537c75d19a192816a267f0eca026eced69a718d3c428d533dbb322 +size 490 diff --git a/source/parts/detail/l/locprecision-cardboard-ring-73800---75150-in.json b/source/parts/detail/l/locprecision-cardboard-ring-73800---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..091cc826eb02c0c32110813281937910b860c1c6 --- /dev/null +++ b/source/parts/detail/l/locprecision-cardboard-ring-73800---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e608a78f814ee916564214bcb19a75831f9698f0249fd562d185eb04a6e997e5 +size 480 diff --git a/source/parts/detail/l/locprecision-conical-transition.json b/source/parts/detail/l/locprecision-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..5d407d12199cd1b6ddd9a7c31177b626612bef7d --- /dev/null +++ b/source/parts/detail/l/locprecision-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2483078bba12a2b574a0deb9dc5a5e22377aa00f11e420d2b47ae5dd6363074 +size 604 diff --git a/source/parts/detail/l/locprecision-elliptical-transition.json b/source/parts/detail/l/locprecision-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..f27a728845f029c475d68c4f4e85e9e2d4c3fc76 --- /dev/null +++ b/source/parts/detail/l/locprecision-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1dc8a41abc4f93ef651bdcd4458ffc4722ace6c5bdaede9a1660236474e7edd +size 640 diff --git a/source/parts/detail/l/locprecision-fiber-ring-00000---09500-in.json b/source/parts/detail/l/locprecision-fiber-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1dcfa332ed99e603ab9d39c36856c147b6a132e8 --- /dev/null +++ b/source/parts/detail/l/locprecision-fiber-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb05249dfbc39f33527b9993a20dc678fa953eff7a666a3b38eecd9e39238ce +size 501 diff --git a/source/parts/detail/l/locprecision-fiber-ring-00000---29300-in.json b/source/parts/detail/l/locprecision-fiber-ring-00000---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..672d82e136f7911281053c920910cf87c356f032 --- /dev/null +++ b/source/parts/detail/l/locprecision-fiber-ring-00000---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:251803743f832fb384941e4473ecfab2dc341498363dfaef231d5ba2b40b5cc1 +size 486 diff --git a/source/parts/detail/l/locprecision-fiber-ring-16400---30000-in.json b/source/parts/detail/l/locprecision-fiber-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..71d7f2d011b856043c28b2f604d22bee75314030 --- /dev/null +++ b/source/parts/detail/l/locprecision-fiber-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a988573b7392a6eff75373ca5766c645cd0580adc1960c74536cfc2df0085657 +size 496 diff --git a/source/parts/detail/l/locprecision-fiberglass-ring-00000---15236-in.json b/source/parts/detail/l/locprecision-fiberglass-ring-00000---15236-in.json new file mode 100644 index 0000000000000000000000000000000000000000..418038b1569bf61be17e1c069629c748814b5150 --- /dev/null +++ b/source/parts/detail/l/locprecision-fiberglass-ring-00000---15236-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecf56858bc40a88f72e1863cce7c21473ca60d4502a8e1e6e4fc6ef000a0b989 +size 501 diff --git a/source/parts/detail/l/locprecision-fiberglass-ring-00000---58120-in.json b/source/parts/detail/l/locprecision-fiberglass-ring-00000---58120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da873351ecc1780791ef774685f132705464045c --- /dev/null +++ b/source/parts/detail/l/locprecision-fiberglass-ring-00000---58120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5bd3ee076fa28123313f139fd94cb3abdf25d64e669a1819ceb864dcf8ae649 +size 457 diff --git a/source/parts/detail/l/locprecision-fiberglass-ring-00000---78150-in.json b/source/parts/detail/l/locprecision-fiberglass-ring-00000---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7fab8a8fefb39249d7938142706fb9abac46a59 --- /dev/null +++ b/source/parts/detail/l/locprecision-fiberglass-ring-00000---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ff25eb1719a6a8d9e720dfae7878725496d9ff19c51b7cf5ab120b61e2951c +size 457 diff --git a/source/parts/detail/l/locprecision-fiberglass-ring-29300---30000-in.json b/source/parts/detail/l/locprecision-fiberglass-ring-29300---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0acac55d84a3a40ca35014f5c30c2733990a3267 --- /dev/null +++ b/source/parts/detail/l/locprecision-fiberglass-ring-29300---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4085065eabb29b83e0dfec5ddf25819d774895713cf4c7408a0a13d0cdb438 +size 493 diff --git a/source/parts/detail/l/locprecision-fiberglass-ring-41000---78150-in.json b/source/parts/detail/l/locprecision-fiberglass-ring-41000---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..642fa294c3d30e4990263169252b88136e0bc558 --- /dev/null +++ b/source/parts/detail/l/locprecision-fiberglass-ring-41000---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef684e6e9dff8c94ddff56cba9d70df875ec2e55683f5afc6fa20dfdb0009f3 +size 457 diff --git a/source/parts/detail/l/locprecision-fiberglass-ring-76300---78150-in.json b/source/parts/detail/l/locprecision-fiberglass-ring-76300---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d2f880c1d8496e92dbac5074e8049d13f6bb7f7 --- /dev/null +++ b/source/parts/detail/l/locprecision-fiberglass-ring-76300---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708de0ea1bc16b5ea5ab262426e08d23542749a0b92496ee091e9a039a70642a +size 457 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-filament-wound-tu-ring-48750---50000-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-filament-wound-tu-ring-48750---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..96a06ac8ea67bc6e6fd6b0258c744dbb2757e95b --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-filament-wound-tu-ring-48750---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f3b51e6239e344d3888f2a59be34c89b26871fa0872e968b3a25deb960e49b +size 559 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-loc-ring-22600---39000-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-loc-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b347de89d3eaa7203d5b5cd2b6c248d9044ee27 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-loc-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da8f49037e88b0d7956fe945733c47c5991948ac589a0b1b1f43f4f5a2715e3 +size 535 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-loc-ring-22600---53800-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-loc-ring-22600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2533efea943b807e7b80ca1fe645f0fa32c2b7d --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-loc-ring-22600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25862fd1c3f949cb4143a2f972e07023f282e55cf6a51fa5a6e2896083d989a9 +size 483 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---20700-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---20700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a38ad67def2c746e9dbc0ccdc83c50dd4856a06 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---20700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d296c0e009dbd5a6bd3a42bba2090a666b4e94ae666ce0ddd1da5f8e32bbe57d +size 513 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---29300-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2984ef6fb554903cd7d5398a3ec1498344a123bf --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28841a9f619a5ccc79dcea48b626df8ac6c17e75d9d401d8a18af4061f9572aa +size 513 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---38300-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---38300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ed94c92ea783af1c1faad525e2b9cdb820762cb --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---38300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64de6734206b320838fe8dbc6841a44bc1ae745b4e37a6a4a4f8c25346816673 +size 446 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---58750-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---58750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b1788f8019d49227019288aaf1f0e86d8c8a631 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-00000---58750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1625ca8a1caa1b7a79608cb76a1d714b368643454c3bb6a519f595dd9f261dbb +size 469 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-12100---15200-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-12100---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08f472d186fc83023bed64783dd051a2db81af7c --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-12100---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba2cfaefa070d4c71e8f4a0f864d1a46086d785cf7132631fa95fda4811f0808 +size 525 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-12100---39000-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cdc9f45a4b3a193144cf4c5b92c0f04f7e0e3618 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8f92175d447104ad7fa9a9c85c6c9f8a892c9539e6bad251de0c40b17c39c8 +size 480 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-14500---15200-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-14500---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c30a2edaab7d644f2312c798acd7918df3922e3e --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-14500---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98dc21007112acd471b3905dd571dd797e162b9f14d56131391ba2ef201bd639 +size 505 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-22600---39000-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5ed3986943589c6ec347b2e7c323e7528a1bbca --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae6c519e8cb2d30d249b937b9850df1511a9871b0f22881c12524dd0bf5ffa0f +size 521 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-22800---30000-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-22800---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a8adccd0522f4006763efe7846cca45c6bbc46c --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-22800---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a2bcf5f42ade3ff3b42ddcb37874961ed2a6dcf4b89d9c2ec335d29a01d510f +size 523 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-38300---39000-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-38300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2af09836fabfe95a81e2d199fe71fd0566fb933 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-38300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3641562c61383ce9d58b196237740055212e63817527fd9bbd0dd6f414ea395 +size 505 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-40000---58750-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-40000---58750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cbc33b329c33dcdae46656c52d2e7f4dbde17dc7 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-40000---58750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df5fda28ff0a02c6832258c7558c183abb9f436dcc34a6841c0fcb41b9fae370 +size 469 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-40240---47500-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-40240---47500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76d05b6af8135719bbc4414d2b52d69c2838c98f --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-40240---47500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68a221ea3831b7d5d8e6f7a63611ba79232cd39b88734773c73eb0bd9fff07f +size 469 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-40240---60000-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-40240---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64c9b01a17d120ab59ff26427e07231dcb5b481c --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-40240---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713413c178b9692e2915bdcf278eb292cbfecd67cb346ceed9d048276961c9a2 +size 469 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-57500---58750-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-57500---58750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c5a554b4092d83867e23e944b169b7362f29fb48 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-57500---58750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddab82ab674060190399ed50fe934233d35b3323db147fc61e4ec55819fb7f48 +size 469 diff --git a/source/parts/detail/l/locprecision-g10-fiberglass-ring-79580---79696-in.json b/source/parts/detail/l/locprecision-g10-fiberglass-ring-79580---79696-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9270c9a009f37f6dd43afb2e8a7b857e340f0ed3 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-fiberglass-ring-79580---79696-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91cfbe4bed55ca4be6bc542ced36f3f95f9e45cfb57f6223c68c7eefa4e2e78c +size 469 diff --git a/source/parts/detail/l/locprecision-g10-pml-0062-ring-11811---35000-in.json b/source/parts/detail/l/locprecision-g10-pml-0062-ring-11811---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09b7b51b21fce72c362870c7be7d37a3f21087f6 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-pml-0062-ring-11811---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:352f8db2208c98361f0897f35ba521b3779ec6e7b6f93cb15e98ed8b4e221788 +size 468 diff --git a/source/parts/detail/l/locprecision-g10-pml-0093-ring-22600---39000-in.json b/source/parts/detail/l/locprecision-g10-pml-0093-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1ae6f532695f6e6d5155541fe833c46ddaaa5b8 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-pml-0093-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f361ac0a65856354c1f688695a531186a9fdfc63b9c05de8f4bf357cc52ca3fe +size 511 diff --git a/source/parts/detail/l/locprecision-g10-pml-0125-ring-22600---53800-in.json b/source/parts/detail/l/locprecision-g10-pml-0125-ring-22600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a68f0a3d4f9dd6361594e279e7e9a57fa6bb88dd --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-pml-0125-ring-22600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ebc73faed84b40423429714b4b9a7c3adc96e18711b1fdf5f203711f917e67 +size 466 diff --git a/source/parts/detail/l/locprecision-g10-pml-0125-ring-22770---53750-in.json b/source/parts/detail/l/locprecision-g10-pml-0125-ring-22770---53750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..145d2521b5f00bae4407b61345b8dd5c43bec839 --- /dev/null +++ b/source/parts/detail/l/locprecision-g10-pml-0125-ring-22770---53750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:982c09afc2d6d2b9ed4524e042d72bda9a093353d16a2adbd562c61fa861a36f +size 466 diff --git a/source/parts/detail/l/locprecision-haack-transition.json b/source/parts/detail/l/locprecision-haack-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..9651e42d863162cdffe8ad902dc7102efe34238e --- /dev/null +++ b/source/parts/detail/l/locprecision-haack-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00413228f3adff124398552918d31bb9f5ca70b6957d5cfacccdd0e1ceed454 +size 591 diff --git a/source/parts/detail/l/locprecision-hdwe-eye-nut-2wash-14x20.json b/source/parts/detail/l/locprecision-hdwe-eye-nut-2wash-14x20.json new file mode 100644 index 0000000000000000000000000000000000000000..d5bc1c57aa6eecc5ec1c3d7be1f62593c4764dce --- /dev/null +++ b/source/parts/detail/l/locprecision-hdwe-eye-nut-2wash-14x20.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b817b7756d781958af62a4e3ec4d0d69da3ffc4779e2105197c29d07a3e63211 +size 421 diff --git a/source/parts/detail/l/locprecision-kraft-phenolic-ring-38299---39000-in.json b/source/parts/detail/l/locprecision-kraft-phenolic-ring-38299---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0070327c4734b5cd9a7207ddb2235fc31580433d --- /dev/null +++ b/source/parts/detail/l/locprecision-kraft-phenolic-ring-38299---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d644708cb9f891e1f6962e4b6115a433dd820431e39c5e4be97546b430f00e +size 505 diff --git a/source/parts/detail/l/locprecision-kraft-phenolic-ring-38300---39000-in.json b/source/parts/detail/l/locprecision-kraft-phenolic-ring-38300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ccc3c58aca2844078904ae111c9580a4144be48a --- /dev/null +++ b/source/parts/detail/l/locprecision-kraft-phenolic-ring-38300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:838cbd3418927204e9396c9544bdc63fbaadf05f8b4aedccf2b6d341e3e415dc +size 515 diff --git a/source/parts/detail/l/locprecision-kraft-phenolic-ring-51800---53800-in.json b/source/parts/detail/l/locprecision-kraft-phenolic-ring-51800---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75f027635a33b0ddd0785f316e50871511d5bdb0 --- /dev/null +++ b/source/parts/detail/l/locprecision-kraft-phenolic-ring-51800---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e06ffa8fcc77cb1ec933e09072dd1424c9fdbb6c4de3a26c0741f07f17554f4 +size 495 diff --git a/source/parts/detail/l/locprecision-lite-ply-ring-07360---25880-in.json b/source/parts/detail/l/locprecision-lite-ply-ring-07360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..24cc39432773b152acf3ecf93ad753f06af2b560 --- /dev/null +++ b/source/parts/detail/l/locprecision-lite-ply-ring-07360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49d9ab9e1bc976f8470ff31ac5e205bf59c5e66eeb7fddeaf413654d38cbdb2b +size 443 diff --git a/source/parts/detail/l/locprecision-lite-ply-ring-09760---16000-in.json b/source/parts/detail/l/locprecision-lite-ply-ring-09760---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e30d04c9d620f60e5b1ca3b15e67ae3c6cfaf17d --- /dev/null +++ b/source/parts/detail/l/locprecision-lite-ply-ring-09760---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a596d46afaba479fb2741b4b4dd5edb3e6b5f7a58048f40adfc7221b3e1949c +size 451 diff --git a/source/parts/detail/l/locprecision-lite-ply-ring-10000---25600-in.json b/source/parts/detail/l/locprecision-lite-ply-ring-10000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c3a7f5055eea66c693cb0296ffae4dd80c265a50 --- /dev/null +++ b/source/parts/detail/l/locprecision-lite-ply-ring-10000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbac171092c50e504042c8317e8d23f0d067940bf682799775a9b49afb540f42 +size 505 diff --git a/source/parts/detail/l/locprecision-lite-ply-ring-12100---39000-in.json b/source/parts/detail/l/locprecision-lite-ply-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a86210c5f8a15109eae7f89990761e132f55c087 --- /dev/null +++ b/source/parts/detail/l/locprecision-lite-ply-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98dc3b1581a541a769afeeae9dab9f79cb85f016053dc5a1764926d1ce19360e +size 451 diff --git a/source/parts/detail/l/locprecision-loc-3in-tube--ring-20200---21400-in.json b/source/parts/detail/l/locprecision-loc-3in-tube--ring-20200---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb334b05f7ab38e41c64a7c3cfcd815da8ed26d6 --- /dev/null +++ b/source/parts/detail/l/locprecision-loc-3in-tube--ring-20200---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5232e8b6c77d9236ac1b354f0fb7bb9f53cebc4f36b4b5cbff1018fbc3c57173 +size 501 diff --git a/source/parts/detail/l/locprecision-mma-2-mtr-mnt-adapter-38mm-29mm.json b/source/parts/detail/l/locprecision-mma-2-mtr-mnt-adapter-38mm-29mm.json new file mode 100644 index 0000000000000000000000000000000000000000..4b9b5f6f833d95545690d673eecfc17da4a6f759 --- /dev/null +++ b/source/parts/detail/l/locprecision-mma-2-mtr-mnt-adapter-38mm-29mm.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741eca705c20ec1eabb36c26bc753fa66424f166adb96870ecb0da08e4fe3372 +size 447 diff --git a/source/parts/detail/l/locprecision-mma-4-mtr-mnt-adapter-54mm-38mm.json b/source/parts/detail/l/locprecision-mma-4-mtr-mnt-adapter-54mm-38mm.json new file mode 100644 index 0000000000000000000000000000000000000000..c80de15adad0bb4665adf60714dc06d255eaa23f --- /dev/null +++ b/source/parts/detail/l/locprecision-mma-4-mtr-mnt-adapter-54mm-38mm.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbd2b23adfff841831e26e9555ff11d1cf2ab42a45ae3339577e4ebc9dbf1a3 +size 447 diff --git a/source/parts/detail/l/locprecision-mma-5-mtr-mnt-adapter-75mm-54mm.json b/source/parts/detail/l/locprecision-mma-5-mtr-mnt-adapter-75mm-54mm.json new file mode 100644 index 0000000000000000000000000000000000000000..9a871915f489c5be2125565f6a844be2acb096fc --- /dev/null +++ b/source/parts/detail/l/locprecision-mma-5-mtr-mnt-adapter-75mm-54mm.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949df9d4f47671b2835d5633684feae6e00fc335b64f03a2165f9caa9f1a4764 +size 447 diff --git a/source/parts/detail/l/locprecision-mr-1-clip-style-motor-retainer-set.json b/source/parts/detail/l/locprecision-mr-1-clip-style-motor-retainer-set.json new file mode 100644 index 0000000000000000000000000000000000000000..06fb3ffbf378d9349bfc06e58a8fd749208fe76b --- /dev/null +++ b/source/parts/detail/l/locprecision-mr-1-clip-style-motor-retainer-set.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca85c05c54ef646c8b95aeb1de0ab7282bcd54db81a998bd79a3ef27b0745d8 +size 459 diff --git a/source/parts/detail/l/locprecision-mylar-streamer-00010-in.json b/source/parts/detail/l/locprecision-mylar-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..593ecf2d3ccebfa89974974a69d4b24a983d955a --- /dev/null +++ b/source/parts/detail/l/locprecision-mylar-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05edbd3dbd85c3b3f2d2c85f869b6ad86732b30751a0249f73d0e51d785a1f3d +size 421 diff --git a/source/parts/detail/l/locprecision-ogive-transition.json b/source/parts/detail/l/locprecision-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..87ee4e13fdfc999e9f5baea1b2c74b73c84af90c --- /dev/null +++ b/source/parts/detail/l/locprecision-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16bff314181269c3e72c0db82ad66a72f6cb6e30fe695a5a461b7a638d035638 +size 596 diff --git a/source/parts/detail/l/locprecision-paper-ring-00000---11450-in.json b/source/parts/detail/l/locprecision-paper-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18051c36cfded6aa8b13c7a2bb3d77e0a57132e3 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6080de71c160797895d91d7d836170605a1e6002aefb1e793060964e9479e2d8 +size 498 diff --git a/source/parts/detail/l/locprecision-paper-ring-07360---15900-in.json b/source/parts/detail/l/locprecision-paper-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..edf84e1aed57aaaa58683344960c26ff20872011 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58ffba4f0f1656ac3330424dd6a2d3f56dc98a2518c5ec766582b58b7bb2f5e +size 442 diff --git a/source/parts/detail/l/locprecision-paper-ring-08000---09000-in.json b/source/parts/detail/l/locprecision-paper-ring-08000---09000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85c75cb75aa36774699ad2d2a23aa30b73e0e510 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-08000---09000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dee61e475f2b9bf7f14c26f1650cadc1325916fb91a126fedc3aecae5312612c +size 460 diff --git a/source/parts/detail/l/locprecision-paper-ring-11250---11450-in.json b/source/parts/detail/l/locprecision-paper-ring-11250---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93ea30e5896cb6f0d37b8107f228d70ca8221927 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-11250---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c00d2a6da748ca77ab77a95f6bfa3ff462e30900aa48a7265921f08467a036 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-12000---15200-in.json b/source/parts/detail/l/locprecision-paper-ring-12000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5af2acac27c0f1c4ac22b774e56394dd7395a8c4 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-12000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee6eb29f259f09a2a4b92d678e60f1b64a2a01044edfcc6a1946227cdcacd1e +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-12100---15200-in.json b/source/parts/detail/l/locprecision-paper-ring-12100---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..611c8b8e6548e5ed5d808b03e17366381c81f44f --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-12100---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daed8e2c4b55f945f2b67eea3daef6e8a09a38fd67edf3de7abce9e5e7ac6172 +size 498 diff --git a/source/parts/detail/l/locprecision-paper-ring-14500---15000-in.json b/source/parts/detail/l/locprecision-paper-ring-14500---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77cb79f1894ac4e2c8e9fffc0949f4b31459a29d --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-14500---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e992da80f9590c5a7e584345d31541773161fea3cecfb6e124c2b9e3b83c9f4 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-14500---15250-in.json b/source/parts/detail/l/locprecision-paper-ring-14500---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10968dd9587671d3220e4e0ff3b3b8cf36ecf7dd --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-14500---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b272bc1aa9b424644e6b3351ce08d92d7ca36c381d41d4b4f631f7270181f8 +size 428 diff --git a/source/parts/detail/l/locprecision-paper-ring-14900---15200-in.json b/source/parts/detail/l/locprecision-paper-ring-14900---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a91bcac3636a896882b26c40ef86b34f0025eb7 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-14900---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0bd7088e9bb71c2ae87b0cb66a265151f9874ffbbe75fea03b8e641b9afaa3e +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-15039---15902-in.json b/source/parts/detail/l/locprecision-paper-ring-15039---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb43cb758e30ecf9dfbf1afbca263cd6af8e69bf --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-15039---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:557a4befd81c550361ea336a6aa9534491524dfc9e92c46caea66659cd08f4bd +size 442 diff --git a/source/parts/detail/l/locprecision-paper-ring-19800---21400-in.json b/source/parts/detail/l/locprecision-paper-ring-19800---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..882ad053c3c5c9b8ff5f6d786888d1dbaa41015b --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-19800---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d33b294a9ef4b6be485fef29812a4c991b6c0e5980d0f50544ff3dabb2017b0 +size 486 diff --git a/source/parts/detail/l/locprecision-paper-ring-20000---20940-in.json b/source/parts/detail/l/locprecision-paper-ring-20000---20940-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7cbfa5d442b97002036ee5aa434ffc34a9581be8 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-20000---20940-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea728f4bad2b17123afccc467fea962820c3b50a8a463eaf9e63959e4b57bebe +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-20299---21402-in.json b/source/parts/detail/l/locprecision-paper-ring-20299---21402-in.json new file mode 100644 index 0000000000000000000000000000000000000000..24741dde76f166f34297d77ea77ae1b5ce1d4b19 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-20299---21402-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d3dba7cffba1eb4d557470ee2758510745081b7adced28ef645c694ae852bd +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-20300---21400-in.json b/source/parts/detail/l/locprecision-paper-ring-20300---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07d1a9a15be5ec72ffdeceb510f5a72ef63ee8b9 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-20300---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a18983063bd4d2a5fb67514b15bc63125d79baa2c737e8f0f7a27ccd0d336d +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-20300---21500-in.json b/source/parts/detail/l/locprecision-paper-ring-20300---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d12da9aafc1b35b65644e3f7a3ebc66739f990f --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-20300---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32910a637f005d547f6d93411157f305df7f7a216674595fa68e591b4edf0e4f +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-23910---25880-in.json b/source/parts/detail/l/locprecision-paper-ring-23910---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f142425ce9194d37d6131eee179827753e240d26 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-23910---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44ee2f914ee9d40a196c192e3ecfe0fe0d1de6c3083b1370d0db489d39f69e02 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-24500---25600-in.json b/source/parts/detail/l/locprecision-paper-ring-24500---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b0f3b72346798197fc9cf695f6936802a28027db --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-24500---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90276e17117675d334cace532b5524ba055ddaa266c8ddfc32611846fc90a50c +size 486 diff --git a/source/parts/detail/l/locprecision-paper-ring-24700---25600-in.json b/source/parts/detail/l/locprecision-paper-ring-24700---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1725a4ed0de3a4965154d1fd5a250203d17a7148 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-24700---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b66ea5355cbd744aa18d9bfad7d18ccf26a6c625e8e0eccbbc5e67a7558fbc +size 471 diff --git a/source/parts/detail/l/locprecision-paper-ring-24900---25900-in.json b/source/parts/detail/l/locprecision-paper-ring-24900---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56f8d0ebd07d33f9b7edd0d73a139f9b6e7c5950 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-24900---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64430e5a88c09ff27d220141a4e1787ad280b2819a4cc0f79463f71e1472c60d +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-24900---25990-in.json b/source/parts/detail/l/locprecision-paper-ring-24900---25990-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59fa3aff25daafde1221bcbb788adba9d0133506 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-24900---25990-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc405a1c17e1d93aec18266723355e86b6a05367ee6d01a102da5db984391b1 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-28000---29000-in.json b/source/parts/detail/l/locprecision-paper-ring-28000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba8ae8fc2c30df8d5f4962893461e150d8ab4e55 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-28000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cd2632c8ac1ec7b77e81652fe297211859e08fb583a5c2fb3d0b39ea374fe19 +size 442 diff --git a/source/parts/detail/l/locprecision-paper-ring-28300---29900-in.json b/source/parts/detail/l/locprecision-paper-ring-28300---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..32afb1faa57f7524d238a45538bed97fbd10c010 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-28300---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff73d6bde204492259bf29e42ac291e8a81710e7b043904a5182faa8ac972546 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-28900---29880-in.json b/source/parts/detail/l/locprecision-paper-ring-28900---29880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07502b61f8b43df5cbdc4a07cd2a77033dadc991 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-28900---29880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:022f75a5e3b8539b5e4ca04a7bdc3686a890f736d4401d1f0e62c77d34e9a70b +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-29000---30000-in.json b/source/parts/detail/l/locprecision-paper-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3764b483da6e3c6598eae759b55f08095ac09716 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ba79f718b6716b251c0480705b6d4db9fb942a99cf546dbad24c13364d5507 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-29300---29330-in.json b/source/parts/detail/l/locprecision-paper-ring-29300---29330-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca75b75069275a2a77c41cc0829275f3d7fdb848 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-29300---29330-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d23d0bde36a0666601a3ecb3b2a5a60e81a3c13bc430e9cb394d61ff6efaae1d +size 474 diff --git a/source/parts/detail/l/locprecision-paper-ring-29300---30000-in.json b/source/parts/detail/l/locprecision-paper-ring-29300---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd84cdd93a35e3bc4f731592712612048ba33772 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-29300---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dfc70cc6dfe190b0344d26186125cf461866a3da372803c3e8f741ed3517108 +size 458 diff --git a/source/parts/detail/l/locprecision-paper-ring-30000---31000-in.json b/source/parts/detail/l/locprecision-paper-ring-30000---31000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e4fa10d8efbb478e9e6f105da728c6fd60f71497 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-30000---31000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8873e97cd7b3956e6e64fad22a878b0d459d36dff4316f262c9ba73e5da5e825 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-38000---39000-in.json b/source/parts/detail/l/locprecision-paper-ring-38000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c2d5af41cf4972c931b0fa36b1a564b47dfbd27 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-38000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4310d810765027a9adadde4e0110c040fc802066e9593e2bd9891c854a45fd5a +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-38140---38840-in.json b/source/parts/detail/l/locprecision-paper-ring-38140---38840-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3edf235361b91694371716f00548c6aafef404d4 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-38140---38840-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76a7c7f08f23999bbe371466d7667ff2074d98a17d7b4d2005b8af9b0cd46621 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-38299---39000-in.json b/source/parts/detail/l/locprecision-paper-ring-38299---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ed04b920c6a5c06a45c85b97950ce276f82358d --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-38299---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70f0cb57e61ff92346676ecd4cf9ec24666272cdff232e55f6ad718a5eaba42 +size 487 diff --git a/source/parts/detail/l/locprecision-paper-ring-38300---39000-in.json b/source/parts/detail/l/locprecision-paper-ring-38300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..21fbcc1e38c158cb9e7863e4d26579093260c457 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-38300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce8c3200526243a012d8801aea4851a92f3ee4dd0697a306eaae293b34a559af +size 487 diff --git a/source/parts/detail/l/locprecision-paper-ring-38300---40000-in.json b/source/parts/detail/l/locprecision-paper-ring-38300---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a66e4ca4b3d85f7c347e036862674a1e1b32c10 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-38300---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a42edc322ba48ed243c11ca3cc69c70e7ae2f6b4388206c41f77793cdd3475 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-52900---53800-in.json b/source/parts/detail/l/locprecision-paper-ring-52900---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..77c6a863427e3fd5059760aee623bea528c22f81 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-52900---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d572f465a014a1096835abde46f36e989b24761cd26abdadd8de7b240fe30e +size 483 diff --git a/source/parts/detail/l/locprecision-paper-ring-71910---74150-in.json b/source/parts/detail/l/locprecision-paper-ring-71910---74150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8c0c02f682f925b768fb295fdbd6ad2d9389602 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-71910---74150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1422b9efd80de50660de3a982a60906b504a1f2de4c877a1de20346ff78afb3 +size 478 diff --git a/source/parts/detail/l/locprecision-paper-ring-73980---75080-in.json b/source/parts/detail/l/locprecision-paper-ring-73980---75080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..911fc29b0765a9720585ea005bbf35707276ee6f --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-73980---75080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0914e83653087da08d08ceb5bdf2810f87adec4f7d13a8f7d648650d1522dfb +size 480 diff --git a/source/parts/detail/l/locprecision-paper-ring-74100---75100-in.json b/source/parts/detail/l/locprecision-paper-ring-74100---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f475cdb5fe3fe474f6928593564e6c2db4291ae1 --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-ring-74100---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6aa339ca4cb2c6f16ed77cf249bf94dc35dc66acbcb1bd40e6981c470b95aa2a +size 478 diff --git a/source/parts/detail/locprecision-paper-ring-74100---75150-in.json b/source/parts/detail/l/locprecision-paper-ring-74100---75150-in.json similarity index 100% rename from source/parts/detail/locprecision-paper-ring-74100---75150-in.json rename to source/parts/detail/l/locprecision-paper-ring-74100---75150-in.json diff --git a/source/parts/detail/l/locprecision-paper-streamer-00020-in.json b/source/parts/detail/l/locprecision-paper-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33b36b36d109593b129f50f62314c4d375cccffb --- /dev/null +++ b/source/parts/detail/l/locprecision-paper-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf4180e9a9d1191a4b1c1ab633997611a4f31c021cf19bf864b2eab7f68da1ba +size 421 diff --git a/source/parts/detail/l/locprecision-parabolicseries-transition.json b/source/parts/detail/l/locprecision-parabolicseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..e1faf82340d69b7cc5002677aee64d603d88819b --- /dev/null +++ b/source/parts/detail/l/locprecision-parabolicseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627e3ea6219c9544b32f972ce26bf6ed68758b258e907e3b0b9f00a4ce35be6d +size 633 diff --git a/source/parts/detail/l/locprecision-polycarbonate-ring-10079---14173-in.json b/source/parts/detail/l/locprecision-polycarbonate-ring-10079---14173-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f3e93b6b6aca9b6b0fb99a6255f14b51162aec3 --- /dev/null +++ b/source/parts/detail/l/locprecision-polycarbonate-ring-10079---14173-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0b060229e2df34344bee6f9f29031aef3380a6ee700bbca0dd99527f20716c4 +size 520 diff --git a/source/parts/detail/l/locprecision-polyethylene-ldpe-streamer-00010-in.json b/source/parts/detail/l/locprecision-polyethylene-ldpe-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4563736e0ecca6e08a3f158ab711f2098538b5f8 --- /dev/null +++ b/source/parts/detail/l/locprecision-polyethylene-ldpe-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452e96db3ff760781300c8179fff82c995769d3de5ac059910462d69a4c7ff6a +size 449 diff --git a/source/parts/detail/l/locprecision-polyethylene-ldpe-streamer-00020-in.json b/source/parts/detail/l/locprecision-polyethylene-ldpe-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d7c3f599c3e8abf0727a1e13cba32888b362512 --- /dev/null +++ b/source/parts/detail/l/locprecision-polyethylene-ldpe-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67c09831767ccec249f2262f0756fc145c84fbd585abebdbd0e6bcd2133af057 +size 469 diff --git a/source/parts/detail/l/locprecision-rip-stop-nylon-streamer-00010-in.json b/source/parts/detail/l/locprecision-rip-stop-nylon-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5456df40ffe9fca3194a7adcfcb25a43839029d7 --- /dev/null +++ b/source/parts/detail/l/locprecision-rip-stop-nylon-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:599583f5bdbff3f9c18e85d98b69b995eebb71862b03494a15f517b4fdc95905 +size 457 diff --git a/source/parts/detail/l/locprecision-rip-stop-nylon-streamer-00020-in.json b/source/parts/detail/l/locprecision-rip-stop-nylon-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2110fd1c57fcf9b212627f5907db3d452e80819 --- /dev/null +++ b/source/parts/detail/l/locprecision-rip-stop-nylon-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bccbb182f8ea3fc993fbd738f794be88266b2a15278f52c971fa60449c15576e +size 437 diff --git a/source/parts/detail/l/locprecision-rocketwood-ring-12500---25600-in.json b/source/parts/detail/l/locprecision-rocketwood-ring-12500---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e1af34849fc466bf3675ce24ec5ecb541c631ce --- /dev/null +++ b/source/parts/detail/l/locprecision-rocketwood-ring-12500---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f67476bb38f5a2ea5b8d6783b6f77aef453cbdba6672809136f40bb607f6d1 +size 511 diff --git a/source/parts/detail/l/locprecision-sc-1000-1-in-elastic-shock-cord.json b/source/parts/detail/l/locprecision-sc-1000-1-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..81da1f6eb794c1decc0d7b28607095d0653345e7 --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-1000-1-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfb1d889b0db3ba8e8d62a05f7176427e35cbdc174617f70a50c95bee94ba9f +size 447 diff --git a/source/parts/detail/l/locprecision-sc-250-shock-cord-14in-elastic.json b/source/parts/detail/l/locprecision-sc-250-shock-cord-14in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..d287ff8fcb385a9a94cdf06721549ddfb9fdd37c --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-250-shock-cord-14in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76daaf8f6c4d12fa4d8a054280905b255ff672a3b3fd38e3ce75ce99afacbd8c +size 445 diff --git a/source/parts/detail/l/locprecision-sc-375-38-in-elastic-shock-cord.json b/source/parts/detail/l/locprecision-sc-375-38-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..9cb5113edb2df983aa57e6285c34aa03f3fa0f02 --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-375-38-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5f28887628f348396660b4cdd65b498d217d7cb2fc28c6f07158bb4a3f843e +size 449 diff --git a/source/parts/detail/l/locprecision-sc-375-shock-cord-38in-elastic.json b/source/parts/detail/l/locprecision-sc-375-shock-cord-38in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..edab9194dc186e251b4238218a56bcbdbbf3591e --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-375-shock-cord-38in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe15baf26e11602dc05b6801b467567b1df23763511648520062ea31f53fcb2e +size 445 diff --git a/source/parts/detail/l/locprecision-sc-375-shock-cord.json b/source/parts/detail/l/locprecision-sc-375-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..aae8297d451e6e7d07b109b36271a996408c78ba --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-375-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c08f9fc0e0c7e1c4ffb1e19f3a194ad5181174b4a2f481b0b69c3f6985f6a7 +size 391 diff --git a/source/parts/detail/l/locprecision-sc-500-12-in-elastic-shock-cord.json b/source/parts/detail/l/locprecision-sc-500-12-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..c35bbcfc213670bef2afcebc54f77fe557b3c614 --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-500-12-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb83c40d3f9eea5577077504b0f954bfb87b09ff84cf16820fa9413dc612b4a +size 449 diff --git a/source/parts/detail/l/locprecision-sc-500-shock-cord-12in-elastic.json b/source/parts/detail/l/locprecision-sc-500-shock-cord-12in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..a4b0e5c5d3ba850dfbf5347acf98485c1ecf19a1 --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-500-shock-cord-12in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36e4a22bc12261fd44f85e5f7714826b721fd4aa1a4051003fe498b801f5248a +size 445 diff --git a/source/parts/detail/l/locprecision-sc-750-34-in-elastic-shock-cord.json b/source/parts/detail/l/locprecision-sc-750-34-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..cfac53d4d6a351198462b68c4269680e9af2c621 --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-750-34-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46eecfd178bd8417d4d8685a26e2731b64bbc7546c20c14cc7895023daec02a7 +size 449 diff --git a/source/parts/detail/l/locprecision-sc-750-shock-cord-34in-elastic.json b/source/parts/detail/l/locprecision-sc-750-shock-cord-34in-elastic.json new file mode 100644 index 0000000000000000000000000000000000000000..7dd4aafa07be2b3ac2ef82e7cd4be39a9c074bfe --- /dev/null +++ b/source/parts/detail/l/locprecision-sc-750-shock-cord-34in-elastic.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e6d43c6aab917c4f5c9be6da242af624662bb919bcf1098458c774d59a33366 +size 445 diff --git a/source/parts/detail/l/locprecision-scm-2-shock-cord-mount.json b/source/parts/detail/l/locprecision-scm-2-shock-cord-mount.json new file mode 100644 index 0000000000000000000000000000000000000000..9cf6c95c9625c11ddc8d48dcff684c8bb0b7c4ff --- /dev/null +++ b/source/parts/detail/l/locprecision-scm-2-shock-cord-mount.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8cd50fc6dbd38dc1521a6dd2e542a09d1b375dbd06664963e384814d12b54b9 +size 411 diff --git a/source/parts/detail/l/locprecision-scm-3-shock-cord-mount.json b/source/parts/detail/l/locprecision-scm-3-shock-cord-mount.json new file mode 100644 index 0000000000000000000000000000000000000000..3e03421ed850f360188f7f6f789b86b94c763fd2 --- /dev/null +++ b/source/parts/detail/l/locprecision-scm-3-shock-cord-mount.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e95d62fa91c1cfe0eafbf7193c91798028e21bdb3948ac98a84b3ddb63b906 +size 411 diff --git a/source/parts/detail/l/locprecision-sctn-20-tubular-nylon--916-in-x-20-ft.json b/source/parts/detail/l/locprecision-sctn-20-tubular-nylon--916-in-x-20-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..11bc1c0b7dda3fdffc97714ba29f30743a7cbd8c --- /dev/null +++ b/source/parts/detail/l/locprecision-sctn-20-tubular-nylon--916-in-x-20-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e761b53bfb6372ade0d7945a4a9600a613bd85302b1dbf87530c64eab32c4c6 +size 473 diff --git a/source/parts/detail/l/locprecision-sctn-25-tubular-nylon--916-in-x-25-ft.json b/source/parts/detail/l/locprecision-sctn-25-tubular-nylon--916-in-x-25-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..07e1758c82b69128d9534fffba3fce32cc4521d3 --- /dev/null +++ b/source/parts/detail/l/locprecision-sctn-25-tubular-nylon--916-in-x-25-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261170262463423bd288b394837e4ce24037e73b22c4b4b5ceeb791425f2c04b +size 473 diff --git a/source/parts/detail/l/locprecision-sctn-30-tubular-nylon--916-in-x-30-ft.json b/source/parts/detail/l/locprecision-sctn-30-tubular-nylon--916-in-x-30-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..2eb409066fd17d64adfcc4f034d36e08f154b0b2 --- /dev/null +++ b/source/parts/detail/l/locprecision-sctn-30-tubular-nylon--916-in-x-30-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6754326057be7a63183f4ded52eddb1e7e9a8e30c6d6c12e73f138d28766cd6a +size 473 diff --git a/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-1-in-x-30-ft.json b/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-1-in-x-30-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..f7dc81bffc4e453e6530a9abbf4c988733fa3736 --- /dev/null +++ b/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-1-in-x-30-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1e05ff52a46dcdcd14bf9c90ce8a568c16bd201698d1221ac4d4d42c12c7cb +size 459 diff --git a/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-916-in-x-30-ft.json b/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-916-in-x-30-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c3d969bcc7a0938bc3b4a4ecab6da7351a11bf --- /dev/null +++ b/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-916-in-x-30-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7976b8365aca60eff987d351f680cce09dfdcce627ed0745e38b2d25c73fbac8 +size 469 diff --git a/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-916in-x-30-ft1200lb.json b/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-916in-x-30-ft1200lb.json new file mode 100644 index 0000000000000000000000000000000000000000..6eae4b6baee9474d03e12eb0797d3c10f818d91f --- /dev/null +++ b/source/parts/detail/l/locprecision-sctn-30-tubular-nylon-916in-x-30-ft1200lb.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5e6370aa6623cea6239a251910a9dca10dbdb85130d31756b18201bc5e9509 +size 493 diff --git a/source/parts/detail/l/locprecision-steel-ring-37000---41000-in.json b/source/parts/detail/l/locprecision-steel-ring-37000---41000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ff898868d7491ecf18b2301cc6e5ae2e60929d7 --- /dev/null +++ b/source/parts/detail/l/locprecision-steel-ring-37000---41000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c50c90d3ad8585434d98ab5663c2b98e8f14086a345785a39acb454f54a575d +size 494 diff --git a/source/parts/detail/l/locprecision-tn-12-tubular-nylon-916-in-x-12-ft.json b/source/parts/detail/l/locprecision-tn-12-tubular-nylon-916-in-x-12-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..2ea10e77ddb9bb42a698bbdd77dee2a5ab2ac5c3 --- /dev/null +++ b/source/parts/detail/l/locprecision-tn-12-tubular-nylon-916-in-x-12-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f1bb0adb7a3696c9a5c25c52eeb8cd5390aa0ca0f1e31574e4d71f5644f3a3 +size 461 diff --git a/source/parts/detail/l/locprecision-tn-25-tubular-nylon-916-in-x-25-ft.json b/source/parts/detail/l/locprecision-tn-25-tubular-nylon-916-in-x-25-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..aef39585a8f4e11587a2c2775b5f70701aac3f63 --- /dev/null +++ b/source/parts/detail/l/locprecision-tn-25-tubular-nylon-916-in-x-25-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b7d992c66e096d98ac6d6517041468ad718819e6be47714cfbb08769545ae45 +size 461 diff --git a/source/parts/detail/l/locprecision.json b/source/parts/detail/l/locprecision.json new file mode 100644 index 0000000000000000000000000000000000000000..a2a2634a861db78731e7b3aa919189391594328e --- /dev/null +++ b/source/parts/detail/l/locprecision.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8391b0a303c449783c7e3158ea62ee6c995600b29cc9e61c962922c6063b8387 +size 284 diff --git a/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-birch-ring-00000---73500-in.json b/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-birch-ring-00000---73500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5326d078371ff67539bc31546ff3c7f514966e57 --- /dev/null +++ b/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-birch-ring-00000---73500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f498be58938a6ac840afdbc3d0070e9c6443a5257209556d956cdd7292674f83 +size 573 diff --git a/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-birch-ring-00000---75100-in.json b/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-birch-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2e5d7e1051f5390be36f94e631fc97e8692446fe --- /dev/null +++ b/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-birch-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d3665e516c9ff6078180b9c383f19bdba2ff1060bba5aea404c9aa79e2630a +size 573 diff --git a/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-g10-fiberglass-ring-00000---75100-in.json b/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-g10-fiberglass-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6cc56fb3870c9922adf90c8d92407ba030779d69 --- /dev/null +++ b/source/parts/detail/l/loop-quantum-crapien-inner-av-ba-g10-fiberglass-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c250906fb157c43a6085adaac3ef54e4c19f09a3604f5592982b3d3439dbed0b +size 600 diff --git a/source/parts/detail/l/loop-quantum-crapien-mmt-cr-birch-ring-40240---75100-in.json b/source/parts/detail/l/loop-quantum-crapien-mmt-cr-birch-ring-40240---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7fb7b7966aa5b75032a99e7f9990fec4a1cde874 --- /dev/null +++ b/source/parts/detail/l/loop-quantum-crapien-mmt-cr-birch-ring-40240---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3acae13161644c0ed235d8ed214f76273db48265277345e1dbd472738743105 +size 553 diff --git a/source/parts/detail/l/loop-quantum-crapien-mmt-cr-g10-fiberglass-ring-40240---75100-in.json b/source/parts/detail/l/loop-quantum-crapien-mmt-cr-g10-fiberglass-ring-40240---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39496d7d0c2041072b54547585013f13ee394fab --- /dev/null +++ b/source/parts/detail/l/loop-quantum-crapien-mmt-cr-g10-fiberglass-ring-40240---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6b00b1548ad5cf3b9d1b55519e26e8f7323c18808fa3b51e54e0d5e84ea580 +size 580 diff --git a/source/parts/detail/m/mad-cow-balsa-ring-00000---15900-in.json b/source/parts/detail/m/mad-cow-balsa-ring-00000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b0680405f85f77f137ba5f42c59af43907cd9c44 --- /dev/null +++ b/source/parts/detail/m/mad-cow-balsa-ring-00000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5430f1b167273670883fc4170f9082be37b4e653dc0faf4b041c9a9e32c20417 +size 420 diff --git a/source/parts/detail/m/madcow-rocketry--nylon-shock-cords-25.json b/source/parts/detail/m/madcow-rocketry--nylon-shock-cords-25.json new file mode 100644 index 0000000000000000000000000000000000000000..d8da94ecd0d85fe8964176cf7241024128f77f7e --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry--nylon-shock-cords-25.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9f3c10e085b1d4297c8dbb59c5717ffdfd061095da8ec0695ab0f2de2018879 +size 388 diff --git a/source/parts/detail/m/madcow-rocketry-001-9-x-9-chute-protector.json b/source/parts/detail/m/madcow-rocketry-001-9-x-9-chute-protector.json new file mode 100644 index 0000000000000000000000000000000000000000..0be3155b12baf3f51c20db2a642cb084bb2a796c --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-001-9-x-9-chute-protector.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1ca6d46b22bbe7542ac9760682fb4beaf4ebb3dbc138c6d03660b887fc9847 +size 432 diff --git a/source/parts/detail/m/madcow-rocketry-316-aircraft-plywood-ring-16400---30000-in.json b/source/parts/detail/m/madcow-rocketry-316-aircraft-plywood-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ebf62ec5919c162d46d5f28a9640d209af8493ec --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-316-aircraft-plywood-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23988a09f8e8482dcd824aef834ab0f5c4d842f9d1af9d9b54f6f72e8c54ac7 +size 489 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---25580-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65c24cef3d3a404263b7c1259f0c7df946f4c3b3 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78544ecad0f29d0e8d577ea4e582f619e62632a0ce825e5ca764552854a1553 +size 535 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---27900-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---27900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f1d6612312beb210fdd964369aee50f40a98b20 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---27900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3805276f35028ab43a4cc4d4b733a12d40cd00f59d135f0d4cf29cb32ee7506f +size 537 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---37900-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---37900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f25e4f014871c8e8c58db8886ae4c2a1183a7c0 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---37900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:716c8d23b2f5fd5128de13de0cc7c966ff168967968d23fd379c52f9944e843b +size 537 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---39000-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a33fab3eda6f78c30de085859902431f6ce1e71 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f343e3b3649a9579a50e5fbc1ca540c746bd876088b85a10b545a721fd8eb59 +size 468 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-12150---21750-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-12150---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50759f4654f2f1720f8207a70b91a4884801d23f --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-12150---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17507bcb017a0d3d9db66950cdb3ca1015d741cb4eb30df3f1e8c1b8f965cf29 +size 544 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-12150---25580-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-12150---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7cafdd27496fdc18d498a6d7e8c9e1e19e162e85 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-12150---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2179716ac541a786c12e26538c67e752d8e49742712076d43648faf84d250782 +size 554 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-16350---39000-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b90e771df378d9632cecb434509f6b8711dfd3b0 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df3f6b0bd3c7357c9967fab1a3f6ec3d015dcf041cb85334a8cbdb6851afdd07 +size 520 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-16400---39000-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-16400---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18da9c47a004e16194d57b3c6e0f6aaa27e1b8ae --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-16400---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:535f6962761a424d3017362c0378154ad53b141e1fb16f46dc42d2cc9d544a9c +size 532 diff --git a/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-22600---39000-in.json b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f4c6ea1c0a2dae1e048be20c5be238885328c8e --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-aircraft-plywood-birch-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b77555f9b9577b160c0125d3d66efd5c2b89006866b99cd69c37ed41fbf58d1 +size 496 diff --git a/source/parts/detail/m/madcow-rocketry-carbon-fiber-ring-00000---20000-in.json b/source/parts/detail/m/madcow-rocketry-carbon-fiber-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bdcb8817d17d98c1c7d721da54642c8d9561809 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-carbon-fiber-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8648e8380c3525b753b4bd21078fd124e8f3c71badc2ef2570367e4cb4cc3b6 +size 505 diff --git a/source/parts/detail/m/madcow-rocketry-carbon-fiber-ring-00000---21500-in.json b/source/parts/detail/m/madcow-rocketry-carbon-fiber-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..adf0b322aff97facef7af376ca151e9e726a8772 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-carbon-fiber-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b6abd297e2fb8fcc6836d1e4a240909bc355ce79c64e42ee94cefd49fc8e2ec +size 505 diff --git a/source/parts/detail/m/madcow-rocketry-conical-transition.json b/source/parts/detail/m/madcow-rocketry-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..cf1ab3dede6dc08bf34f0a8d000026810b4a9499 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f99f45fd89c25eeeff582f4fd0dec48bbf425408d3b6e1e885d22cc54d4c585 +size 614 diff --git a/source/parts/detail/m/madcow-rocketry-eyebolt-set-includes-2-nuts-and-washer.json b/source/parts/detail/m/madcow-rocketry-eyebolt-set-includes-2-nuts-and-washer.json new file mode 100644 index 0000000000000000000000000000000000000000..a3cb3b66239b5dd8ff71680acecb109dcc250984 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-eyebolt-set-includes-2-nuts-and-washer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bc81407123579105003aa3099a2ead077a4a7b905636a99c89381f6235e243b +size 476 diff --git a/source/parts/detail/m/madcow-rocketry-fiberglass-ring-19890---21500-in.json b/source/parts/detail/m/madcow-rocketry-fiberglass-ring-19890---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..366f4ce626e94a9a0aa1e387066ec9f8ff8a6754 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-fiberglass-ring-19890---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5a9684bd7c15b1610f6f77fb45a25ef7984337be37074bf093061165674dc0 +size 499 diff --git a/source/parts/detail/m/madcow-rocketry-fiberglass-ring-21654---39000-in.json b/source/parts/detail/m/madcow-rocketry-fiberglass-ring-21654---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d8a77bde26befaaa516e48a6b58dc32dce96fcd --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-fiberglass-ring-21654---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43c20c0eccf356a8ea22d87865b52a501af0680de05a85aa50dff72fb8873d7c +size 503 diff --git a/source/parts/detail/m/madcow-rocketry-fiberglass-ring-28520---30000-in.json b/source/parts/detail/m/madcow-rocketry-fiberglass-ring-28520---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4477e97333a4d273bfe30faba969b303e94488e6 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-fiberglass-ring-28520---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec31ba6497f88d514754d84bddee69faa684afeacee7f9dd20dfd2478738c33 +size 499 diff --git a/source/parts/detail/m/madcow-rocketry-fiberglass-ring-37900---38960-in.json b/source/parts/detail/m/madcow-rocketry-fiberglass-ring-37900---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8d0ddf23f34a478c0fa1694558f4e751268db5f --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-fiberglass-ring-37900---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:573dc495826a369b26f550bc8b005f06cb53d70630db589b0d3554c02723fd3f +size 497 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---20200-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---20200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca0bdba0658639eef96f9f0ba5c9fd9d8a0962cd --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---20200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651d2761018c82b2ec721f69678552c95ce74c96d98026fb84b66202b28efb65 +size 511 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---21400-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ebf2b0de9bbb48be9be44f188a81a8c8b0ade2ce --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b3f92ef4ea7bd4abd532ab09db43fdd1aba354a41d42bab800fb698f6f6df21 +size 511 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---25670-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---25670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8e8b467e6ba280a89c46b463c7110c4c8dcb818 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---25670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e99def55a5e34bb7fa5ca2b3a5c46ca4c13df622cacb1842018277515608fd9 +size 479 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---37500-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..54010a7ce1a252400a60cdb1574da9985a117e19 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029fefdf23094cbb283646fc925fa46acf6e126f038c4f85b585ff2aeecb105e +size 511 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---39000-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28444230dcf55f5d5159ebf091cb8b83fb179f54 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcda76196775a0509aebf1324355ed4607853048eb1970cf93e87c01104c161 +size 511 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-02500---28640-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-02500---28640-in.json new file mode 100644 index 0000000000000000000000000000000000000000..538dd6e1f40a0fe55e5d330661b2dac7d5dacfad --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-02500---28640-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08402cbd4a9b42232cf9b2bc8865b634cdf8e6e6c9f7d2accfe4b979ffbf43a1 +size 470 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-02500---29960-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-02500---29960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15c734672136ca9c866dc2f8bfd19b4f71aa8f93 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-02500---29960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb3e3342c25c9cf0cd04007621d9faef993216bad9b529ab85c58e065da89928 +size 470 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-16350---25670-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-16350---25670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d5e901556f96d99fbe9c1303b6781c10e446dbb --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-16350---25670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b1711b71a66b17e3377e6c0ccd1949af87b149cc09de893922aba96baa1dbe +size 515 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-16350---39000-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..245b5925e205ad3e3d5f3c4ac17c569768ea0c75 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:897964d66328c69e29aed552c0338933cf891bdf44905d571fed91fe3cf828d3 +size 515 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-17500---25670-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-17500---25670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..878bc1eda3e02290b5337f0abbea308c4898291d --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-17500---25670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0408859e61bce761cfa7a1007b2e9cb19bd78c18ed198179749b4811c2c0e6ee +size 515 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-19890---21500-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-19890---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a1688a4234dd834fbf60616cb3284d4bef48d9d --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-19890---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c40517b929f7becc5573eab1b5876f1c42bd4ed8be3ad696ed59425b0b0b85 +size 511 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-22840---29990-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-22840---29990-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2c250e4ed0247546e0442631bb11d53df07d66cc --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-22840---29990-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03bb05668a4ff2d4b46e6a9d3c20c97efd2adc88fa5857ceb787e912f0031d17 +size 470 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-24740---25670-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-24740---25670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2449e24883b85258f795133553053d197d275286 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-24740---25670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb960d762217caa5728b6ca05bcefe3d16fe44cd2a93e5fc69ea98cea4637c1 +size 507 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-31250---39000-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-31250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..455d1c9e6897f481176900ca0b9c1455531bb941 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-31250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf1cd84d1ec014d4a5fa68a36e924ea0348ef92ea7f3190aec7c75fdb1cc95f +size 515 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-37900---38960-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-37900---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..22d6306652bf372fdadaf1568228361bab390088 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-37900---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f082bc1a3fa8dc07c9cc5fd4e97932074585f4347424b4ccbb484ebe0a7b4a69 +size 509 diff --git a/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-37900---39000-in.json b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-37900---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a1210ac7c20a70b7f6dc3e5fb39f5679bba9e3d5 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-fiberglass-ring-37900---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c968bf143d82ed3eb1e80cec54338ef65ad92d1ca47af139c202bc1fc75a78 +size 509 diff --git a/source/parts/detail/m/madcow-rocketry-g10-pml-0062-ring-12150---25580-in.json b/source/parts/detail/m/madcow-rocketry-g10-pml-0062-ring-12150---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..98fb0fba20b2d35102d9e125fd0d7b6cf36d7d3b --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-pml-0062-ring-12150---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0db3487fede8d7c908dd15928227744ae12abe41f9ccaa5a7ff4feeae1af15 +size 503 diff --git a/source/parts/detail/m/madcow-rocketry-g10-pml-0093-ring-02450---21430-in.json b/source/parts/detail/m/madcow-rocketry-g10-pml-0093-ring-02450---21430-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ce2432b76f6b4e2de69c57b75b67617661a0fc5 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-pml-0093-ring-02450---21430-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c28cd692af2a96d331f3301acb76ad80204bcd83c63d9f20b4e496b3a9206cf +size 467 diff --git a/source/parts/detail/m/madcow-rocketry-g10-pml-0093-ring-02490---19900-in.json b/source/parts/detail/m/madcow-rocketry-g10-pml-0093-ring-02490---19900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2141032c20960e6f0597614c67736bdab7fa677 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-pml-0093-ring-02490---19900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149ced163e794d9b9a6b7011d2256eefee5a39abbed415a86de6c3ac85d0133d +size 467 diff --git a/source/parts/detail/m/madcow-rocketry-g10-pml-0125-ring-16690---21590-in.json b/source/parts/detail/m/madcow-rocketry-g10-pml-0125-ring-16690---21590-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b346207915b3510447ab0ebc658b45dfc48f9d96 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-g10-pml-0125-ring-16690---21590-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3312c28517f5c544bd4668028ffe3ddd728b4f112f0248042ccd1cefb2d9cb16 +size 467 diff --git a/source/parts/detail/m/madcow-rocketry-ogive-transition.json b/source/parts/detail/m/madcow-rocketry-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..1c90af63b16f4d2b69f120daee3edcd1b92a7833 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b1b2fd032f047f9e4133427f5c41fad6163b0d4b2f63f99ef84cb709e2b5d79 +size 601 diff --git a/source/parts/detail/m/madcow-rocketry-paper-ring-14400---15200-in.json b/source/parts/detail/m/madcow-rocketry-paper-ring-14400---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00e5c6dd4a731685b2c96e85347bf164282b7397 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-paper-ring-14400---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb40a2d1396fe027973275595c7cc86d2d809c7e7ab96751699dac510af226b2 +size 468 diff --git a/source/parts/detail/m/madcow-rocketry-paper-ring-24740---25580-in.json b/source/parts/detail/m/madcow-rocketry-paper-ring-24740---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a7362d55261f31a9a701e2cbdc4846c0c3db763 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-paper-ring-24740---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f68d17c32ab653e68802babfa0d8adecdac2d6f79cf7b9f1468b780a359f2d7 +size 480 diff --git a/source/parts/detail/m/madcow-rocketry-paper-ring-37900---38960-in.json b/source/parts/detail/m/madcow-rocketry-paper-ring-37900---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64a0c2c9b7860ab19fee64704a50567989499fca --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-paper-ring-37900---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf107f9eec03e1ed5dae6afc2cab3caea0b9ad1acda0368a5097a6f519d9e07 +size 464 diff --git a/source/parts/detail/m/madcow-rocketry-paper-ring-37900---39000-in.json b/source/parts/detail/m/madcow-rocketry-paper-ring-37900---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..888246024a2529b09f8c1aa46f9e6a49a35896cc --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-paper-ring-37900---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2b1f70b56082df0f33d30bb226b2e00e477f4f32063ccaabce642c837f5fc0 +size 482 diff --git a/source/parts/detail/m/madcow-rocketry-sc-15-tubular-nylon-916-in-x-15-ft.json b/source/parts/detail/m/madcow-rocketry-sc-15-tubular-nylon-916-in-x-15-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..88532fbc2a8c86d195038b5d479494f9e250e207 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-sc-15-tubular-nylon-916-in-x-15-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ccfa786be7d617109e37c0d8af10766d3a48dde7a30ab39a017a47286a75156 +size 462 diff --git a/source/parts/detail/m/madcow-rocketry-spiralglassine-ring-24840---25540-in.json b/source/parts/detail/m/madcow-rocketry-spiralglassine-ring-24840---25540-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8439d204bc87b0ee80f4685b025ba44d5818da40 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-spiralglassine-ring-24840---25540-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc12c151b1bfa6adcf3403f4edd376a3d89f2b3b9a9fc6ff431f3158a28fe4d0 +size 507 diff --git a/source/parts/detail/m/madcow-rocketry-spiralglassine-ring-38300---39000-in.json b/source/parts/detail/m/madcow-rocketry-spiralglassine-ring-38300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4d33e549165566dee10f8d6da6966dc3070bda9a --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry-spiralglassine-ring-38300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9205fd4ca37ef6a920e55385f44db3dc1025c3479783229d015d01badb69ed3e +size 509 diff --git a/source/parts/detail/m/madcow-rocketry.json b/source/parts/detail/m/madcow-rocketry.json new file mode 100644 index 0000000000000000000000000000000000000000..159a94496d00c776d2a7d113e0f50b0108a6ec07 --- /dev/null +++ b/source/parts/detail/m/madcow-rocketry.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca8c70e5cfbc3c10749eded1b07f3d7c069d96b7974344328a78923d9f9c972c +size 285 diff --git a/source/parts/detail/m/madcow-ses-e-bay-4-inch-4-fiberglass-ebay.json b/source/parts/detail/m/madcow-ses-e-bay-4-inch-4-fiberglass-ebay.json new file mode 100644 index 0000000000000000000000000000000000000000..59a93b6e271f487f1d0bdc4746d5c0f479995e53 --- /dev/null +++ b/source/parts/detail/m/madcow-ses-e-bay-4-inch-4-fiberglass-ebay.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b7d1e26de405cd9d60905c47a3a22af06eea9b96c3d67d07c2accf260b77d8 +size 437 diff --git a/source/parts/detail/m/magnum--15---716-flat-kevlar.json b/source/parts/detail/m/magnum--15---716-flat-kevlar.json new file mode 100644 index 0000000000000000000000000000000000000000..a934c86ab8147472e36241f43bc5703cbd887f00 --- /dev/null +++ b/source/parts/detail/m/magnum--15---716-flat-kevlar.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:219e6d208c8324e43fddbc86cfdfd8bdb5c49b1e59a5f622e4270fca0a71a036 +size 363 diff --git a/source/parts/detail/m/maple-ring-16250---20925-in.json b/source/parts/detail/m/maple-ring-16250---20925-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2e066cb81e03653dab6d67b629266e2fc6f12913 --- /dev/null +++ b/source/parts/detail/m/maple-ring-16250---20925-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c43cf08ddd7b9fd94ed3cde1d70310504fc8eee9ae680e0fa684336e555ae7a +size 389 diff --git a/source/parts/detail/m/maple-ring-16250---28425-in.json b/source/parts/detail/m/maple-ring-16250---28425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac8494f03303dac0d969f1ca7085465056a55640 --- /dev/null +++ b/source/parts/detail/m/maple-ring-16250---28425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99af19d19ce3168c7ae56fa5357861429999cfbf068d92cc105cb96e4cacc8e0 +size 389 diff --git a/source/parts/detail/m/materialaircraft-plywood-loc-ring-00000---75100-in.json b/source/parts/detail/m/materialaircraft-plywood-loc-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..25302e5d4224a15309aad04cb77a0dc9f6c9ee7e --- /dev/null +++ b/source/parts/detail/m/materialaircraft-plywood-loc-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a6f66d013e8ddff7d0859ac2830767e0fe2310ab03badb3730ee08b7ce02dbf +size 473 diff --git a/source/parts/detail/m/materialaircraft-plywood-loc-ring-16400---75100-in.json b/source/parts/detail/m/materialaircraft-plywood-loc-ring-16400---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cd407acf582d1671bbc2ae384276723fb2cac431 --- /dev/null +++ b/source/parts/detail/m/materialaircraft-plywood-loc-ring-16400---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdba6fa6552448f03eb1407e7af52556c029d48edca0424b72b9269922efc1a +size 464 diff --git a/source/parts/detail/m/materialaircraft-plywood-loc-ring-22600---39000-in.json b/source/parts/detail/m/materialaircraft-plywood-loc-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eef848fa98ed39f043fc2cc7030d496ca45292b5 --- /dev/null +++ b/source/parts/detail/m/materialaircraft-plywood-loc-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8405d924c9e54f4e46490f28f3257b3aedbacfd27e03dbf0296aa54c5eccb30d +size 464 diff --git a/source/parts/detail/m/materialaircraft-plywood-loc-ring-31800---75100-in.json b/source/parts/detail/m/materialaircraft-plywood-loc-ring-31800---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b8e2e9d747da37b895e14cbc917295c26879dbb --- /dev/null +++ b/source/parts/detail/m/materialaircraft-plywood-loc-ring-31800---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8510fbbc130cf080022cbe468e08a82bf9a4bde34f6c003797ce035eaed540b3 +size 473 diff --git a/source/parts/detail/m/materialkraft-phenolic-ring-52900---53800-in.json b/source/parts/detail/m/materialkraft-phenolic-ring-52900---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d25d6984edc7fe51530c9fbfb7c0bc6467095e1 --- /dev/null +++ b/source/parts/detail/m/materialkraft-phenolic-ring-52900---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0567ac037e775d0e4ae7fd0c5c94b5ac4205d4594c40960d600000e4fcb1177 +size 447 diff --git a/source/parts/detail/m/materialkraft-phenolic-ring-74100---75100-in.json b/source/parts/detail/m/materialkraft-phenolic-ring-74100---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8a95941dd8e6a87f1e0dda5efcd07cc456881af5 --- /dev/null +++ b/source/parts/detail/m/materialkraft-phenolic-ring-74100---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58f60f9fcfa946fb15b5cca310af9375572f0040bdd01ab33a5437b679f3402b +size 447 diff --git a/source/parts/detail/m/mcmaster-aluminum-14-20-allthread-aluminum-14-20-allthread.json b/source/parts/detail/m/mcmaster-aluminum-14-20-allthread-aluminum-14-20-allthread.json new file mode 100644 index 0000000000000000000000000000000000000000..087e701cfcb533e93a6b3e51a14803756b21c525 --- /dev/null +++ b/source/parts/detail/m/mcmaster-aluminum-14-20-allthread-aluminum-14-20-allthread.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c183beb201949bcc742414eabc45319298dbac6e7e634a29616095a121c7caea +size 505 diff --git a/source/parts/detail/m/misc----allthread.json b/source/parts/detail/m/misc----allthread.json new file mode 100644 index 0000000000000000000000000000000000000000..c5db5ac6496005a66a80064e77f632c467e6d371 --- /dev/null +++ b/source/parts/detail/m/misc----allthread.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3b8454466dfea7edf2b065f65d30c30fec9717e078b1e995edf84fac78a6f70 +size 337 diff --git a/source/parts/detail/m/misc-altimiter-mass-misc-misc-altimiter-mass.json b/source/parts/detail/m/misc-altimiter-mass-misc-misc-altimiter-mass.json new file mode 100644 index 0000000000000000000000000000000000000000..7cb269dc92dfd07758e39e6ca2051d695eb6ba11 --- /dev/null +++ b/source/parts/detail/m/misc-altimiter-mass-misc-misc-altimiter-mass.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865de55d77a36d0b3655a3d3448709f829fd3b8db828acb7c00260bf3823b44c +size 445 diff --git a/source/parts/detail/m/misc-none-standard-size.json b/source/parts/detail/m/misc-none-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..6bede22244269e175df1b27e37622d21e034fd39 --- /dev/null +++ b/source/parts/detail/m/misc-none-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:160955b069dce9d3c99f4d145748b8aa1ef36b99e8cd03d22b891e99f613995a +size 361 diff --git a/source/parts/detail/m/misc.json b/source/parts/detail/m/misc.json new file mode 100644 index 0000000000000000000000000000000000000000..17d80764c0b54c9ba04bd5c0144f27a803106108 --- /dev/null +++ b/source/parts/detail/m/misc.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf887e1dc5dfad0bb195f2527d9e35f1e338fe3823250c7d6223c005dee29d7 +size 250 diff --git a/source/parts/detail/m/missile-works-rrc2-altimeter.json b/source/parts/detail/m/missile-works-rrc2-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..38eb13ea956ee3e84a57c2f00ce606ccac7f4709 --- /dev/null +++ b/source/parts/detail/m/missile-works-rrc2-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb597e2587b81e923efc20b886f785230eaf8cb2d4fe6f716ea409318dbd521 +size 381 diff --git a/source/parts/detail/m/missileworks-battery-holder-wbatt-9v-battery-holder-24x12x1-wbatt.json b/source/parts/detail/m/missileworks-battery-holder-wbatt-9v-battery-holder-24x12x1-wbatt.json new file mode 100644 index 0000000000000000000000000000000000000000..40f4ea0b1cef0248ad3b27b4261e8d2afb97f9cf --- /dev/null +++ b/source/parts/detail/m/missileworks-battery-holder-wbatt-9v-battery-holder-24x12x1-wbatt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3843caa5a30ea0d8abe8eaf3ecbdf54bee7274c725de5ad2c3f5bbdf6e309a47 +size 537 diff --git a/source/parts/detail/m/missileworks-rrc2-mini-altimeter-wdd-315x10x08-wo-batt.json b/source/parts/detail/m/missileworks-rrc2-mini-altimeter-wdd-315x10x08-wo-batt.json new file mode 100644 index 0000000000000000000000000000000000000000..8a241ae0238620c52b28d1bfc2c096dfb9fac303 --- /dev/null +++ b/source/parts/detail/m/missileworks-rrc2-mini-altimeter-wdd-315x10x08-wo-batt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b11394c0647e56e08727a4ab23dc2285ecbb26f67eebe7774afc840f87cb6c9 +size 495 diff --git a/source/parts/detail/m/missileworks-rrc2-rrc2.json b/source/parts/detail/m/missileworks-rrc2-rrc2.json new file mode 100644 index 0000000000000000000000000000000000000000..a69a7b6ad1fd6e70d63a402fff64b742420159d0 --- /dev/null +++ b/source/parts/detail/m/missileworks-rrc2-rrc2.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c695af95cfb7381c48de7b05697f60ac5cb138f3f0460560fbb9bc1bc691e4 +size 357 diff --git a/source/parts/detail/m/missileworks.json b/source/parts/detail/m/missileworks.json new file mode 100644 index 0000000000000000000000000000000000000000..a866da8ca8fbe9f5e98597bb462c7bdd66c35b94 --- /dev/null +++ b/source/parts/detail/m/missileworks.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c36cfbb50462f6764ec4597fa182bdbcc866df6ba9cfaf9c39319b50a83a56b0 +size 277 diff --git a/source/parts/detail/m/missle-works-rrc2-altimeter.json b/source/parts/detail/m/missle-works-rrc2-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..590f736eb3a6dc80a8c6aeb44c9008bee996242d --- /dev/null +++ b/source/parts/detail/m/missle-works-rrc2-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b11ccdd537d0b33de822999833d5671d3920e0f93adeb11342fe46754e7651 +size 377 diff --git a/source/parts/detail/m/motor-retainer-slim29-slimline-29mm-retainer.json b/source/parts/detail/m/motor-retainer-slim29-slimline-29mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..90d848a7ce23313e8a39d6c25cd760c43823e69e --- /dev/null +++ b/source/parts/detail/m/motor-retainer-slim29-slimline-29mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea94bebe6898a3e6719ff5426fe74a22cdf02bdeccd62ace21d26a59c5d17cd +size 445 diff --git a/source/parts/detail/m/mpc-polystyrene-ps-ring-14173---14961-in.json b/source/parts/detail/m/mpc-polystyrene-ps-ring-14173---14961-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4bd2b629953be4906f754b82bdd1026724dfa342 --- /dev/null +++ b/source/parts/detail/m/mpc-polystyrene-ps-ring-14173---14961-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a15eb0c385618f1f4f24323cf0d9d6cf40df138600253255047217ca330b49c5 +size 431 diff --git a/source/parts/detail/m/mylar-streamer-00000-in.json b/source/parts/detail/m/mylar-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afa13a6c2cb8dc2bdec5e99c7d8da5b8f7912e19 --- /dev/null +++ b/source/parts/detail/m/mylar-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09b316b3fe586f77010be0ec0041ef49ebbd7b94df40186882cb02a3c8ca4a19 +size 321 diff --git a/source/parts/detail/m/mylar-streamer-00010-in.json b/source/parts/detail/m/mylar-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e517eeb94f140ab23e9b4264d5985879665a05cb --- /dev/null +++ b/source/parts/detail/m/mylar-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9002f79c7563d5e082ea670149f66259bcafe91eea9cfdd925421654b7a7d0e3 +size 321 diff --git a/source/parts/detail/n/nautical-4-swvivel-4-marine-swivel.json b/source/parts/detail/n/nautical-4-swvivel-4-marine-swivel.json new file mode 100644 index 0000000000000000000000000000000000000000..99dbe89bc177dba975b99d2f456f59d691d8f65d --- /dev/null +++ b/source/parts/detail/n/nautical-4-swvivel-4-marine-swivel.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f36d4d10ef170ab6bca8da13c9cd27b631e5701d5b8172280dec0224fe36da +size 409 diff --git a/source/parts/detail/n/north-coast-rocketry-paper-ring-28500---29300-in.json b/source/parts/detail/n/north-coast-rocketry-paper-ring-28500---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8c92bed05c1ecb05f3ca8812207fed88693b05a --- /dev/null +++ b/source/parts/detail/n/north-coast-rocketry-paper-ring-28500---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6329eac7be8eecdf38e5684c27b99d62fee88eeef94c657665b27930d45d8716 +size 495 diff --git a/source/parts/detail/n/north-coast-rocketry-paper-ring-38100---39000-in.json b/source/parts/detail/n/north-coast-rocketry-paper-ring-38100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d49aefc6c9efd57564bc928fa926fb6be46de35e --- /dev/null +++ b/source/parts/detail/n/north-coast-rocketry-paper-ring-38100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd2ff84ac2553d7c26fcd1914f8ea64db73f9da1b25d1c7befb152c1d5272c8e +size 495 diff --git a/source/parts/detail/n/north-coast-rocketry-polystyrene-ps-ring-12100---29300-in.json b/source/parts/detail/n/north-coast-rocketry-polystyrene-ps-ring-12100---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3854d5054c1d54869d3f1c62ae91994289943ce8 --- /dev/null +++ b/source/parts/detail/n/north-coast-rocketry-polystyrene-ps-ring-12100---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b4622df63d64356f691620e14286e13be837adc1a863de3b5e1be04aae53e6 +size 531 diff --git a/source/parts/detail/n/nose-weight.json b/source/parts/detail/n/nose-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..bff8e451a4a7c728842f495442b8c9b671b5395f --- /dev/null +++ b/source/parts/detail/n/nose-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43faa45661d368a07ad6a4630bcc0ffcf77c65a43e821d0801a4969372fb090 +size 272 diff --git a/source/parts/detail/n/nosecone-centering-ring-and-u-bo.json b/source/parts/detail/n/nosecone-centering-ring-and-u-bo.json new file mode 100644 index 0000000000000000000000000000000000000000..cb667f9d6bc67e2b7bb2183c461c83b53013e8c3 --- /dev/null +++ b/source/parts/detail/n/nosecone-centering-ring-and-u-bo.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ea98ec25fc974ee657abc8fe217dd31fa12ddc59b61e85b62b3b844bb86b53a +size 357 diff --git a/source/parts/detail/o/ogive-transition.json b/source/parts/detail/o/ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..f8b46aed7bfd585c78e5691db70a79e142011820 --- /dev/null +++ b/source/parts/detail/o/ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358654076c5a04899965e38a86af4a173ed17c70774623021afd1de9ea737ed1 +size 529 diff --git a/source/parts/detail/o/ol-jr--conical-transition.json b/source/parts/detail/o/ol-jr--conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..5ec2666df78277855d0de5de2b0acc0e42acc960 --- /dev/null +++ b/source/parts/detail/o/ol-jr--conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:589ecc322ef60f09c8486213cf31d68a864568ccbba690cf1ecb7c6f2d193858 +size 572 diff --git a/source/parts/detail/o/one-bad-hawk-25-2l-tubular-kevlar-1132-in-x-25-ft-2-loop-harness.json b/source/parts/detail/o/one-bad-hawk-25-2l-tubular-kevlar-1132-in-x-25-ft-2-loop-harness.json new file mode 100644 index 0000000000000000000000000000000000000000..f7c92b2ed3735b01f0b2d6995486a39b1c62234d --- /dev/null +++ b/source/parts/detail/o/one-bad-hawk-25-2l-tubular-kevlar-1132-in-x-25-ft-2-loop-harness.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41bf55898f0122010925fd5144325abf6f20a90f6a9eafcf06250a9e9661683 +size 529 diff --git a/source/parts/detail/o/one-bad-hawk-25-3l-tubular-kevlar-1132-in-x-25-ft-3-loop-harness.json b/source/parts/detail/o/one-bad-hawk-25-3l-tubular-kevlar-1132-in-x-25-ft-3-loop-harness.json new file mode 100644 index 0000000000000000000000000000000000000000..7978c01f3c4ba271520c802b78701d1c1ecfcb25 --- /dev/null +++ b/source/parts/detail/o/one-bad-hawk-25-3l-tubular-kevlar-1132-in-x-25-ft-3-loop-harness.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66e896f33e9b7742a3c4c2ed5d88d4d024c7aebbdb8377feb1c76da24f2742a +size 529 diff --git a/source/parts/detail/o/onebadhawk-003-1132-tubular-kevlar---3-loop-25-ft.json b/source/parts/detail/o/onebadhawk-003-1132-tubular-kevlar---3-loop-25-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..d164e14a1edcbf4b9ba641fce62d3495cd933637 --- /dev/null +++ b/source/parts/detail/o/onebadhawk-003-1132-tubular-kevlar---3-loop-25-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2325852593a834d42ece4332a06ba4ad36f61109fde215a56bbd708e010638 +size 471 diff --git a/source/parts/detail/o/onebadhawk-006-34-tubular-kevlar---3-loop-35-ft.json b/source/parts/detail/o/onebadhawk-006-34-tubular-kevlar---3-loop-35-ft.json new file mode 100644 index 0000000000000000000000000000000000000000..f05045b33025d4d96c79970be40baed96ddc3235 --- /dev/null +++ b/source/parts/detail/o/onebadhawk-006-34-tubular-kevlar---3-loop-35-ft.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdb5c4434b696a34734e666eb78e1787a86c4794aea6ecff070455541210f09 +size 463 diff --git a/source/parts/detail/o/ozark-aerospace-arts2-arts2-flight-computer.json b/source/parts/detail/o/ozark-aerospace-arts2-arts2-flight-computer.json new file mode 100644 index 0000000000000000000000000000000000000000..6a9c819dc8b8c10a2f070280c12969c50744825b --- /dev/null +++ b/source/parts/detail/o/ozark-aerospace-arts2-arts2-flight-computer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82faa8358393ad89b3b4be607dc8ced31a25029e03e1e54415ae14a6bacc0fc1 +size 441 diff --git a/source/parts/detail/o/ozark-arts2-altimeter.json b/source/parts/detail/o/ozark-arts2-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..0edeeed24215aadaa2c15f474ecba544b273463b --- /dev/null +++ b/source/parts/detail/o/ozark-arts2-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c522c79e0456de5b6bfd33441ac961d7550a7676d93633edd48c7f63170ad0 +size 353 diff --git a/source/parts/detail/p/paper-bt-2050-conical-transition.json b/source/parts/detail/p/paper-bt-2050-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..665f2d841d2f292ce27410dd9a3874b24ee3140c --- /dev/null +++ b/source/parts/detail/p/paper-bt-2050-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da83c2b177cac156e98088e56c842427347d4e6b26485ed5a3d3d49d319e079 +size 603 diff --git a/source/parts/detail/p/paper-bt-50mc-conical-transition.json b/source/parts/detail/p/paper-bt-50mc-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..8e5119343f4dd918afc616e32e3476f12d49345e --- /dev/null +++ b/source/parts/detail/p/paper-bt-50mc-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9170464dec2ff749fce3dd44cbd723896207794ff15eea4d57dd6cb29edb5c4f +size 603 diff --git a/source/parts/detail/p/paper-office-ring-07360---15950-in.json b/source/parts/detail/p/paper-office-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..243396f633f896e5993554ce229a5075357780a1 --- /dev/null +++ b/source/parts/detail/p/paper-office-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5373600b25708e699d13322d21393924a699d676f3ca8e000ad33ec78eafebc +size 405 diff --git a/source/parts/detail/p/paper-office-ring-15370---39000-in.json b/source/parts/detail/p/paper-office-ring-15370---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da9e7da36d1d1704ff408b9d9d094d6ab4636e55 --- /dev/null +++ b/source/parts/detail/p/paper-office-ring-15370---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39259f1a714055024ed36b6c3624887021a29487462a832ad5f6d483ba79869c +size 409 diff --git a/source/parts/detail/p/paper-ring-04530---05100-in.json b/source/parts/detail/p/paper-ring-04530---05100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7210871c75eb0b239ee059416a05327658580d65 --- /dev/null +++ b/source/parts/detail/p/paper-ring-04530---05100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88671ebfd36ead7e278f93a169b2b176301a7963dd0d028bbadb037a37235ef7 +size 393 diff --git a/source/parts/detail/p/paper-ring-05500---07100-in.json b/source/parts/detail/p/paper-ring-05500---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90d4029246ebfd0bc50c87a5bf6e6ae4fa0123f2 --- /dev/null +++ b/source/parts/detail/p/paper-ring-05500---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeb7c5beb61451cc69ef43b573604247733daed6ecc4e2a42a2f0c47caeb145b +size 386 diff --git a/source/parts/detail/p/paper-ring-06496---07087-in.json b/source/parts/detail/p/paper-ring-06496---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d4ef3872876d3cdbeabab710339dba03d73f6fad --- /dev/null +++ b/source/parts/detail/p/paper-ring-06496---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55fc48822284a310b51ba60b854d8ed6c53d358a72402bd918997878581a8437 +size 392 diff --git a/source/parts/detail/p/paper-ring-06508---07100-in.json b/source/parts/detail/p/paper-ring-06508---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f824800e708287096b8e8c0e215cedc49743549 --- /dev/null +++ b/source/parts/detail/p/paper-ring-06508---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:099f60f66a385e036d4730847d7a76b24d1040414bbaed25a214c9be0ed54635 +size 373 diff --git a/source/parts/detail/p/paper-ring-06510---07100-in.json b/source/parts/detail/p/paper-ring-06510---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cf08525b07ed60cbfa9365bbab907718a83dc1ac --- /dev/null +++ b/source/parts/detail/p/paper-ring-06510---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d72360879b1a9ec10aff0ec1be990f58432c93145225a2302be018f31c606a70 +size 383 diff --git a/source/parts/detail/p/paper-ring-06900---09500-in.json b/source/parts/detail/p/paper-ring-06900---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1cbb6154d88f132d3cb6258b9ed55a5c75b60195 --- /dev/null +++ b/source/parts/detail/p/paper-ring-06900---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:644ed9fcfdac2771546246ebb594d6c3be518e9a60f50f3a815b6f3609e2ca3b +size 392 diff --git a/source/parts/detail/p/paper-ring-07360---07460-in.json b/source/parts/detail/p/paper-ring-07360---07460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e14c26418ece544b04869d8ae2f3a249cb30c15 --- /dev/null +++ b/source/parts/detail/p/paper-ring-07360---07460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a6a060e68ca94b5970923adb4bac94b036b4acba933a3d29abc9d60f4ede2e +size 383 diff --git a/source/parts/detail/p/paper-ring-07360---12830-in.json b/source/parts/detail/p/paper-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8a0f9a8aa37d91744d4fc21e88faa089fc43ed0 --- /dev/null +++ b/source/parts/detail/p/paper-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fae303c3426b1bea9a2bcdf15cb4d054d9fe1407dc08de19fcab1a164e92429 +size 373 diff --git a/source/parts/detail/p/paper-ring-07360---15900-in.json b/source/parts/detail/p/paper-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76a23154829944eb68240929dbbbffa7503046ad --- /dev/null +++ b/source/parts/detail/p/paper-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ec018e7e64a04056fbf524939e95adc5ff57372504c77094e480997c0677316 +size 381 diff --git a/source/parts/detail/p/paper-ring-07480---09449-in.json b/source/parts/detail/p/paper-ring-07480---09449-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e051386d80d3e9e9ea3e8cdc1ea8df03dc3b061a --- /dev/null +++ b/source/parts/detail/p/paper-ring-07480---09449-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5c715ed362f46af6bcb540017b9b3b41249bd0a8e3ba100e596b0fc4329537 +size 397 diff --git a/source/parts/detail/p/paper-ring-08400---09450-in.json b/source/parts/detail/p/paper-ring-08400---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8453e48de1304b4a075c0c80536356fb858942a --- /dev/null +++ b/source/parts/detail/p/paper-ring-08400---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4978f459d1e7730d06a626219d168a108e8c8c18f1433d4e8c9100f4ff8322 +size 428 diff --git a/source/parts/detail/p/paper-ring-09760---12830-in.json b/source/parts/detail/p/paper-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..96dbfd9f736a1ffabba432d1b9669c60426e6a8b --- /dev/null +++ b/source/parts/detail/p/paper-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0bb3ad9c2e38e93c2c1d07ecc5257c8579c6f8311630452ac1faa3a8b4932df +size 381 diff --git a/source/parts/detail/p/paper-ring-09760---25880-in.json b/source/parts/detail/p/paper-ring-09760---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40784569f1128a95756280b4ee9ffaf44231cc99 --- /dev/null +++ b/source/parts/detail/p/paper-ring-09760---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4919b19bb483c5d3ed5f580a80ddb580de02829f9216d7f0d95332797e2badef +size 373 diff --git a/source/parts/detail/p/paper-ring-14500---15200-in.json b/source/parts/detail/p/paper-ring-14500---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75389c7cd6d96cde57d4c78ecddae41f5d6243df --- /dev/null +++ b/source/parts/detail/p/paper-ring-14500---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec9d709cda60a3bbe0bf9bc2e219017e8438210237d792767fc2e2d0c553aaf0 +size 373 diff --git a/source/parts/detail/p/paper-ring-14764---15949-in.json b/source/parts/detail/p/paper-ring-14764---15949-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d90b102aedfcea08c69769e1adfacc143fe8c42 --- /dev/null +++ b/source/parts/detail/p/paper-ring-14764---15949-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73edeaa1c839a4929edde96867345deb6d28ae695f11b2ce5afa73fe3476c1c6 +size 397 diff --git a/source/parts/detail/p/paper-ring-15240---15920-in.json b/source/parts/detail/p/paper-ring-15240---15920-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31a8fd2a9d2708e13d76a5be40d66963353177cb --- /dev/null +++ b/source/parts/detail/p/paper-ring-15240---15920-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0ee8b26aa005dcbc598c8f451052b7bf507c7e5031caf3af7e0504b4393399c +size 392 diff --git a/source/parts/detail/p/paper-ring-15300---15900-in.json b/source/parts/detail/p/paper-ring-15300---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d0bae539816517a87a46270b18a36e16f3e2f1f --- /dev/null +++ b/source/parts/detail/p/paper-ring-15300---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbe7c3b55624f6b197bc7607b19f4aab7a8459531a1faf565f684e39ea73a997 +size 400 diff --git a/source/parts/detail/p/paper-ring-24700---25880-in.json b/source/parts/detail/p/paper-ring-24700---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a960ff79e9c3308d183b3064e705bbea123cb35 --- /dev/null +++ b/source/parts/detail/p/paper-ring-24700---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6307c6660fca753bf552ef9de57e4b5d74dc10b6d31085191626f91a9a5148c7 +size 410 diff --git a/source/parts/detail/p/paper-ring-27820---29000-in.json b/source/parts/detail/p/paper-ring-27820---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f462235e76e253babdf6a29a07e0a11891e35347 --- /dev/null +++ b/source/parts/detail/p/paper-ring-27820---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d07180c82cd9e3db22b5475273f7518d87ff29206cce9fb3c135e77e01b301d +size 389 diff --git a/source/parts/detail/p/paper-ring-29300---30000-in.json b/source/parts/detail/p/paper-ring-29300---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6367aa2987c43ce8698bb6cff16e7541baf84431 --- /dev/null +++ b/source/parts/detail/p/paper-ring-29300---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88768d87bca11fb03563940728042f3753f0c10470bb9be3909babf67cc69220 +size 387 diff --git a/source/parts/detail/p/paper-ring-37760---39000-in.json b/source/parts/detail/p/paper-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5b2f9708c4990113e6ac8da49e2f242670699277 --- /dev/null +++ b/source/parts/detail/p/paper-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033594aaeba7511c2325b0e52a8838e551e0b1cc9cb4bcd04b293007d67d9487 +size 373 diff --git a/source/parts/detail/p/paper-ring-37900---39000-in.json b/source/parts/detail/p/paper-ring-37900---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9631c9e211fbab0fe23c3379899d545c77c5870 --- /dev/null +++ b/source/parts/detail/p/paper-ring-37900---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21288f15f57bf9a6647af9b4bd8be0fba9913f82dc37dd2a388f07bc0743d055 +size 373 diff --git a/source/parts/detail/p/paper-ring-37980---38840-in.json b/source/parts/detail/p/paper-ring-37980---38840-in.json new file mode 100644 index 0000000000000000000000000000000000000000..21bb223d90d006e87a3edc84ee039e359566290b --- /dev/null +++ b/source/parts/detail/p/paper-ring-37980---38840-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a5efbf879ee04f1e1d44bc2d198f2f02b88ea865d02af64530e2f8f6c0f3409 +size 373 diff --git a/source/parts/detail/p/parabolic-transition.json b/source/parts/detail/p/parabolic-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..8702c4bf8ff2cef4809d89dc9cc0bef58f12073f --- /dev/null +++ b/source/parts/detail/p/parabolic-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3652345bebe6a81c9cdceccfcf5f1d557a2a55867b735da2ed17f94ecf5d5ef2 +size 577 diff --git a/source/parts/detail/p/partmfgmaterialtextureopacity-polystyrene-ps-ring-15500---15900-in.json b/source/parts/detail/p/partmfgmaterialtextureopacity-polystyrene-ps-ring-15500---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b3a5b569b4737d26e308e782baa6dc434754b89 --- /dev/null +++ b/source/parts/detail/p/partmfgmaterialtextureopacity-polystyrene-ps-ring-15500---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:459697653593f78fee637ed3f4040c7944db5041f8ac4ff757a9b587e0e5a3b4 +size 546 diff --git a/source/parts/detail/p/partmfgmaterialtextureopacity.json b/source/parts/detail/p/partmfgmaterialtextureopacity.json new file mode 100644 index 0000000000000000000000000000000000000000..4408a3c23738c17e00a7b8b3775bc711cc76c749 --- /dev/null +++ b/source/parts/detail/p/partmfgmaterialtextureopacity.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3631badcea69ffe221595e2abc06b783566d5231f1ac5e2347c17ffa97f89f +size 351 diff --git a/source/parts/detail/p/partmfgmaterialtextureopacityspecularspecularpowerambientdiffuseabientcolordiffusecolorspecularcolorusesinglecolorcolorsimplecolormodeldbselectonnew-conical-transition.json b/source/parts/detail/p/partmfgmaterialtextureopacityspecularspecularpowerambientdiffuseabientcolordiffusecolorspecularcolorusesinglecolorcolorsimplecolormodeldbselectonnew-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..5836db816d4b39546d135c1fd53100d4958de2ac --- /dev/null +++ b/source/parts/detail/p/partmfgmaterialtextureopacityspecularspecularpowerambientdiffuseabientcolordiffusecolorspecularcolorusesinglecolorcolorsimplecolormodeldbselectonnew-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1fe3029b34e26ac4d91acf7fda3346cb10d4267c3514e37e4552487c2b62274 +size 922 diff --git a/source/parts/detail/p/partmfgmaterialtextureopacityspecularspecularpowerambientdiffuseabientcolordiffusecolorspecularcolorusesinglecolorcolorsimplecolormodeldbselectonnew-ogive-transition.json b/source/parts/detail/p/partmfgmaterialtextureopacityspecularspecularpowerambientdiffuseabientcolordiffusecolorspecularcolorusesinglecolorcolorsimplecolormodeldbselectonnew-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..fb025981601b33bb3520c1e2c6e0078441ccefc8 --- /dev/null +++ b/source/parts/detail/p/partmfgmaterialtextureopacityspecularspecularpowerambientdiffuseabientcolordiffusecolorspecularcolorusesinglecolorcolorsimplecolormodeldbselectonnew-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57faebeb0ca89c879f3642832c41b78434c2e5e411a8fe5286d87e29eaa809a3 +size 901 diff --git a/source/parts/detail/p/pemberton-technologies-14-aircraft-plywood-ring-15000---26250-in.json b/source/parts/detail/p/pemberton-technologies-14-aircraft-plywood-ring-15000---26250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cd8119e34b1831e0f61a4047a6e11e7d8d99c97c --- /dev/null +++ b/source/parts/detail/p/pemberton-technologies-14-aircraft-plywood-ring-15000---26250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b9ededce748b8cbf83d0e66448d9b96c55a89a108911cbe085eb65723e8758 +size 553 diff --git a/source/parts/detail/p/pemberton-technologies-conical-transition.json b/source/parts/detail/p/pemberton-technologies-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..cbdd4ff1af971dcd6a690237a68cee02876291f8 --- /dev/null +++ b/source/parts/detail/p/pemberton-technologies-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56eacc201cb130a299e326f28b0e44410db065bbb3c527aaf92c3530d2546b0 +size 637 diff --git a/source/parts/detail/p/pemberton-technologies-mr-29-motor-retainer-for-29mm-motor-mount.json b/source/parts/detail/p/pemberton-technologies-mr-29-motor-retainer-for-29mm-motor-mount.json new file mode 100644 index 0000000000000000000000000000000000000000..9ad0c4ec0880d19c9e0db1463ae2727dcf37726a --- /dev/null +++ b/source/parts/detail/p/pemberton-technologies-mr-29-motor-retainer-for-29mm-motor-mount.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:397a54a716d9c5f83b02206775de07e6ea34c251efde2cfaa5de6fb26b5f6a6a +size 525 diff --git a/source/parts/detail/p/pemtech-wl-8-0625-wire-lead-eight-inch.json b/source/parts/detail/p/pemtech-wl-8-0625-wire-lead-eight-inch.json new file mode 100644 index 0000000000000000000000000000000000000000..02eccb6a3110bd674491aff74310598ef7e5bf6d --- /dev/null +++ b/source/parts/detail/p/pemtech-wl-8-0625-wire-lead-eight-inch.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1d10d7f6486b14931d82ee8f54d227d7055c1adf01e08bf4f189be516bd358 +size 423 diff --git a/source/parts/detail/p/pemtech.json b/source/parts/detail/p/pemtech.json new file mode 100644 index 0000000000000000000000000000000000000000..88a44725d11e48c3a5e9006dc20acf7a11ff5730 --- /dev/null +++ b/source/parts/detail/p/pemtech.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90257de6d3c6528db29e3963abbeb77427a047c916afe89c4c759a86e0a45d18 +size 257 diff --git a/source/parts/detail/p/perfect-flight-mawd-altimeter.json b/source/parts/detail/p/perfect-flight-mawd-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..137701803e594d92c2e208c5ac91e7b2b5b97201 --- /dev/null +++ b/source/parts/detail/p/perfect-flight-mawd-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:886ffae6d6af70d36d27e2fca11c3aa5ac317d665593c64ccaaeb6ae34475350 +size 385 diff --git a/source/parts/detail/p/perfect-flite-minialt-mini-altimeter.json b/source/parts/detail/p/perfect-flite-minialt-mini-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..7c1fd313ad1f9376876f87a4251308ee2c65e82e --- /dev/null +++ b/source/parts/detail/p/perfect-flite-minialt-mini-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10dc8b2b0ba7e148e7c1e4a0d2cf7e128b10a9391f14cd97cca540cee7619e9c +size 413 diff --git a/source/parts/detail/p/perfectflight--mawd-altimeter.json b/source/parts/detail/p/perfectflight--mawd-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..c5a919a4b0c4bb574dea8720c7aa53e68fa2202b --- /dev/null +++ b/source/parts/detail/p/perfectflight--mawd-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be364d8f0544e239df00853b6908de861402a919517bcdd706d358aba0973866 +size 363 diff --git a/source/parts/detail/p/perfectflight-ha45-altimeter-ha45-altimeter.json b/source/parts/detail/p/perfectflight-ha45-altimeter-ha45-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..d032809e880df61e0902ce49d7150042dc6fe7d8 --- /dev/null +++ b/source/parts/detail/p/perfectflight-ha45-altimeter-ha45-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aa3ba739efeac405f31153e138034f4451e6fe469171f6a50e8e9a8f15e287e +size 441 diff --git a/source/parts/detail/p/perfectflight-mawd-altimeter-mawd-altimeter.json b/source/parts/detail/p/perfectflight-mawd-altimeter-mawd-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..b2ee1f8423fbb7e47bc6176eded622bd11476404 --- /dev/null +++ b/source/parts/detail/p/perfectflight-mawd-altimeter-mawd-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7a14a047d097625d76899257592946909ce1859a93c169bd4eee7df795a58a2 +size 441 diff --git a/source/parts/detail/p/perfectflight-mt3g-timer-mt3g-timer.json b/source/parts/detail/p/perfectflight-mt3g-timer-mt3g-timer.json new file mode 100644 index 0000000000000000000000000000000000000000..675414ba978a10b4342e4363f20fcfc83f5845f0 --- /dev/null +++ b/source/parts/detail/p/perfectflight-mt3g-timer-mt3g-timer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e905c3c65e2c96c37bb54905406a3be4f311cee1b8b475aebbb5066882df40 +size 409 diff --git a/source/parts/detail/p/perfectflight-sl100-stratologger-altimeter.json b/source/parts/detail/p/perfectflight-sl100-stratologger-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..62e7fb63bf664e4c2acc4bf3d79abf04f18d9c16 --- /dev/null +++ b/source/parts/detail/p/perfectflight-sl100-stratologger-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bcee99cdee275af64891496476a5f2bd91738af36ab1c5dc354e7334cc51dd7 +size 437 diff --git a/source/parts/detail/p/perfectflight-slcf-stratologgercf-altimeter.json b/source/parts/detail/p/perfectflight-slcf-stratologgercf-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..693c8635053ee47d40349a48be451366181a90a9 --- /dev/null +++ b/source/parts/detail/p/perfectflight-slcf-stratologgercf-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf77d350a4791fcd7e17d5cb1491ceb9899246393ab211d8afbf49850c74d1f7 +size 441 diff --git a/source/parts/detail/p/perfectflite----altimeter-perfectflite.json b/source/parts/detail/p/perfectflite----altimeter-perfectflite.json new file mode 100644 index 0000000000000000000000000000000000000000..def16b4ac837b111335cb4af5bead6076cbfd664 --- /dev/null +++ b/source/parts/detail/p/perfectflite----altimeter-perfectflite.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dbd702fe40f7c7f75ace5afdaa8dffc3f41866722f19a10f5a69286e4bd7aea +size 423 diff --git a/source/parts/detail/p/perfectflite-1-stratologger-w-9v-battery-and-mounting.json b/source/parts/detail/p/perfectflite-1-stratologger-w-9v-battery-and-mounting.json new file mode 100644 index 0000000000000000000000000000000000000000..86f58ee486e053e972800097b774d3d1ca9b2a7c --- /dev/null +++ b/source/parts/detail/p/perfectflite-1-stratologger-w-9v-battery-and-mounting.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c6cdc5b42db8abbc2a31d5c6262e92ea5585428ca94f50a46f9cd195e78d80 +size 483 diff --git a/source/parts/detail/p/perfectflite-alt15k-standard-size.json b/source/parts/detail/p/perfectflite-alt15k-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..d8f35fa2eb7cb13f42ffbcb0a8b3d923058110d7 --- /dev/null +++ b/source/parts/detail/p/perfectflite-alt15k-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9645f55ab5add87bfdbf253ce90fb8c83c5bc582f51ecc2da0c946f22b5418a9 +size 401 diff --git a/source/parts/detail/p/perfectflite-apra-altimiter.json b/source/parts/detail/p/perfectflite-apra-altimiter.json new file mode 100644 index 0000000000000000000000000000000000000000..4ff2740061fb7281cb6b00806783c5caf70d4cba --- /dev/null +++ b/source/parts/detail/p/perfectflite-apra-altimiter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f7cfa46e2e1e45e7f7209fcd3df5b983724659e287e53e186d0ffe5dc86754e +size 377 diff --git a/source/parts/detail/p/perfectflite-mawd-altimeter.json b/source/parts/detail/p/perfectflite-mawd-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..a49facf21bb26dd160e135b4cc8719025f3118f5 --- /dev/null +++ b/source/parts/detail/p/perfectflite-mawd-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a256a9ff067e0ed2c10d4b391b962b9179fdfaec3ae87a470f50e8aaf9996292 +size 377 diff --git a/source/parts/detail/p/perfectflite-mawd-minialtwd-altimeter.json b/source/parts/detail/p/perfectflite-mawd-minialtwd-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..c4509ebc0956164bf9bc42b60a703242f0d187ea --- /dev/null +++ b/source/parts/detail/p/perfectflite-mawd-minialtwd-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169eeb69c78b9428518cebf2f7b908fa76ce7b8630a5f8c4e74f1e547ffb53d7 +size 419 diff --git a/source/parts/detail/p/perfectflite-sl100-stratologger-altimeter-wdd-275x09x05-wo-batt.json b/source/parts/detail/p/perfectflite-sl100-stratologger-altimeter-wdd-275x09x05-wo-batt.json new file mode 100644 index 0000000000000000000000000000000000000000..046c1e9badc8eb18175970d704aba632f187b4c0 --- /dev/null +++ b/source/parts/detail/p/perfectflite-sl100-stratologger-altimeter-wdd-275x09x05-wo-batt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64d86302979df1924b3e2b6f7ea5c0278edbec6b1d097d5a8e62a9ef943ca9f0 +size 531 diff --git a/source/parts/detail/p/perfectflite.json b/source/parts/detail/p/perfectflite.json new file mode 100644 index 0000000000000000000000000000000000000000..93b94ff519e7504adcbf35d48bb44a24f984d47f --- /dev/null +++ b/source/parts/detail/p/perfectflite.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d501afe6aab0ba101a229c309a8b0554a6593f8ecd042e454eef8cf18a554e +size 282 diff --git a/source/parts/detail/p/perflectflight-hialt45-altimeter.json b/source/parts/detail/p/perflectflight-hialt45-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..847d57922a038847de31e71f086843b3a5f8b2c7 --- /dev/null +++ b/source/parts/detail/p/perflectflight-hialt45-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0200adb1f4f4736022a61554ea2f7cf44f80e4b21adda99ae70cc5b164ec1d4d +size 397 diff --git a/source/parts/detail/p/performance-birch-ring-00000---15200-in.json b/source/parts/detail/p/performance-birch-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d5fa7603eeb0f3002ff90a0da1edff77d5ed7234 --- /dev/null +++ b/source/parts/detail/p/performance-birch-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6e45b6e8b7fbc17b88a26759b1646a4d15638db734f045f6fd0ca23e570da2 +size 470 diff --git a/source/parts/detail/p/performance-birch-ring-00000---34950-in.json b/source/parts/detail/p/performance-birch-ring-00000---34950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df08a65bdce58144004fc16b4a525d55e4e073eb --- /dev/null +++ b/source/parts/detail/p/performance-birch-ring-00000---34950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b939945854432780c067e02078f319dcf606a967d6e67786e750e477bd73cf3d +size 478 diff --git a/source/parts/detail/p/performance-bulkhead-35.json b/source/parts/detail/p/performance-bulkhead-35.json new file mode 100644 index 0000000000000000000000000000000000000000..2429a0a3919f841881d9db4bc8ee3f9c7c3616a3 --- /dev/null +++ b/source/parts/detail/p/performance-bulkhead-35.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ae6c22de9fb80d38197b9822f216e326f7f759ba3ee9e5cae197bb1e69364f +size 363 diff --git a/source/parts/detail/p/performance-carbon-fiber-ring-00000---15200-in.json b/source/parts/detail/p/performance-carbon-fiber-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74038b5099131874775088ebafdd7ab1b1f6a883 --- /dev/null +++ b/source/parts/detail/p/performance-carbon-fiber-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa39d5f4d12e52f632332bf1a5c70f528b5e6339e6b0dd237258cf3e47fadae +size 491 diff --git a/source/parts/detail/p/performance-custom-ring-22710---25000-in.json b/source/parts/detail/p/performance-custom-ring-22710---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..56f81cdd984b1729a5326f5fa25670fbfb6f46c4 --- /dev/null +++ b/source/parts/detail/p/performance-custom-ring-22710---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0fc7c39a1ce5117ce11b1340208264b41f222704ea5df2eab974597cd6e9c56 +size 471 diff --git a/source/parts/detail/p/performance-g10-fiberglass-ring-20200---21500-in.json b/source/parts/detail/p/performance-g10-fiberglass-ring-20200---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efcc60429e5a414b15b71a92ba7a57752336e75c --- /dev/null +++ b/source/parts/detail/p/performance-g10-fiberglass-ring-20200---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd365fc9459e40973c7962faa9a7c4e6c564181b3dfab9aa7821d8a60491f1f +size 497 diff --git a/source/parts/detail/p/performance-g10-fiberglass-ring-21260---34950-in.json b/source/parts/detail/p/performance-g10-fiberglass-ring-21260---34950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a22d133b3c0f04ae43f1a9b003491673360b615f --- /dev/null +++ b/source/parts/detail/p/performance-g10-fiberglass-ring-21260---34950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1efa26ccb5ea8e7dcb7262cd89beaed74c129b050243dee994e8406b9a6a51d +size 463 diff --git a/source/parts/detail/p/performance-rocketry--ring-47244---49606-in.json b/source/parts/detail/p/performance-rocketry--ring-47244---49606-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c32026c480e7802cbde87d9520e90e4ae0ffc31d --- /dev/null +++ b/source/parts/detail/p/performance-rocketry--ring-47244---49606-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d59d5f5cdb43277284f356473bc200bac7b3db75a017a6cc9de1cf02dbd27839 +size 471 diff --git a/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-00000---20000-in.json b/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c560a8c971614a9d25eadd991f3b82d454e1f3b7 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e27aef5240f2229102e2eabb4efaf43ab5ad2afb999070784859f0a8fc16aba5 +size 561 diff --git a/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-00000---21520-in.json b/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cadd59243e9f2917bb6dfa239d65e2e6d04a0509 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df29bd1b7ef75dfbc04da7b8f16db9717af8a97bc767962f3f131abacd4a87a +size 561 diff --git a/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-16450---21520-in.json b/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-16450---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c89538e107a7d8f07c9378668566554abeedde20 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-14-aircraft-plywood-ring-16450---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86eac96ce9eefc5a1bb5eadb175ba1c110021ae5068a5117f5029aaad95e0b5a +size 566 diff --git a/source/parts/detail/p/performance-rocketry-aircraft-plywood-birch-ring-16450---21520-in.json b/source/parts/detail/p/performance-rocketry-aircraft-plywood-birch-ring-16450---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a09a1afd5aa6131630e40731a8a614f8d890be82 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-aircraft-plywood-birch-ring-16450---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b2eb02610cc05ea48c98ad3c3fc0762fc75a92960262a4f174cb605db882d4 +size 576 diff --git a/source/parts/detail/p/performance-rocketry-birch-ring-00000---39000-in.json b/source/parts/detail/p/performance-rocketry-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e463f6395daa640446d0c129505b674cc59abe5e --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76871fefac014e57c57a266f284fc4f7268eea258df69fae22cc0f8f1f403e9 +size 520 diff --git a/source/parts/detail/p/performance-rocketry-carbon-fiber-ring-07500---09430-in.json b/source/parts/detail/p/performance-rocketry-carbon-fiber-ring-07500---09430-in.json new file mode 100644 index 0000000000000000000000000000000000000000..794b7c9c4d9d5fc2d3feadb0e564d32dfd2a4af4 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-carbon-fiber-ring-07500---09430-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e33cce9ac8d21227c80edc9e10e8fe10820358fc94ba95e791efba61e945400 +size 549 diff --git a/source/parts/detail/p/performance-rocketry-conical-transition.json b/source/parts/detail/p/performance-rocketry-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..e53ac965ab4aba8e6904276737eeda374928f967 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:403c91648435c996e5fe433e848501265de6edc5ea6c83f15f6ebaa11e462f71 +size 671 diff --git a/source/parts/detail/p/performance-rocketry-fiberglass-ring-41250---60000-in.json b/source/parts/detail/p/performance-rocketry-fiberglass-ring-41250---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9e678e9176de6f5a0897f1aff176c0e44cc8d7d --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-fiberglass-ring-41250---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deb18200ebdecba0638ce3b078d56816392dd239dea720f8b4251c946019cc43 +size 538 diff --git a/source/parts/detail/p/performance-rocketry-fiberglass-ring-58300---60000-in.json b/source/parts/detail/p/performance-rocketry-fiberglass-ring-58300---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed5b0a1e5efb01bac680a64ce48b464cc50387c6 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-fiberglass-ring-58300---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b9b1fe610322c3bc328c3ce26e35f4fa6b00b3004ed2421cc2c7425454fc2dd +size 547 diff --git a/source/parts/detail/p/performance-rocketry-fwfg-ring-13750---15000-in.json b/source/parts/detail/p/performance-rocketry-fwfg-ring-13750---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..38df65ea7efb10416fdde3ba7c72bead22445910 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-fwfg-ring-13750---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1a3204b9be0552ce8bff9ebfdf92a120613cba01b78884a7ca00871dd66a260 +size 469 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---20000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ffe5352e3b098c7bf99cd145a994c9d470e8001 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b735116f4b0907358d84002385d5139e04915a8fa68e69e83c3dc107ed94036 +size 545 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---21520-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55ffbaaf6b288bd1fff0ab458bb7145e9760c95e --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609c47264bcc11d7d88f11238fe05e7649d4287c524dd22deaeb38bc78aebc27 +size 545 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---34950-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---34950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cff9c8522dbcfe55687682702a70c27d46b3eabd --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---34950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14bc5751d9a90de524d7d6591cf969950f697120f03c974cc0f461db9195290d +size 499 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---37750-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---37750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..908d57dde1412c35636e70f9088dc92b8cde15f0 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---37750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b7bb2c2e4f522923199d977c458b8a1c0262ea6f92c908cfd9163580f43ed8e +size 545 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---39000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33986c5e9964c6c14f6a6e0bcd45a496dbd5d2a9 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c0f3786362502dc7ff3432e4f06c619fa74ff545f377c12ed130357b0a9679f +size 566 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---47240-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---47240-in.json new file mode 100644 index 0000000000000000000000000000000000000000..734240b7e8054b376115d0f47b572c57ebd8a1b6 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---47240-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f450242bd7affeef77abe6b19f1f7072cf488d018fc9fa0186c72ca3303d5dde +size 531 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---48500-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---48500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b7f2a302c83e81e2c26f6dbaa06408fa7c359d5d --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---48500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced4266c800d09fdd62028e8af21cea18fb3f821479a61c8162becb0a1d968ff +size 545 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---49606-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---49606-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f0ca4354eedb02b507550f517a89486501d5664f --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---49606-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d4f4231f6df61ab6655708bf678419634916d64c875273d37da5b961a13c85a +size 527 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---50000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a75ceae611f783253ddf3c4f05f21f19761fc20d --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e0996f47827bc41f0e2df7ab855d24e237bd3e946761a9453f100a6261b7e1 +size 529 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---78120-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---78120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e8b40b1cafbf3951e7a107c3ccccc3b24144779 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---78120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81964791ef915f18c1067496ad60d67a1d2888f18c23acdc78ce1b6fdc50a86 +size 547 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---80000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..853d52ca9841956550c6a8343416583fa6984890 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-00000---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72255a5dd1308bad86f7cb30b115551dfbbf3b91a392f4fe7270a4fa7ba10078 +size 527 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-02500---34000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-02500---34000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c16d5cc12e5aa25fa8b30c9fa36b41ae7e5f384 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-02500---34000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6bb4a37b84b2c1d3aed6fee69b5fecfc4d55484c2a938cedcdccc2affd8837 +size 545 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-02500---37750-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-02500---37750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..83cca76bab0af2a524cb7079bc0d07d4ca3b2083 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-02500---37750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d45348ed2278f59fd990bed0e4731e83ecbbbb486625c9fe8c02c31773ecbc9 +size 545 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-111500---114000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-111500---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..118600e517f7ef2350c0708e128eac0036903143 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-111500---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380708f62ad94f6fbc350d14ed44f331f61326d01bb5d864d38baf3b3886871b +size 550 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-12550---21520-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-12550---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a31143a3dcb5aee1b597b9eadf1468e035b8471 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-12550---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b5fa2f1a629f3b523bbbeb932993c637f78da608eee68342e07e9a19bbe2212 +size 550 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16450---21520-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16450---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..327199b77d5dba1acd326c853f9afa17bf5d40ac --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16450---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2acb9304be021713db4ea875a0d0a2c642dd724001a3ba4772644feb98f8eb9 +size 550 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16450---30000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16450---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..423b227ee260ddfe3d7a93a7b69698f9832059f9 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16450---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6144857fe72d8c39ef91369f86c62390b6ae4b55fd3b10d11e6f3180eb35914c +size 550 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16500---21500-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16500---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..49ca2bc3ec9ae9f64cee5b8d907178f8b8492ca3 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-16500---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:850537b71f0b3b6c07462dbc15e72b258d2c2fcb2346c54a60e67e60793d7909 +size 541 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-20000---21500-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-20000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2dfc6b948196ef8a0aa44c2b4584973b9bdf9b1d --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-20000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe598fd61babd728fcda656e91590f36e8c40232e623954aad26720aa7c849f0 +size 559 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-20000---21520-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-20000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45d7c756f9e8a23f0a1d6d830dd5c518469aab46 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-20000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ccf1abd7a14460047ae9f61450873be9f2cd55094d7287518ee1fc25906cb1c +size 544 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-21260---21299-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-21260---21299-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a3a20abbb7c7d4150032a944aea76c53019e6b2 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-21260---21299-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b2f5e29a562a9911c2f2b008ab6a3f71e73a86dd0884284731138f1af9916b +size 499 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-21654---34950-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-21654---34950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..010aa445dc905922f31cadd62b0a3940618169a7 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-21654---34950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cf50cebbed376726d0ca6063faecc9aa1b5110d689b787e0b287e5401a2ba55 +size 499 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22500---50000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22500---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d96098d3012c717e35792909f13378766ab2043 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22500---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8e15640b705eeeed295edbd931571123998ca612af66ccca7f967097ff38a85 +size 529 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22770---39000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22770---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4c3b2f403f801117fae67e5191043ac6ab3a1fdc --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22770---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f986b8e23b7d9f10d49bf50379397089cb1bfbd824b5b05e3798514e63c87b4 +size 554 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22770---50000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22770---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d31f99a54e1ec5a29123ce58c2e8e888858d593d --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-22770---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457e9b66b01cd4ab3d43104a097a2c89b062bacb041fec47383b48edb68b1b9b +size 550 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-28750---29980-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-28750---29980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc5ddf2681be419c5124ba8be5229a36924c00ef --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-28750---29980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4613d8c793d36386a2f600f7e6593dd1da68730a09b036f96be72eb4552f04 +size 559 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-28750---34950-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-28750---34950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f20218dca6e90b576b2606bcd0af15bf52bc3c05 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-28750---34950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64e81238980da7e709f9d0dfeafd2dc4a9c4baf9e5d1c2570beb7c59a88ab3d +size 499 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-29921---39000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-29921---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2205fff365f9f2311a1a02b947934eb120a15c61 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-29921---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28aa60ae1987ce1d7913ae9edff3343223aea24776ea732a5a0a95787804de06 +size 549 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-31250---39000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-31250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31cdb9fade58fddb7ff1a6aa639a0f81323461b9 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-31250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f71ccecdf7cf6102950e3b7b79dc6d7d722867879daca55140e88613c2245f1 +size 541 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-31250---80000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-31250---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4047846ef68acf4d19cad279a9088a21f15306e0 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-31250---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc8cf294251b6cfb911cf2a6cc66de4fd8c2cdec1f6e5b7797edb580c99b2fb1 +size 550 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37050---38980-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37050---38980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efe9aba5c97e1ecc3bd97ba4c8d0a4360b4060c7 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37050---38980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67275df9fc012c446ff4264a28703601a8aac5d21c010b508d4b1a437d052d9c +size 548 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37500---38900-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37500---38900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd109f78d88b7b7a9dc1c293f7b0d6b589488368 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37500---38900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55cc2155a3cd2928fda95570e975f8771df0aa96a4d9215c82a11080a4515da9 +size 499 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37550---38980-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37550---38980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2c9331aa1219498ba1993ceab193c504f1d63843 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37550---38980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5ad4e71a498e04721d3831a551ae91c26734747d3ed66499b0f1a613e67f58 +size 564 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37550---39000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37550---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a0d4f5013debe9b44fc1be3b85183f432f9863b --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-37550---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88b43befbf47df603b81221a56bbeb49712dbd94d418a34d686c37afc06909d7 +size 543 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-38976---80000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-38976---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..290ab09ebaea07a0385e946ba9121f37e7231b4f --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-38976---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90e0f3e2d2aaa3c38e0a72f166381ef94c005a86773bc0ca7a22aa5d82d3574e +size 550 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-40000---49606-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-40000---49606-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ea565bbecbd1ee7c10ebc1bbc4ece933c55a15d --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-40000---49606-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b4cfeab4a4fabaa6a4b8ed85c729ac207f8fe46f27353c7ea2b63bb34f656d9 +size 529 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-40000---50000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-40000---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ffb915a8ba784a3cc63ab7e403b2f4a07b089822 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-40000---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b916d1a73d4c80a691826290ccdb6e8930b5d6bf1fced11de6daf0f8166ba474 +size 550 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-48150---49980-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-48150---49980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4788b977a2c9a87afb702fdc67c26334c4e1d7d6 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-48150---49980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40bf40701f163eaeedce604452c1b0a8c4f668851c9284fd02be4a3b2ba8e10e +size 559 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-78150---79980-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-78150---79980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00d6d1acfa51ab668851ed22aa2a45b6f1aa0cdd --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-78150---79980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb141963a3d4a3c2943f2408e5b1124223cb114caf63d2c4f1b2903efdf3dca6 +size 559 diff --git a/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-78150---80000-in.json b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-78150---80000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a610e722749cfc291d889d8fb569a8643e7e51d7 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g10-fiberglass-ring-78150---80000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02fc6545db9547c293b38cc695072ddd32bd16cec94706e9cd798e54d938eeef +size 559 diff --git a/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21350-in.json b/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21350-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a0ad4df21204926308e319c893d092a69b5c1366 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21350-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bae86b54d013f29369dcb13ce966da0371ca5c66ace2056cd4053d2369e2bac +size 559 diff --git a/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21500-in.json b/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1968753fdb5b890caef1057c0f8b721667a6dfe0 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e880120a065e0fbb1774b09e008998010850cda198593df1eb15a0fbc5b11f45 +size 559 diff --git a/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21520-in.json b/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c389858490ce5cc34cf078d6f5e55df765ed4a3 --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-g12-fiberglass-ring-20000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a05329a0c92a36c3505435527d5bde01dae9141dd5bfafb35ec823739bc419ce +size 559 diff --git a/source/parts/detail/p/performance-rocketry-ogive-transition.json b/source/parts/detail/p/performance-rocketry-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..86fe8e68b35dd35c140814cfc41ee15ca76e889f --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac65af70bb44d717f070ae14a430f1116baa47d0a51c71d2d69c5707e65c1f4c +size 621 diff --git a/source/parts/detail/p/performance-rocketry-paper-ring-23750---25580-in.json b/source/parts/detail/p/performance-rocketry-paper-ring-23750---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e9030e303400d90c6bfdd699c3e142de452e348e --- /dev/null +++ b/source/parts/detail/p/performance-rocketry-paper-ring-23750---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6b1cebfad9a60a02d026383f4121299ddf99e9b91e012b543d6f3a43762465 +size 472 diff --git a/source/parts/detail/p/performance-rocktry-g10-fiberglass-ring-00000---37550-in.json b/source/parts/detail/p/performance-rocktry-g10-fiberglass-ring-00000---37550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dd3bafff6ba46af816cb664237cc80104dc96ee7 --- /dev/null +++ b/source/parts/detail/p/performance-rocktry-g10-fiberglass-ring-00000---37550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a16f1246054aa549984fad97b841fa19450dcfa79d3c29197f7bfe5c97e06c +size 523 diff --git a/source/parts/detail/p/performance-rocktry-g10-fiberglass-ring-37750---39000-in.json b/source/parts/detail/p/performance-rocktry-g10-fiberglass-ring-37750---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9a52f884d67554d0a6817c830706ba4544c8fa4 --- /dev/null +++ b/source/parts/detail/p/performance-rocktry-g10-fiberglass-ring-37750---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63518ca7fff0316d8a0b7d432ecc8b07ae1898b76a3e0f38b2a8def28879c273 +size 523 diff --git a/source/parts/detail/p/performance-rocktry-kraft-phenolic-ring-33980---37550-in.json b/source/parts/detail/p/performance-rocktry-kraft-phenolic-ring-33980---37550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e54e2a2fa7b3f11b5880b624010ca6cece1e057 --- /dev/null +++ b/source/parts/detail/p/performance-rocktry-kraft-phenolic-ring-33980---37550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea1811352e1a6f38fdea04f30f9399fb2889d33774f01032fae3483d7ca43fd +size 523 diff --git a/source/parts/detail/p/pico-p1-p1-altimeter.json b/source/parts/detail/p/pico-p1-p1-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..d73addafc312240e0f8990a4e9c2a37856a1655a --- /dev/null +++ b/source/parts/detail/p/pico-p1-p1-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e7bbd789b6d2c5d7b200d2b8186935085ed0a5e1f6e98c61cd35ad4e03a51db +size 349 diff --git a/source/parts/detail/p/pine-ring-15354---39000-in.json b/source/parts/detail/p/pine-ring-15354---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bb09f02adb68439044c528105fb5f76e94ddb0a --- /dev/null +++ b/source/parts/detail/p/pine-ring-15354---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9189845390b5d9fbb16db41615c86fc3e3e8b9e1cb25348c559178223df598d +size 369 diff --git a/source/parts/detail/p/pine-ring-16250---39000-in.json b/source/parts/detail/p/pine-ring-16250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a94108ef26f6868229838ac4e36685559ecd0975 --- /dev/null +++ b/source/parts/detail/p/pine-ring-16250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fbc41e5e1437fc3d53a3c96233a1d8209ba3ea1f82e1eb7d40ff8106d198950 +size 369 diff --git a/source/parts/detail/p/plywood-birch-ring-00000---29000-in.json b/source/parts/detail/p/plywood-birch-ring-00000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f83dd481dc1ab6082b4bf56b8d3bcd33c1aedc8d --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-00000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be30d6c5630043b9299d217eb739ae58e9cee20121f7c1bde53057cb6f52519 +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-00000---38840-in.json b/source/parts/detail/p/plywood-birch-ring-00000---38840-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18abfa620a2395e30b29f7bc60fe2bf7b165d688 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-00000---38840-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9e4613ff42db0188d4120a02c27803fd23ac27419de0b73d93ed0f20b73419 +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-10000---25580-in.json b/source/parts/detail/p/plywood-birch-ring-10000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..46d9d4b5713628de526745071619fdfc557d5ca3 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-10000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c15e1570390edb85782550eb9a26d926c83eb89e96b446175aff562e0c770cb +size 426 diff --git a/source/parts/detail/p/plywood-birch-ring-11400---38000-in.json b/source/parts/detail/p/plywood-birch-ring-11400---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2698b887a90cd68a0fc4675e47558dc28533b8ef --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-11400---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a2e0b4829d4130c42572ec93a209a2d482041c64a024e6e030aa4735da4a172 +size 415 diff --git a/source/parts/detail/p/plywood-birch-ring-12000---24425-in.json b/source/parts/detail/p/plywood-birch-ring-12000---24425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dc623be0ebe42d1d9446282f1f71c647e415aa34 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-12000---24425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcb1fd3b2a49b1270b9f2a0440a05f3fc03fe9316edcaf569c2df9d2d704d517 +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-12100---29300-in.json b/source/parts/detail/p/plywood-birch-ring-12100---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3387b0ac67c9566878e631f90c7dd2b808c42499 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-12100---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0628ef311567c65674862ceb4b121f6f5f1b09c60392f2c3c0b8b973ba55b642 +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-12500---25600-in.json b/source/parts/detail/p/plywood-birch-ring-12500---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..51e751621aaeff5823f6d483c5d99fa2f7181730 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-12500---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15b45d2d115fd999cf216f6bbed8fdaf945beef5049a29a3023d324a53a99527 +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-12598---20368-in.json b/source/parts/detail/p/plywood-birch-ring-12598---20368-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85af11bf86d3b841338aec3c2d8ca92451ceea2b --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-12598---20368-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b3805d918406087f224ebc97ad629d8d04bcf73ba796f4c53f789d466e7268 +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-12598---25580-in.json b/source/parts/detail/p/plywood-birch-ring-12598---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..334e8b0aaf8f3f8cca973ee9ffdcbe87e30e1b12 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-12598---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6933a05caf86dc80a5797b9bfa6d6af9d66ec952fd4246f23b78adc9d867e81b +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-13750---39750-in.json b/source/parts/detail/p/plywood-birch-ring-13750---39750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a3ecf5728e3fdb1da2409723155eef3a26e50ec --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-13750---39750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b86d93708c7ab33e49acd713822732de2cc022b1e0981aedd0808bb1b37219 +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-15150---29880-in.json b/source/parts/detail/p/plywood-birch-ring-15150---29880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78de3cb3f0677ba632b59e6544841a4ab46df100 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-15150---29880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c33f4e2c51f8a0c387ccf80082f545c4e41edf5fabd810710c04b53a7d0105d2 +size 415 diff --git a/source/parts/detail/p/plywood-birch-ring-15150---33425-in.json b/source/parts/detail/p/plywood-birch-ring-15150---33425-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb49d92379d1c262499542bf25a2071037846852 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-15150---33425-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:218d062d3660d68c0d59c74c15b34824060f45b2c9b6ef3aef5738d985f2e78b +size 415 diff --git a/source/parts/detail/p/plywood-birch-ring-16250---39750-in.json b/source/parts/detail/p/plywood-birch-ring-16250---39750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9968aa46e1fe8811dbbc1b7ba4aab1082feccd8b --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-16250---39750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18755d57e4d4185bda60eb7eff12306bfa8f6d40a5f77aee2c28211f0682436f +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-22660---38940-in.json b/source/parts/detail/p/plywood-birch-ring-22660---38940-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2e385f969f6eb17eb7faff5a82a7891dcf4f1f3 --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-22660---38940-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c00861bb5f4c91cc115900391660267f44ff31f7a236d4720458a9a695d0377 +size 409 diff --git a/source/parts/detail/p/plywood-birch-ring-22760---30020-in.json b/source/parts/detail/p/plywood-birch-ring-22760---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67a3c8c4474bddf7b6d2ab14facba437c16903da --- /dev/null +++ b/source/parts/detail/p/plywood-birch-ring-22760---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d0a28370095d106f714a779befab3f03dc3bcf15a5e577be17a68e358bcb866 +size 409 diff --git a/source/parts/detail/p/pml-cr-20-7554mm-birch-ring-31000---75120-in.json b/source/parts/detail/p/pml-cr-20-7554mm-birch-ring-31000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..22fadc2e776e09104a414b001bdda0279debe7f6 --- /dev/null +++ b/source/parts/detail/p/pml-cr-20-7554mm-birch-ring-31000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc33e45a594876a7ec0626706341187271449ef2379b060bb9fdd9b72dfa96c +size 500 diff --git a/source/parts/detail/p/pml-ct-215-coupler-tube-kraft-phenolic-ring-20280---21520-in.json b/source/parts/detail/p/pml-ct-215-coupler-tube-kraft-phenolic-ring-20280---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c50ef1d6a53f9cf77a561859631a16b990f01cbd --- /dev/null +++ b/source/parts/detail/p/pml-ct-215-coupler-tube-kraft-phenolic-ring-20280---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0439ecf3336cc7c3b7c2df45fa621db5228e48a673e96f6b1caa45be4ae4d395 +size 513 diff --git a/source/parts/detail/p/pml-custom-avionics-bay-for-nose-cone.json b/source/parts/detail/p/pml-custom-avionics-bay-for-nose-cone.json new file mode 100644 index 0000000000000000000000000000000000000000..936d2e30f80ebe2e0f481dacb8488bee7a68ef39 --- /dev/null +++ b/source/parts/detail/p/pml-custom-avionics-bay-for-nose-cone.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e6097f78febfb5a8c4bc4073073a888cfc0b8336a6bde80f6ebf7148b1b90a6 +size 417 diff --git a/source/parts/detail/p/pml-ogive-transition.json b/source/parts/detail/p/pml-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..b0b1db1d1bf764c59bac45dd30eaefdd0cd7d65e --- /dev/null +++ b/source/parts/detail/p/pml-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3053586becf32c1eca47faa2b250a9fa9644f0527826a1c069a893a6edccece +size 553 diff --git a/source/parts/detail/p/polecat-aerospace--u-bolt-assembly.json b/source/parts/detail/p/polecat-aerospace--u-bolt-assembly.json new file mode 100644 index 0000000000000000000000000000000000000000..8af9ade9916a123394d73cad99fef9576672a143 --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace--u-bolt-assembly.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b17ba91696098a6ed3acb38d12bb83adf57e8b2b4d48dfdcdfb2c9ac8d5c9155 +size 383 diff --git a/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-00000---53750-in.json b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-00000---53750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0aaeb9cc1bfcdaf9b7062334247d4d29f40ad529 --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-00000---53750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca9e4c34b35db7b26f3b67b148c3d6d3a1f79dc93220e441d4006e6407d9f8c7 +size 547 diff --git a/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-00000---73900-in.json b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-00000---73900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..34f900f3caf07307fa4114c6f6cd8ecc36184f91 --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-00000---73900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81758f65154da46af74f1994bab3a80429a93e3bc4cc06acd873a12f3356ea09 +size 549 diff --git a/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-22500---38930-in.json b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-22500---38930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f663788f6c041bde5f0b53cc1dcefa2cde6dbb4c --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-22500---38930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c6197d24a2c620491a15a5f609ff7bc55a6917c527557bf8cd2b7ba18ba107c +size 503 diff --git a/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-22600---53500-in.json b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-22600---53500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bcb9668f57e5a4fd4892a046226acf04a7238c66 --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-22600---53500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d525e8675c5a382b01685a98aedf787728ec06c3f796a5ac2229b02b317db4 +size 491 diff --git a/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-31800---53800-in.json b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-31800---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66cb96ae92c34cc30ca2a103863653295400366e --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-31800---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9869457d8d11804b6804f6ef907a892cff8cd2a8a8dc8ff0f855c52727bce31 +size 559 diff --git a/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-31800---75100-in.json b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-31800---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c36a23122be43f8330d3651766c2c4365ce13d88 --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace-aircraft-plywood-birch-ring-31800---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2622f11829302738907e17ab41338a162e7023eda7a3665ddcff1c4fb2f93a26 +size 559 diff --git a/source/parts/detail/p/polecat-aerospace-conical-transition.json b/source/parts/detail/p/polecat-aerospace-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..f4363dcfb2fe50a934d29ec546e482d9bb8fc327 --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f709f0e24db6ca05716d1ee7eef3cc6983de1aae11e5a5713e8780f51b02de03 +size 617 diff --git a/source/parts/detail/p/polecat-aerospace-paper-ring-74100---75100-in.json b/source/parts/detail/p/polecat-aerospace-paper-ring-74100---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39839318cc182a00b9ea07ebe5757961133c0d72 --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace-paper-ring-74100---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42ac4cf3306aedd801cdf9b9ca309df3b71bc4e4f6107e07dafcec3b76e171d3 +size 496 diff --git a/source/parts/detail/p/polecat-aerospace.json b/source/parts/detail/p/polecat-aerospace.json new file mode 100644 index 0000000000000000000000000000000000000000..928bf84b9eeab8d8e9ad321b0242f9d6e0639b7b --- /dev/null +++ b/source/parts/detail/p/polecat-aerospace.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0630b20d9fc186df06543b52904a85ccd9aceeba673e91c8b160fc455a76581c +size 302 diff --git a/source/parts/detail/p/poleccat-aircraft-plywood-birch-ring-22500---38930-in.json b/source/parts/detail/p/poleccat-aircraft-plywood-birch-ring-22500---38930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4d81caf0e165a156d0a13fbff8dd79af0318cf2e --- /dev/null +++ b/source/parts/detail/p/poleccat-aircraft-plywood-birch-ring-22500---38930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:341e2ff57d9132c2ac1d4881d21b99070cadcca475dd5c8a63b10b7ac85fcb55 +size 477 diff --git a/source/parts/detail/p/poleccat-aircraft-plywood-birch-ring-22600---53500-in.json b/source/parts/detail/p/poleccat-aircraft-plywood-birch-ring-22600---53500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a08853522478767c21fd5c5728d9e732a0b85184 --- /dev/null +++ b/source/parts/detail/p/poleccat-aircraft-plywood-birch-ring-22600---53500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cddc4b6702f3e48bd9ed7e9059723984dac95dbfceed8874e5574d0c617dffdf +size 454 diff --git a/source/parts/detail/p/polystyrene-ps-ring-00000---25880-in.json b/source/parts/detail/p/polystyrene-ps-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..154fdda97ee2155078597ba1c3cdee13166acd7b --- /dev/null +++ b/source/parts/detail/p/polystyrene-ps-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6117bfcaeeb2bddf54ba3238ee7b0ffa2d777dee4c293fcb2d20958e93b713c +size 437 diff --git a/source/parts/detail/p/polystyrene-ps-ring-09110---09358-in.json b/source/parts/detail/p/polystyrene-ps-ring-09110---09358-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7c9ff9e7cf77479ba7a1ef7af5de150fabc73439 --- /dev/null +++ b/source/parts/detail/p/polystyrene-ps-ring-09110---09358-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3b3c4baf5e3d4e9923ce3dec569367a82b65733954eb9a8d4f1647c9b9786a8 +size 409 diff --git a/source/parts/detail/p/polystyrene-ps-ring-12100---16250-in.json b/source/parts/detail/p/polystyrene-ps-ring-12100---16250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e6a62b29865f9855d21e98315e3b3b41d67ea59 --- /dev/null +++ b/source/parts/detail/p/polystyrene-ps-ring-12100---16250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dce4f61449e175558fbf496ff0c20d2007aba0f2342e7c31ddf3d83c99dc818 +size 427 diff --git a/source/parts/detail/p/polystyrene-ps-ring-12100---19500-in.json b/source/parts/detail/p/polystyrene-ps-ring-12100---19500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f8ff94b54ac2bd73b07d623f5df04b108314744e --- /dev/null +++ b/source/parts/detail/p/polystyrene-ps-ring-12100---19500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb496dc023801ab67cbe51d0933ec4094eac0eb6a620be71bcc75e210d8eb9c3 +size 427 diff --git a/source/parts/detail/p/polystyrene-ps-ring-13750---15900-in.json b/source/parts/detail/p/polystyrene-ps-ring-13750---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a62b4191a48963fbca5007e6e3e3bff47f6b521b --- /dev/null +++ b/source/parts/detail/p/polystyrene-ps-ring-13750---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9986c88d06f435b4fc5b4d67e4d1ecc9a157445cedca13b2cd9d5547eb354f77 +size 412 diff --git a/source/parts/detail/p/powerex-battery-1.json b/source/parts/detail/p/powerex-battery-1.json new file mode 100644 index 0000000000000000000000000000000000000000..0925e155be49a73380a94ff42d8bb5d98d3c7ce0 --- /dev/null +++ b/source/parts/detail/p/powerex-battery-1.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a096bae661b7592f7e4ecbfc18a046985dd04c8b727659e1106d803b6e7c220 +size 321 diff --git a/source/parts/detail/p/powerex-battery-2.json b/source/parts/detail/p/powerex-battery-2.json new file mode 100644 index 0000000000000000000000000000000000000000..a4b31b03e47eb8b8752f43124a42588ef4352634 --- /dev/null +++ b/source/parts/detail/p/powerex-battery-2.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f22794ac3477a67fe04dcaf8f91cb3a32dd1fc2a2a687cd650b4d1734ff3d1 +size 321 diff --git a/source/parts/detail/p/pr-carbon-fiber-ring-00000---39000-in.json b/source/parts/detail/p/pr-carbon-fiber-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0d13dffc77b675db119908afd282622547dc4957 --- /dev/null +++ b/source/parts/detail/p/pr-carbon-fiber-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:008d2c327af3e288e0bd5edd25a62dbb3600fcaaa66353a89ac35a2292e2ad65 +size 453 diff --git a/source/parts/detail/p/pr-carbon-fiber-ring-37362---39000-in.json b/source/parts/detail/p/pr-carbon-fiber-ring-37362---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..febc8b166ced408ba85afb29f870d57307d4d7a1 --- /dev/null +++ b/source/parts/detail/p/pr-carbon-fiber-ring-37362---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ede408f8c696eed234f2c6630ce0aa7b8466dbfebc1eb0d9eb72a42b1bad5c6 +size 451 diff --git a/source/parts/detail/p/pr-carbon-fiber-ring-37402---39000-in.json b/source/parts/detail/p/pr-carbon-fiber-ring-37402---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca9c5f19e7051910ad8f6f7e6610349ba690635f --- /dev/null +++ b/source/parts/detail/p/pr-carbon-fiber-ring-37402---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfaabeac46a64bd958a783759b98224e1616bf2e630113e39aabcf3d5aa88642 +size 451 diff --git a/source/parts/detail/p/pr-conical-transition.json b/source/parts/detail/p/pr-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..9186b8f70a84752a53046738d933d20e79af07c8 --- /dev/null +++ b/source/parts/detail/p/pr-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87935294feebebb4f594e8ba055d2233de88f2b0430298527498dfbdf0b3ff09 +size 588 diff --git a/source/parts/detail/p/pr-fiberglass-ring-00000---38504-in.json b/source/parts/detail/p/pr-fiberglass-ring-00000---38504-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8fb85f1efaa8873e9fd2b9fe351b0b4194b72310 --- /dev/null +++ b/source/parts/detail/p/pr-fiberglass-ring-00000---38504-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed0a67027285990625c752171f53fad943fcea03368d4970d1cec4dc8bbbe0f +size 447 diff --git a/source/parts/detail/p/pratt-hobbies-apogee-09123-micro-beacon.json b/source/parts/detail/p/pratt-hobbies-apogee-09123-micro-beacon.json new file mode 100644 index 0000000000000000000000000000000000000000..3bb4929fd98d60d4327a99656fcfe130968bffb5 --- /dev/null +++ b/source/parts/detail/p/pratt-hobbies-apogee-09123-micro-beacon.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a9b839b19848c0204aec9b1b89834d4c809b5be9e58404396a59e01406a97a +size 425 diff --git a/source/parts/detail/p/pratt-hobbies-microbraid-tubular--kevlar-cord--100lb.json b/source/parts/detail/p/pratt-hobbies-microbraid-tubular--kevlar-cord--100lb.json new file mode 100644 index 0000000000000000000000000000000000000000..eb3e3f225263944bfce99a24542de305df462ac7 --- /dev/null +++ b/source/parts/detail/p/pratt-hobbies-microbraid-tubular--kevlar-cord--100lb.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c0c8fa4e35720ce867539668be6fbf55ab0784b443911dac7f11e24ee1bd6c +size 457 diff --git a/source/parts/detail/p/pratt-hobbies-tubular-kevlar---small-700-x-18-flat-tubular-kevlar-cord.json b/source/parts/detail/p/pratt-hobbies-tubular-kevlar---small-700-x-18-flat-tubular-kevlar-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..8a3886c972ea099a62328d165b637c028ce61620 --- /dev/null +++ b/source/parts/detail/p/pratt-hobbies-tubular-kevlar---small-700-x-18-flat-tubular-kevlar-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01038668d2827c2dbc5f437fbb4d18036708cd3189048c68b6ccc348afd22517 +size 557 diff --git a/source/parts/detail/p/preformance-rocketry-aluminium-ring-61600---78610-in.json b/source/parts/detail/p/preformance-rocketry-aluminium-ring-61600---78610-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cf46b01a718dae79b3e5bed968c68db315689b85 --- /dev/null +++ b/source/parts/detail/p/preformance-rocketry-aluminium-ring-61600---78610-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f05637f8daf0ee5d08484d6641faff69456b497312fea66264827cd147a3a4f +size 484 diff --git a/source/parts/detail/p/preformance-rocketry-g10-fiberglass-ring-31300---45000-in.json b/source/parts/detail/p/preformance-rocketry-g10-fiberglass-ring-31300---45000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..587becd4fe2905df65f149d3e001451e0592289e --- /dev/null +++ b/source/parts/detail/p/preformance-rocketry-g10-fiberglass-ring-31300---45000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b314788f182de1595f3f7eda9e49f7292a4375a3abe1a83796f0d22242a617b +size 549 diff --git a/source/parts/detail/p/preformance-rocketry-g10-fiberglass-ring-42891---45000-in.json b/source/parts/detail/p/preformance-rocketry-g10-fiberglass-ring-42891---45000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a6393d0498c261a3c02691b0849a6fcde2c6c58 --- /dev/null +++ b/source/parts/detail/p/preformance-rocketry-g10-fiberglass-ring-42891---45000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed63c2cf6f44d0739019140ae3449d695d700b9b491d36762fbcaf4cf67bd2f +size 543 diff --git a/source/parts/detail/p/proline-composites-fiberglass-ring-00000---21500-in.json b/source/parts/detail/p/proline-composites-fiberglass-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28488bfc977b5df1e2f32285a7de70752fc67fb0 --- /dev/null +++ b/source/parts/detail/p/proline-composites-fiberglass-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d7b33a9365b0016b559ba32210b391a0ab454783df7725ad6dcf3bfcc72750d +size 511 diff --git a/source/parts/detail/p/proline-composites-g10-fiberglass-ring-00000---30000-in.json b/source/parts/detail/p/proline-composites-g10-fiberglass-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3ae1c737d0b8be1001cd58ee16b9adcb5c62e7b --- /dev/null +++ b/source/parts/detail/p/proline-composites-g10-fiberglass-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7da2319e19bc35a93025ff40220299cb44b4885ae724453af55edb47f308d8e +size 491 diff --git a/source/parts/detail/p/proline-composites-g10-fiberglass-ring-22770---30000-in.json b/source/parts/detail/p/proline-composites-g10-fiberglass-ring-22770---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a96be900b7761142b3d7031ac12cd0895e629007 --- /dev/null +++ b/source/parts/detail/p/proline-composites-g10-fiberglass-ring-22770---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c75ee166850570cbb50b3c817518db974929475bdeac80750d975f609bc930 +size 491 diff --git a/source/parts/detail/p/proline-composites-g10-pml-0062-ring-12500---21591-in.json b/source/parts/detail/p/proline-composites-g10-pml-0062-ring-12500---21591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66a674a9e9671424f169ff1d1e1f8276ae744737 --- /dev/null +++ b/source/parts/detail/p/proline-composites-g10-pml-0062-ring-12500---21591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ebbf574fea691a58eadb675e49ccab6a35868d1938e387804fdd28bf0670671 +size 528 diff --git a/source/parts/detail/p/public-missiles-060-carbon-fiber-ring-00000---21520-in.json b/source/parts/detail/p/public-missiles-060-carbon-fiber-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94958f869c45abdf8d4e95e0f89c4dedbb7afd2a --- /dev/null +++ b/source/parts/detail/p/public-missiles-060-carbon-fiber-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a445822282c6dd6ed3e8d5e841d1146c8d842254211bd5d14e28e690cce50e1 +size 486 diff --git a/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---11420-in.json b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---11420-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64fbb46dab3b5c30258ecb53f1313207f2be74b1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---11420-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca149ad148ffab190169e3b4408c7bb82d7a745fe1fdd1f5f14471041b5a895 +size 495 diff --git a/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---15000-in.json b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4eefb7de98caacdf62d971d4a0a8f8c38690a32 --- /dev/null +++ b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:045edf501f5b314f4e817e9a18adcb8541892701edf7ed9c834c63676f556b23 +size 495 diff --git a/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---40000-in.json b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b3927c95bc25428a094ef3e14fc1e1d9dc5d7a8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-00000---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c334db8edaf6dce24205c375ac7bb753fb09aaff59eec0a172a46ed5156e3dc +size 495 diff --git a/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-16400---30000-in.json b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7fd075d4506c2b7fbc3f7a4eecc547225f747b8b --- /dev/null +++ b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ae75144d45d80206a57ee8c49efae9ff4883403ebb6bfd83cb3a39a553fff6e +size 537 diff --git a/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-22640---29900-in.json b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-22640---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d501ece59f6d94934d55448a75fcbbcd69617faa --- /dev/null +++ b/source/parts/detail/p/public-missiles-14-aircraft-plywood-ring-22640---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aa18261aeb95a46a2af70f9097cc0c19fd070ab1c916fd7db9889c29aa6c5e1 +size 537 diff --git a/source/parts/detail/p/public-missiles-316-aircraft-plywood-ring-00000---21500-in.json b/source/parts/detail/p/public-missiles-316-aircraft-plywood-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e52067c03a3a6cedec73e8cb06b8b7a90fc6d675 --- /dev/null +++ b/source/parts/detail/p/public-missiles-316-aircraft-plywood-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff77b64b9573bc2f984f3bb5016ad8d62b910b9e911be75430352511c06610d +size 547 diff --git a/source/parts/detail/p/public-missiles-316-aircraft-plywood-ring-14961---30000-in.json b/source/parts/detail/p/public-missiles-316-aircraft-plywood-ring-14961---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62cacfd2ebbbc8f4ef754c1f9995f2e5b9f58f44 --- /dev/null +++ b/source/parts/detail/p/public-missiles-316-aircraft-plywood-ring-14961---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6981fdb18dd8b91dffb18b9f9f0e02b0b3c68bcb66d4dffa428f814489d70e +size 540 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---114100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..43307bf6e72a23100b809cb1da3261cb3f91b2aa --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:740d7b7a4fbdb5e071dc8300800aaf4df2094c08b55abad9ce987f97c074ad15 +size 553 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---11450-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c01cf6949a85b87ad075c4910bb810db77e4d276 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1dd5493dd2249ae15bf1146dcc63cfdf8a0751397002ca455674304eff319c5 +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---15200-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe9fc2c063b005ccb667c11133f92310659bfc1f --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bf1fee4a7243d6b3e9ac4bc5fe24fcbdd19dceb11cc6458b023f174d56b958 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---15250-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ff21ec43a2da1b7335c8e43a19e25e874bd3fce --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4440927edcfad0374faf7e116ddd591d2899a896e2946564e93ce541b177f61 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---21400-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..315cfd076c2dc99c93833c1e9539b1904a57b5d1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2ccbaf13ca11925f560dc73d00f86c53df39f6cb8c270a42a09d5c91f01dac +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---21520-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4654407e65502e13cf92b0faf514d20a99116589 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d2f8644cc9373d15f83e53739dda536a0be1238ca0ef8385b0913aecee5579b +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---28750-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18c8c397121bae782f284d6eb9d69c6333e5d4b3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8156642fad478cfd37756feef7c1fcc0a5b64e7bf04a82f7d732440f24ed7878 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---30020-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78a0f23007a55d15f816bc6554d8710fbbf180e3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8979cc2125c920376770bae4bb6725631398214aa87acf67d1d7ed9384990594 +size 539 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---37760-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---37760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe9e98345932e4af1415853b4411e9470f32567f --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---37760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3987d35cb45de03640654c62347e680f1dfd7358993f5bba22b73740eac0d6c6 +size 541 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1a7788d31cb0451a8175899c1329080abe87eb85 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38c94515a9dab57e932a405dbd709f87a3f1250750dc5bf390f936e7c85060d +size 544 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---54000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---54000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5606bb3ce782b407e6e387b894a9efc766747725 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---54000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49c930dc4dc71fb971bcd9a3406bd52d3d3822297ea4ea6b35b9c27d83af6e2a +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---73520-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---73520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e67b6c9678cd3b0ca794d33a4783c9919bd0e7a5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---73520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea512e391875848c36696fd7a4d6fc3a528d4c68c9414f321b9eb3c4aec3be5 +size 541 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---75120-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e24af0c46b4af12e0821280e2a19008673b62b9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-00000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfa2557c8aba0fb820ab3688083dbde480f578b5ecad872e70409ae59c0cd19 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-01640---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-01640---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48ecda57540d9cfded59a5a6a451e06042416a4c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-01640---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7fec2547bb8bd5e3f04ef7807a3ed6f0ec34dc0de48eff6b6b2e02b71079cee +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-02500---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-02500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1dd28d016983f30cfeef1bec9e6e444d8078edff --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-02500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c759d1a2327c04e1bce5c5340ae7b84a5aeb0325980c4454ae0326127cecfb +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---21800-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74ad53c818be092d82ecc5198bd3ea0decef70bc --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e4fe8c75585430a930fd3f7ae30768e85c0130a02794601eb4625ce5587590b +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---25900-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8dba79cfd98a2b711ef81dcfb8b9fd220029fcd3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00bc3717494b62054083a13c1add15f178a8934d98087e4ff0de509ff9d964df +size 505 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---30020-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8cb0c806b0687d36a2217f7e4f9956055554b83e --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-09760---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb847046ceeabdddd50de4ce41887a124d999090830268d204bcc09a1d3c21c5 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---15250-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42ece7302f624fe0d22387cf710cbfe749c334a3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bcef0a3df93a6783619b56e6fc10014f45334bae4b31d8ca0dbef57bc8b945 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---21710-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---21710-in.json new file mode 100644 index 0000000000000000000000000000000000000000..13505f9786f280f871d0ca0eebef20017496caf5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---21710-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf601380dcb268850e2e63c91ecea03c19d79a72e306155934c6bc436544ea96 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---25400-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---25400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..34dec1a7123821bd9f74f7c9face6e86a99f7987 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---25400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a91049676f4fc88ec9fb6d83601ed66a30f6f8827fed7aa7c9072f8d3338ff38 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---25600-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a1796c48c1eef217e0a8626dc6b9b4f1862ce49 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-10000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce56b08082ba19c3abc3246fde5f1ff8bcfa73db9146f5e93e1998585762416 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-11400---24750-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-11400---24750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ba74193bbaea7a32c41b7a0184a3e8e550671f0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-11400---24750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8771d02bf3ac2fffbe204d289d0253c7325d85aba7966c5e4aef01a4a515334e +size 541 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-11760---38960-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-11760---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a48ec192116d20e1985f5e367535e0efba9c0d6f --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-11760---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1263fef0ccfb0cfdc99f26c8d8100f734ce8ea9707a5a0ddb3fa98018b3e506 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---15250-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c27fb5e4946a538fd90810c24dc62f667246d68 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b076c600c39320f42f50bf2d7457d8e0ff6e1b750c08c8ef4da8b92bff4b3cdf +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---21400-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..183a5781ace5983c7a8417b621c75514189743fc --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eefdc270e1ffe41a01287ae70c4ad47014e711422865d76b3348c8e81d0f8cce +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---21520-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f46c63882697ffd0255f4bfa8da5d513d26f83c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b88bb60b5a4c9f3dee77dd8227b73404c3f574a63a2df6a005fce322730270 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..906060fc0e84cab8c5a5547ed7eb3cd51c01416d --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab76e81376f3aa6f899161b0707f74db31e497e51fa9edcfd8b54e2407f1376 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25550-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf6f17fcba733be87de39c832f1a4b00d5a0810f --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ae1f7b32a4a97567c3b2e0166ad2a564d46f8f04940e1e4ec99ecc54bf8a36 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25600-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c6d12138e3fa23e4b3af9be90b20eda1ff2fbd0a --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bab96c9d9122cd26a7b50567e7a91dd627cd13146aa2f850effbd53cde95fdff +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---26371-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---26371-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b9a288b9951b2f943a64d60f29c24d928939cc4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---26371-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e795698c1e5aef04fb51f6707684ff05c275094e997555297c47dc94bed7b42f +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9483c34c4daa0c6953f1153aaac48393391ff31 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e20f44ca851ce09e65af4015ad2bd05cdf34c939a60d0a0acdf4deb38de7a464 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---36830-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---36830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b717842a1dac038a5ee0d48b6839100feaeba582 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---36830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c45ce13d558ba1578d045d7781a43a8086e43172992c0abe4f68adbf73ca271 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ff7325b387d354161438912e844c06e9003e33e --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31006598c54363a0ea403e9455fe88d4f0f5f8c365210d22f796fa9431ec739e +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---52900-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---52900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d2cd033708bb902ef3d48de1019ec2ceee31172 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---52900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd0102b65fd0a3fdf914375c61411061a56c60ed8709813dc6a56ab5683d28c +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---53800-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c50edb9003fec478357c5f3a4ac0856dcddf3d7c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12100---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb0705580712c597ef72f37a1cebc218abb0e1683ff87452e7db2c78557e61ae +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12510---21500-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12510---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0993169a5a1d720c15cceaf5a7248268933697e6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12510---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95382e934293b787c1d42abd848a6e2f20d0f35cc5470975aa39c283c403c3bb +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---21520-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01a5257dd9b6a8e3a2609b5e526b489a36024d9a --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92c8c5389340f86fe793b0c018ebe8d5c165f2d60e2f3c9999a969c8458d1698 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---25550-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..878ee156443b07e55ddcb783b5eb57d539207b47 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ff033de42e7035564d2141b26171cea36a576030a3f17961a02447e0a222cb1 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---25600-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2e259647f01153b17fbb94b10d3d62ed38b1779 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211ee78f4011f644d48cbc4a28c82bc710058061e53779ce5527b0079ebce6d4 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..921cd6bc7bd23168d5cd49c05ab68f2480c489ec --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786dd8b252e2729b36e883e51d41fd16f3b9ce7d0572343741372e69b74d0e8e +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---30020-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..653b89acf32b46655afe9d2f56aa8a50c2e85e23 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:194ba3366e5568fcf9f6d5c0d9450b3d208bfad98cd5cd327687f9e4dbd1719f +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..684bda4cf0527548d041da2224f79f34ea4f0825 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12690---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5637348581621832eca66c3432535f2dc41edfe1cd38c98af5decf61a254c4 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---15200-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eb756290b758645a4fca0d82e23547a06c186fa5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ed11c9fbfd5f3fc6c9ea62c2118c4e8f5096b1c931273bfcf4240fa63a439e +size 478 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---20900-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---20900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..73dc53edcabe2414711e3bd10050170f11042f83 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---20900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651d9d3d26d265f2a1186ed0a8f21c3735b24b79f2edfd087c1d3584a2c39641 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---21500-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4970a2db842f0c3ea80625b6443e50a1f3e06bff --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63e767584c717e4e3422a152260b032b738c16dbca7f6529ea8072368b8ee047 +size 553 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---25600-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a0f0bfd4562c08df7a0ed38b719463f840f96bf --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0212af2969cc539e5d89dcbd8ef20f09ca0c5bf5f8664f45fe4b45525b6ee9e +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ece32f7884d5626c1cdc25b639148aef039e607f --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-12700---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ca6275153c3bf39526b483fd4bbe8c379d766a5bf8cf648fa9f14bc03c2a29 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14960---28750-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14960---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..398ea39649841322d82db039aca51258bc379a59 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14960---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c20337096ee7525f5e654338e16beb3e553995715ec2a9fddddfaf3100db7a9 +size 472 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14961---29000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14961---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45e3fd856048df3d50c258f8e33ff910b4d3af15 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14961---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d82820e2708bfc036fe5e988785cc5538fd700f14083413420fff16715a4727 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14961---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14961---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f7617eca282916a25681a37aa82ea8d8824938c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-14961---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aae8e377752e0634fc305937ca668f5a50bd5acfc4f26ebe8ffa7f17f933bd72 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-15200---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-15200---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9899dce3b147f67ee3b4c31f6f5841f04efb059c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-15200---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89bbef7c39b69adb698a413ffc67818be6ff17eab1597521494fc6f923687a3a +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16200---40000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16200---40000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..22944e35258ab5cd085236a5ae1ca56783088e62 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16200---40000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b345afa8e84a6a3ceeff3336e8c6f58455a76c6511feebde1e5d14a652a56d90 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---24959-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---24959-in.json new file mode 100644 index 0000000000000000000000000000000000000000..742293727a8b6c899a2886be9b57bbf571957dc8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---24959-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c05b4b9039c546bfeab27743562d7a97d7a574e09e275809705f868b391b49d1 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9825198e8f20fe10e88b9b889793c616dc1fabf5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629e132207ceec5779f69697a230d52287119bdbccf6887d9aadff194afcab8c +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---30020-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bcdf9d368a495ee9d387d19f9503ec1374c2d092 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0fc1eea8f36f59a9babdb22532255949af789908460b7e4958e445ff056b933 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2450e6c327e24401563b82a42e0944bd3db754b3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76842063919ed3d47e6324215a9a6924691d4bcb2672b23d2a7e6f6122f43710 +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---39800-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---39800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9529d43b3ff0832f21bd57c9bf131c9a70a32911 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16350---39800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ec1047b10ca79c59e608d038e85e78cd3b11bdc49c5c6a98ab98a294e069e4 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---21400-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e97e538ae00c736ff80af6c8fe04f3637f5e7bb --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:355ecb5fd6f4aafc36bd487d786305fd2094a34ce62e52ca94b2e648a62e76ee +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---27500-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---27500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ac42b941ed5361ef48c09a91e929235dacbdc9f --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---27500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b8fd76e12c66ef583d33b35e691ac72a10f37dc530c30b5392b9a5003119c1 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..582dbe018417e23d8197e6e3a6e854519d45c978 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:021891b697a0883b036ae23553e33561685e0ada991a173516c0e9b0506181bb +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---30100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---30100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66a1c64bb5bb9e013a94e1c767c9f4b73754808a --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16400---30100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24c25b3a41b6d382a9fb02a8b104718042b922150c9b62619daed9cfe42c3a1f +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---21400-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..530191ab1acf5291af937ece1a5f8e4e71019be3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43fc824259ce9ce54abdfed795224b6c874d65b8e1c5eb5d62f0507c02db38b7 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---21520-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28213f0df3be062326baea1a3e0871d864b64ada --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57091d9321dc36b70deac927f8340ddd4bf25bbf4a8b1998bbbc6673c40f9104 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---25600-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da00ab68a01e79fdff748a99d70b2a9805d38b8e --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d153bf1fbe0dda17e019a1f9182bc1c3852643d3a8b0e9928b8c4ad17ba84af5 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---30020-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27e7ff8733e92ebab425c15cd9e78370506255d5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e5c6e72ccca381934d111a7c18c0a44ceda9d211ba731d175b8bd3211b369e +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---35200-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---35200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe661bf750c07b4bc5e90ddbd6b85357252ca4d2 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---35200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bfb1f7349120b95d4f0f4a2baef3543f0948d39bd610335bc7c6d3ff65fec91 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f0e25ad1b7425ae894bf88299542ea864758eaf --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c3cefb250f99fcb95ea9dd26e507af0cfe2d39ca887fc8f996ddd7464ab34fa +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---39100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b98be0840be03e68e6b78b270282ff94bc41259d --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ebe18d06d3fad943077f9f3c6c4cd07ae2a5ca34ab674020f26031e7de2e33 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---60070-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..51c1b9a2b8b08dc398f45e500539e7af264628b4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c66e252e9c6818ae18106420883cf3b703ec6a642dc928b03798b045b8d4ec7d +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---75120-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c9be17d9b481eff12448620f2c59e5c1357184f6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16490---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f110bb68c9eea8e98bbfe0192c95a7c169a70fd2d8709b96289ab2cf0a7fb5 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---20900-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---20900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..73faf69b37c000cfabb14a4b29c5c53b8ff88ee1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---20900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1507dbb15c0392c4fe3a263a3a542f3ad5e4ceedc94ae3ddfe15ddcebb6d02e +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---21500-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c66d16ed26038cf71c9e82f3885e93d1c80c27f6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e637ed561db32b408dd12257d11d631d329199f4f7c50a73d7a113b1988bdfc9 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---25000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba144c2dc0e68b2ff2b29153c94f419628fe9fa7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2211859b6660fa8d260f052892869ada324031dc765689322cb0deca5e0f42 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---25600-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d49c9bb74859bbb97d6daf72dbc2f3b5e86294cd --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c344362b160f6dc57d888ea51931c735f91976bb8931ca2bc9d22d84b9536ef +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06fa6f608fcd1ceaa457131f345d19780c6e27d6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bfe485f255347133575c7e207b0bfd6f9bc1a2b39de0d07ade638e4dfb915d4 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b77678f37ab0ed4a9accf21ce60fed521312bf6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:637ccd22c78e17765b9352301bae5b1f235a4c708e22d0abb3cddb3f32b22a36 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---60100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00f81780366c26d16a56949b608031934aabae74 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16500---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb7c7cbec8fca918a08e85938ae32af8cde79763971f6657de2dae87dc3a6d54 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16535---29000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16535---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d9bd435b6e0021ec85fb6f68b48523ad7cf89413 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-16535---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4e2332be999eac11cea1aaeaecb4330d9d5a433474130776dd9e6600e8d648a +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-17500---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-17500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f821bafc74c590ef86eca93273380159475782e7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-17500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54901e0b8a7cc990c147d1a75a6e6ec81c3fc2372eb7e66dc986cfe173f5f1b4 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---25600-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e74962fd5bb90050a9881977a6dc2cd4e190313 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b203baae666c7125a4eee819498e689b31e1c29caf61c3a8405bb07e324c2fcf +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59336ab39ecbb5696b9d0b26f9d40395ac2aa55e --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97ac0199feab3acf1277876c1fc8c9c00f16ab30abc09a5e73c70e90e42e1658 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---30020-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3fd654034f85013b1aefc8084f2126e8a7225f7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41638c15b68220e1144a0e3556b42af52f601dd9bc36399b7769eb484708c9b6 +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..195f6eb44e8d7489620e1692c0fa43df77e52fe5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4e5b19d0119a825165fe2abd21245e4fdfd5db0d22bd8b41f4c73fbead74f4 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---53800-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a5123fbe27573125b0306003d4e7dc503cd5180 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffcdeaf112df9f302bc7b395a161a1b3476d8c57da7bd0be4d176d54fe3e9bdb +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---74380-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---74380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed3593eb4bca3fe97c22001cc2deff81d316dc63 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-21600---74380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5fab0bd385680c64628b27d0504e6e581c5070ae316c1036a3e6d4c07f0b7a +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..15b66ef33535f8610e69405febf80c17bee52ecd --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:138469fcd3029eaa71fedaf46998f28b080f9ca2ce54ed0cb3ee7be4aec18945 +size 505 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1fde7c176d7e1612ea55d74c1187be03d08b39ff --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc91efd1b88e29820af2fb6232da7c7707188d70df16a0865bb862eb1c820001 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---75100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e6ae5c2f98f4c4e6bd9b467905a4f2c9da16ad68 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22600---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efc77b8c2cf8d029b0e8e7e8436708f9e97919328f09dc40acb49a670c7c836e +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---114100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c452379bbe292bcf44380e4dad74491d05dd20f7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f3a8d3d092d2779bb5cf44b6df4e1a54ce8c974a345b40886cd9c085907f5a6 +size 548 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---28444-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---28444-in.json new file mode 100644 index 0000000000000000000000000000000000000000..036ccdf7f10d902abda51d7c060ac326612f2fa9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---28444-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff990a8d33eb561d350517212dac89e20e16ffc4016fe36d6e0715e5e4cf3093 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45b2792ac3590f138d4b2804a3801aa9bd58b873 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8372b7212fcb7982c903c852aeb3dd89f644c442a95a68fa72ea83143c5f14 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---30020-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67e0d6fa6f028687da1a895accc8c932f4950817 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f14e469e938fd9dc9b613defbc6a9d337fe58ecc5f74750d103395057a6e8f +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---33147-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---33147-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f69eceffdfbbdd768afcdccd7f0323653c8bf2d7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---33147-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6faaa1dee50a46f8669f7501013954189ca9bf1788171023dc93c5e61425a1f1 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---35740-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---35740-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e12d67149f4ce7d865aca8538cf23b180fea9128 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---35740-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c672a8ecd955a363a29f0fbecf2d96584db4a97eb964aac45efa2721a2cd4720 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ee69c70845cb1b4ddfcb8cddc777455017a60d6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9aeb0f316e90836dba199e9436d54ab3654bd5b460a7bca02fbcdc2d4c38458 +size 498 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---60070-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ddd4c80fd8ecacbef8bf87095eb17aa237eb1c4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb17621919a34f1fadd63825c2ca7ce0e3faf83f3e8f6666a12be651f4fe597 +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---74500-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---74500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..989b844c384a145f036a71a5e83527f8cf07baf1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---74500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96c57fb373f8424808cc29dc1f3f6456ff998a0cc82ffc2787b15588e999c4a5 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---75120-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df6657e172c9558fd2374c4384bd16dedd3b4623 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22760---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6bb1444bc0b092db01cfd3d3ea4347e04f08fc347c5bf3db06b106170efd58 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b42677b61528c034d3b8c9fff2a57b414ff3ac8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56aec20c7c9ad2a00c47be9f4a39b00c630de1b1afa0455720632051f066f55 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---38300-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---38300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c938e50aaad727d648fcb50cd69f528addedebfe --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---38300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c3c08d2f2f76cf375a9fc0c14a9eeaa0bd49575e8b44900a3ccf24c5813c68 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ebd722401b39c6bc821c6d982d3b6b1ad1f49be4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5935f1a3b7dc83fdc15a11c291f72cac30b1a62b0a4ba189b05b8eb03aa1f9d5 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---59300-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---59300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..69e8ecc808bce2c53c6ad59d2881e1c2ccd80b52 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---59300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81c2dbf7da7b26ac34b376efca0b214355ad0322594a9566214c1789103e7e1d +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---60100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..04e722b39923ee7e3ee1413ab36b865a7d6291f8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:926b78963b2ee45152450775d327b46459492479197b76a8e27b4e82204c31bc +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---75120-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aeddb1dd77dc258e2a8ec2159c517dc8165cfd3a --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-22800---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50c98fb4bc00887aaf2256785b377214c2da08971ee8086852261f0e6fead71 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-26840---30020-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-26840---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3e959c7f57736281014cfffe7833a6c6525adee --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-26840---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efe72810ca6cfdda3487498f62241c90a9f6a5dcf0790c552e1116d86a5659f4 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-26840---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-26840---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1f1e3efc72aaaf30b4c6e80b84a1592140a284c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-26840---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee8b4dab9c9eac62685d6fd9437aabac15e37e0ba886801cc3fef770ac44ae4 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-30000---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-30000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..78a03e15021bca53cf2a385beba24e62c8851ccb --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-30000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73d9b771c35fbc3d34c8b9aa85079b0cf085432b8d125f17a6c937530e85155a +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31000---54000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31000---54000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dbb8d971578ffb96117ad1512d9abf24c070088c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31000---54000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0c781c44ea1cad3614496fcce3eff8032ef8df2d249af47a446b1cce5e3f2de +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31000---57500-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31000---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..416d64e065eca8f6f711b0c922e13e362b6e3c84 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31000---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7712446c5ac332e6b88da939738e030f43984039b30d8e239cce87cbc266fd6 +size 505 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---111964-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---111964-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f04186d192ef43d256f24ffe1c7909e6a2207b33 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---111964-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681c296e9fc739c2a4908de36e2619d4c5b0177c8eb34a538ae88cc80aa487b5 +size 550 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---114100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e7c4debf995512868e49f1ce08cb2b2552f12f34 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4628246c634d700ebb5e70b8e1247e425cfe95d854b9f874175a0f79d389d87 +size 548 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---38583-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---38583-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3680f7fe4811f4c13e85a3fe52da2d0db6a9b2d3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---38583-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de09c91d0629f1fa3d229828d232fc954762223c27b02fccbfbc58bf3243bd0 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..753273e71826b075199cd7dfbb29a704668ba166 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2772e9782a907e607a74592bed1b186778c262a3740a381a2b6b216c631da1 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---39100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d6d77d06244ab2c836e9de6adf9c3c8af5b9f754 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8397176f8f32d8bd708b6c7bd1debc7cbeca3e55934217350253764db2a6671c +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---40100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---40100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9d7bdb7b52090d7c4d930cd10928ffb845736fd2 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---40100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2951fdb3a6b06c93cb665bea3fabde2d1863141d80e64afa9413d8c0f564307 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---60070-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cab0a3caa6046e06eb0b3076fe59bea32a7a5095 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253c92af08a2cfc86397e974a129d67d16f70c78bba9259e45125be1c999a888 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---60071-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---60071-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9f7c3e3deadf8946230052c1431caac9fa72aad2 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---60071-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:271a462a35514c40c92d2d79ad7ac59f1bb48098fa408235463c74c50e784598 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---73520-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---73520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1711633ed5f0a333b7ccec99bdaebb45fbc72dda --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---73520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4edc63c46997e2987a334cf7704a59a615e6a6a9c4228153eb0bbbd75963c4b +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---75120-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..012813dc4db4ca532ffbc78a30e4ca55491337df --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c5f074d2813bc918d4258af0422173752185a64c32307dd26b7b5834988e424 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---75122-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---75122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef8f24356d3d2fa1c20f5aa6d6c31df8b75efbf6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---75122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53cdaf68876dbcf1514868a54f600ffc91c16b529e793ca6d01d4b816cff91c9 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---97872-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---97872-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09a8ac210fe21b3c644a3649afaa7edb740ede2e --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31260---97872-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86778f0891c30875db7d98840bb7b190a5e9e84c9d5aece0e4bc5db099b11235 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---113000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---113000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb52bd1fd8cb15feb267854aabd9976982fc3b50 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---113000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1170409d06dc05b2fe20b31b65d48ad2b055f590e2164f382cc81631aa3461f +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---114000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9724f8aa72401495dce5aace18ffce8951804903 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0dbdda83984d939481139489fc516dc1d7946aad0e48f9d03a382b98aa680c7 +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---38300-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---38300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d78f1dd132f6b27bc3b2c7235a080cfa4d8d0542 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---38300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa6742e2f69fadcbad81a2f15b3c5f6f04002870defd0e0e54207af90599aece +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d6fa3e9dfe74f7e524314023630435b205a9560 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d455fc776f56b421f9c49a21fae5f4d38437add9991ccfa972d34beec5c5d8 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---57000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---57000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e574278d411383924cf13e857fe910dec893132 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---57000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51280dd1c2ece63c51f190fb15b91768a2e5de4b768e9cebb937369eb7fdb04d +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---59300-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---59300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc68012e03edd22b766ff2951c16207aa57310ce --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---59300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d778dc08af919c60433c88a36c2c11495461ad3aa50434a9d13510b29836d32e +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---60100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9c4101f49e97cc8c6e9c86ceee94d7ed6d761d1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7664684c84cd97cd8fe235615e7a2c4a4f26cef86098c41c82090c90fd3d3492 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---74300-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---74300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..98ecbfcd47a599d4d156e0fe480bc8d0c257082e --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---74300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b9b8c5ce583bd9900e38c6c40a0433768944ecf809f2f7170b7f2cfcf5fdb4 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---75100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9fdd055427464162c121a6baaeb6d016982e5475 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31300---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69fde1ae96e0b371457214f7457e9d47a4f10bda2e420b6b803aa9849ac2df6a +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31437---39012-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31437---39012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b4218f81c430bf6fbcc4d87270c9bef99a15c578 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31437---39012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7431d08e1987435c98e29b7ff0dd38dcf64bb2ba409cc82a63c7c9490ceebad +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31460---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31460---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2555a87f7d8a90771e5a717bc19da73ad4a236fb --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-31460---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1f91dcdf1e1f6a555ada7edb24305e3645df34f182b1dd67518a077e78af0e9 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-39000---75600-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-39000---75600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4522b1716596bf17ff5f8157788809b81fb7b019 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-39000---75600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8990f607b190d4096be6f82a119731193cea8f4d60c29cf05dc389ce570cd1aa +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---40100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---40100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef77a548cc0a8239ca262496e779ceb0740bf174 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---40100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3e8204b85f894430af9588c14ac737cbd2a27fe0b017e6ccd5fa452e6db6ece +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---60000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e59f7f2406dbd420a397e646dd2f513f36c217f --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71bcbbab6a4c16b73d233f350c28b91baf9abd0d564aefb72ab18ac4e6f6109 +size 505 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---79696-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---79696-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a4c13e353d625d2e7d156b191b942125df6a24bc --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40000---79696-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44364421970a8da7eacbe582fca8ef8473340141f70144c3bcc3749d97f9dbd8 +size 505 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---100000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---100000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..929c81190536f5b7b16f5c0abf02cf1f22aa8276 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---100000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6586067b217911405f057a1dbfe8442de6aa7091d9f64aba3a62221b6a9200b +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---113000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---113000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b98c3e2ce71d9ee914133e08e9161f1bfcc36293 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---113000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b427c3f3c0a4f3d07f28a20680e87c8cdbe80909268f416a102dc4ed11e7277 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---114000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2b7edff1218eeeea2d9afd5b6ef76186973fd51 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03bd20b4d67fe1a8d012778e3dbcb8862a351aa51273f6f78a9e90567d9d463 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---50000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7dcd3add5782ba6082c17c2b74ad378586ba24bd --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4037f394451376f59549742c1e24cd2a291a41950ced46435076853f88ef7c9a +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---59300-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---59300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..054710a21f281c6321fd7c94412f3cb4fae5acd7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---59300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f680cf8960aa4b984438e7d7a76c2f09bfa773cea1437586aacc2d3cd04c41 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---60100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc2c5a206562a17ecdc3fa70565a38725c6ac855 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c97c9c1e6b0d84b36507f0e3dbaca761670cb7e7d9df1ac81094cd384d0ff281 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---74300-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---74300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..59694b581339be1d9d5890e7b740faaf2460c00c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---74300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:281cc32cb8dc99b5224f414406300576172526e05dffe5ca6d15cfe1a895c84f +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---75100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c88e24a9fb90787020a3d9e235f7cb230b027668 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40200---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4676ecfebc9e330c749802b40bcdc2a20614db93c40f99046c3b8a75995cb01e +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40201---75100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40201---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..034ef0db8a3724c712d1429408f3e77637b106bd --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40201---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8f8b2f9697ec6be74e4d908b33beb278064fee8b58f9fd164343c5cb5a12354 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---114100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e5ffc67e8f5db51830b01dcf59adb7f203ab9a2 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:708848ef79708f1d15eaf50035fc6bedc28f14cf481f0dfbee9f504a30671b10 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---44000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---44000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ecef49891c501735f151dae126680930e4343bcb --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---44000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24177cdcdfd1b0c037c5c1fb1a8d7714c1eae5d5e8fc28d2090cc6e16a0c5415 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---56750-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---56750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e93f846fdde390d760c9f010df9c0a381e1a5207 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---56750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9981cf9c1c17fb7a9617d95448e613034b6118f4d39a2434975e62bf105a91cd +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---60000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89151cedcefc2fbd0eb864a4a8913a7a82b84302 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b74220b4790da3cc25f84c86fd93848b956de882adfaa3173899e0b3554c91 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---60070-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f5717a801f7b12dc1ae3d5232f2b1bfbffd8bde --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd6fd4a32b1bd66227c3eef31133316a6eb43353dde095e75a437e1e812a4613 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---74000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---74000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b83f26ef658213271dc790e6562d7db8feb474e1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---74000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2607078f2f20df9c6a94477be454b3d433b57cfb6a37f7fdea8299af9809bc3 +size 505 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---75120-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..081759a014fb81cafab3a66aa8fc3619644ce767 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432b97ece4d51c3d165b7d42040bde302c97ed9d314b1780b4144aebfbf85356 +size 554 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---75122-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---75122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..431b604d8e006f6332e255d5eb76c8a2bfe0e5fe --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40240---75122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec581354ce219d7f6d75142e6e31b4e54cec61d1101929fde5ac5d42ad727aa9 +size 545 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40300---75120-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40300---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe678a224417d2d4b110a7509b18879502f89e39 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40300---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b31ac10b813c8734ffdfb8d038d3fb0d627a252c24cbb1f5c6979d3c154248d +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40800---114000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40800---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..55989a05a619f76d370189c6bee500d48f8577cd --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-40800---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7e2433c7432926441f585e16c6b4fba94bd7c59db4f2c61faf01c09653dc6d +size 559 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-42000---71300-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-42000---71300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a791423dabab03e4871dd3bca2cac22d1fe88e3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-42000---71300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c88a1d2fe6cc08fc4396cabf7749ce3c6c3a96ebd5c4ba8476e304e567d2947 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-42000---75150-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-42000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82046ed26946fcbc818e2fc16d3260c850f12444 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-42000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e2e36c54fdeef1bba55f0aa1e41a3e636040bbc9f64b071fd4af4c6e632b44 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-45000---58000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-45000---58000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef86c5418f1da392ba5bb20bb4b43652824e1ea0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-45000---58000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc72ba0f9ce4c6416863b8aae8d808debeb3bea9a0075bb31368b87c74d4be93 +size 505 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-45000---61000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-45000---61000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2fdc9940947ab78a742586e9af559ac82e064b33 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-45000---61000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1273dc0078a799d94a0dc36cd843af8e97cbd9bb0e223b2abc8a56aed44b60 +size 505 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-55000---60100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-55000---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1cb13e49c5e110bbe68f53d44cbfd45486fb2d8c --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-55000---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:630b321f73bec0e6da022dd0a96f6ea2a09c0086d76178c82c007373870134d5 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-60000---75100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-60000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f51718dd50a3bca09ecf6838ed1de5633ddfe4aa --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-60000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09ff0f4e0a0e5222ee1a59fdc9e5b4056622e149ad2a5db5378064801272284 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61417---114000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61417---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0932fbc83628856306a44df20890f0c9cac48ed7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61417---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbe4b9db45320e3be0afdcd5964244004610beb5681ad4f92292e2fb8a10b0a5 +size 508 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61550---114100-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61550---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..199e468a92ac3427e134a24463cc1d18bca084ac --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61550---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e84e069c3bfa43b5b0534b1a987f8cd70ad470c60cd3774179c85b6981fcf59a +size 552 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61550---75000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61550---75000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f5eea4921b209ffda9f03cde916348d54c7c37be --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61550---75000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f899eac4dfbefac46e134037c3772972714ec7a962b96ba0348501578674d618 +size 549 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61551---75122-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61551---75122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e02a9056724ccb5e7c13a79096bd4c09ed130a9e --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61551---75122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f862d7e4c1a52f085ecb761cca9b7a7ad6ee185608f934e68eee3407b45f94 +size 547 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61600---112000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61600---112000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79da300dea525373a20a9bb83dcd5165cdcea520 --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-birch-ring-61600---112000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7b7c3d87379d650df66f1bffd4a66089135d251e562e2e918d76a56a8d2b34 +size 577 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-loc-ring-00000---39000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-loc-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b12b28a8a78fbe348684ef5e2223f26cb32002d --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-loc-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe11c27dfa29b3078e4acbca299b5ce1683d8f17ca210c628f3e362d0bbdd915 +size 535 diff --git a/source/parts/detail/p/public-missiles-aircraft-plywood-loc-ring-16500---30000-in.json b/source/parts/detail/p/public-missiles-aircraft-plywood-loc-ring-16500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1037149417bc9c75388a28c4887be393076ccf3e --- /dev/null +++ b/source/parts/detail/p/public-missiles-aircraft-plywood-loc-ring-16500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:908c042086de0960041a65fdf1114dab66acbf023e890a9c12ff5a53cf27e95c +size 541 diff --git a/source/parts/detail/p/public-missiles-balsa-ring-00000---07100-in.json b/source/parts/detail/p/public-missiles-balsa-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..24cf1fa109c6006bb3b052917249588d45c7340f --- /dev/null +++ b/source/parts/detail/p/public-missiles-balsa-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a1194824daa5329058381487a2399a867cdb0a74272149e07cadf7a77d530c3 +size 486 diff --git a/source/parts/detail/p/public-missiles-balsa-ring-09800---25900-in.json b/source/parts/detail/p/public-missiles-balsa-ring-09800---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..add4aa5b0f7d8098e77cadb2bee375cbc51b63c5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-balsa-ring-09800---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ee4331a8a973acd4d7eb6a56a41c617ac4837d730013cc389440ee81f8a74a +size 452 diff --git a/source/parts/detail/p/public-missiles-balsa-ring-09820---27250-in.json b/source/parts/detail/p/public-missiles-balsa-ring-09820---27250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..19bd96bdfe2f52ae48d21a26e29efbe53b55373c --- /dev/null +++ b/source/parts/detail/p/public-missiles-balsa-ring-09820---27250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40436091e28552e660c2c1e6738773fe35f03fdf7fbc3c274a714e4510c53c2a +size 452 diff --git a/source/parts/detail/public-missiles-basswood-ring-07500---09500-in.json b/source/parts/detail/p/public-missiles-basswood-ring-07500---09500-in.json similarity index 100% rename from source/parts/detail/public-missiles-basswood-ring-07500---09500-in.json rename to source/parts/detail/p/public-missiles-basswood-ring-07500---09500-in.json diff --git a/source/parts/detail/p/public-missiles-basswood-ring-09760---15900-in.json b/source/parts/detail/p/public-missiles-basswood-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a550f8992dc8de7b05046bdefc4c1b65a912a303 --- /dev/null +++ b/source/parts/detail/p/public-missiles-basswood-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5f45181e995e6fea58f5087d7a72835f8d41b69e1dfe461d63e3b7089b43c91 +size 461 diff --git a/source/parts/detail/p/public-missiles-basswood-ring-09800---25900-in.json b/source/parts/detail/p/public-missiles-basswood-ring-09800---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c5857ba3c9c9235f3144b9ff0f53aad97291d05b --- /dev/null +++ b/source/parts/detail/p/public-missiles-basswood-ring-09800---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:756fbd4ff066e3bab45b31a686c28bd6b9e422cdc547329366b996e3eedfeaba +size 461 diff --git a/source/parts/detail/p/public-missiles-basswood-ring-12100---25880-in.json b/source/parts/detail/p/public-missiles-basswood-ring-12100---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af9972282d566e6cb0df8c687f9251e383317ba6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-basswood-ring-12100---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76747e5fcfcda4985e21e6dd8710b4e1a010454e8c3cb98d883438a1b539b629 +size 519 diff --git a/source/parts/detail/p/public-missiles-basswood-ring-31300---39000-in.json b/source/parts/detail/p/public-missiles-basswood-ring-31300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..163b6ac291d13412c745fcf60b5131057d71fc4c --- /dev/null +++ b/source/parts/detail/p/public-missiles-basswood-ring-31300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bc0f26727b42db660404c27d46f7ce355db7593f553390a8e2c87c566cddc8b +size 503 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---105729-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---105729-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86a970a2f13190920debb51dac9f868eecb20b89 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---105729-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:923c230fff8b06734def93e23228f36dfa9e674573eb3c3275487ce68f587a48 +size 498 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---111600-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---111600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf5ef9a1d89d4d44f1e1111d9e309d82874fc87f --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---111600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a9309a94f14ac937e33d549e66abdc75e4111e0c45c4ecb67a64c76740ec65 +size 503 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---112000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---112000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7b087c6e71f3a879644630405d46afa41409e2b1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---112000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62838e7a305b34675fed3c4750e06807ca2f50438e27e22fef0caf746b676b09 +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---112800-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---112800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5dcd47ea5a4ca0bff81779dd7c2297c07b9bacac --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---112800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3beb40ead7946993c1342e0692347c644c2e472a59923716a69fb176709ff5 +size 498 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---114000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d53795cacb3a4f9130e6ad49c11c4025e800c44d --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:555e6b7bf16192f5f573a07ee4cf0679c6ac1bd527fb461c5e5fcc3d679b24b4 +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---114100-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a34df1e31103e9987525fd1a1dbb9610611eccc --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b0af5a97387678baf702719a8486d9a29ab21fbde0c3a7c240c9243f78c71d +size 501 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---114120-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---114120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ec28a6a5622ef63e995fff5c67a93c9086c98af --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---114120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e452a84ded882abbeceeb718eda79c7f1d9e23858855cfb536681a5412941f6e +size 498 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---11417-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2792d9cad4c2b007b717eb74aad592381470d730 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca93a6d4ad6ede3b13ab6756b10ff24901d51263ef37aea41d4c35a8cfe067b5 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---11450-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86766cc6e02fc40c01292a0ef00167606393ac9a --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43cbc3900892ad9b481af800bfeba2b2fc997d37171c7bb4b8d166a9a2d02098 +size 443 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---13500-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---13500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5de084ffe299964a3070db9490e9add08ee9e0be --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---13500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d15a4a943b63e83b5e15f00c50a745c3888a95290b11824496550f76ca63a551 +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---14010-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---14010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..16143664c82d6779c8d09ae908c57f73a5e90c9f --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---14010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7f23d1705b7fa8cb05f95e9ea5a10cf52b791b294eb64e1c371795b05a8936 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---15200-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e3f739ee6454bb1d010f9c76da905adb50dd0e4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afc69f43a2cdd5e4994a262eb0b8fc3349081c26a98bf5b116571dbb02ceae4a +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---15250-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c01ff469ce5cd31cbd627074ba38fd7f7284dd8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3eed51ff143392860188609c6e96eb33bfecd1d3a0005c025dff0615bfee0345 +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---19820-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---19820-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f402214ac9b4e9de00abdebb98fdd1f3e879d41 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---19820-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad8a9bbe99082d9c4fab1f3cebcfbf20803e74bfc7638b4518954e33fd415a8 +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---20000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ded7df29deceaf69925e8394b20e0ab36b0264c3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b387250bef97b73f3826b7b0a593934b91e6eaa45ac79afb4bdbbb6572eba9 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---20280-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---20280-in.json new file mode 100644 index 0000000000000000000000000000000000000000..274a02a16989f3dff32d190f775af2e1ca66c3ce --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---20280-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5f67bc2ae780d9ce239fc3db4fd43dae2cbbc17259aafdb779355066b6ddcf +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---20300-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---20300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26a3dffe56c25ed6dbabc318f7e35d360596f447 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---20300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef17bcc0d2379bd38b2294038526d19a617b8bfda0fa7d11370588b144dae1a5 +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---21400-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe0f0c80b4a9271d75ffd05139d4d001fbb3ec65 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23ed70d9a805227f743d8324658b55dea050d5787ac87229f105a5f72c58e2e2 +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---21500-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45fb4894f10a4f7e64beb931d76abbfb0a2fada3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903e915c1841d2cfe8408222665678d5c1b9ae844e8d6e8415b70617556eb4db +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---21520-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eefd507c320bea9f1dfb972b6ccd8a97b974a13d --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4cff2af807eec68cf6524fd6624e5f7c6462ea9341c2476570e253c6e2ef5b8 +size 464 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---21550-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---21550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65ab4020bde8f72821dcf0844ce191bb9ff9090d --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---21550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef82cd6d1394d8d75a1604dd019f6e775acbb44d291c79cb4b3cf7af8a39242e +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---21800-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de9ea291ef7eb846a26defb96f01c1831fd1f100 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82681f4c49b59dd1d3f271b7aa1adc977fe81ddf4793ed7573f24b922aa3bbd +size 509 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---23000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---23000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f69d70e36ca155d038e280a08c9477c7d34c1a7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---23000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f7cfc2317562cba6ebdfe38a8fb12a3bdbede13244d8674ff9ff818a640fb0 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---24360-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---24360-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f5b0d839f14c5f92dbe30969044ce78b3af0f000 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---24360-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0667eef81ea8d07f90c5e7591e18c28e6299f97f32e85688090215850fbfe1d0 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---24400-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---24400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..71f1f7b2c94605d80bbabe7bfa92d07029b4f019 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---24400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:857b017aa5ca91cd9c61a799487ec7d71785fd8445bfe07c91ce39e38bce45be +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---25000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26b83ff85da09e8675f30f3d574b8dd11d08bc33 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee49a4f823c42406a5da6adbbbe7848716f2597e6e85250f83ab5ff2448b333d +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---25400-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---25400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ce04feff94a92af51a7263c7ed4c5fdcd200f19 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---25400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:810e9e7c1e8ccfbef4b7ac4b92c5ac4f1a23f021fac52fe8f0f8f37f1d91984b +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---25550-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89e6a79eb6de7627e1eb978704ea1aff06ef2a3f --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d135cff8460a1f27ddf47ec77745dd5600ec4d1d39310d6afdecf5818f507e7c +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---25600-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9c8f97748519c56872327cde78a3ed5085f40ee0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4596387c392bc7360178503a460946aeff168d7125499e6cd8ccfc6d26d68e54 +size 493 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---25880-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0351fc64bbd8f8a9e5ea70498c0ebeb506901d39 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c045826bd254b9ec1990cebf5d5eb393e4c8479229aff9164f21c19d9b0da5 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---28780-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---28780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..959a27cc97c15595608c7c16fa10aa3e3af3a487 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---28780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c397cc9bda4de74a0eb860c1d1c2ea28a771eb90bb3dc75e4fb3c1d655745e9 +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---28800-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---28800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb7a4553ce3272b2fa62b5f691fa0c768ea63428 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---28800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e88b91d1d33ab874015de5599edacb0a921efcde8b22a611e51a1865de4529f5 +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---29300-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---29300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cadb50fc2ddf9979132b286798a5b7901594272d --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---29300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e799bb105972f1b88417191ca2bc6af50b7098f58e1ad55fe3f7c10cc18e92 +size 506 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---29380-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---29380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3a565fd737020b0bd42d900f4809c0b3084389c --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---29380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:488c28b4d72710e1d771529037d16ffbb78c28f092124acf2fa01e9fc0f34fa9 +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---30000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3fdb18e6a9a053cff94742656cf0d6c5ac37621b --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80081a212762eb8d9a52bae618597c84a660bf1d7a9ef2696a974886da0bcc70 +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---30020-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b90df2074eb12a378b907626046e08b665498b69 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6d538f281402d83a5e5e95155f16a7a6e998c79e0cd7756a264b98688a0a1ed +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---31650-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---31650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f7ff808fcdf5e5ba60092f217cedc23ccfd6b59 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---31650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d0fcac81e123ea038ede0860de6dcd4e3ca79d380151c8ace2f4c3d676bc757 +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---37760-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---37760-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39fe7059aed19e7d2c72ca2be081316aa38e34d8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---37760-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f9467e799712ce2d423fc0dd69693407bc53022db4df7a939ef9756fb496ea9 +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---37800-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---37800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50ecdf7e2bc19658da36b01c0ea84e3ba8bc54e8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---37800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8f0d9b2cc1db0204a29e169625c2465d9ae5e2fe318910fedc10f74f101c41d +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---39000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..922b819bdd276aaa5fdd7f09602f9275c5fdc33c --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a5f3b784de2145ca8dae4d0e048130d50a7e80af99bafbf29148128ca19789 +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---39100-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..73821288465fbdd1b6cd997d7872ed2b60eab1fe --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef81c48874f14fa07f42ced8f59cf1752fbb2abd56eeceda7eee4440d10eb6a5 +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---43000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---43000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..925df9f63c54943cf6dc28aedc35cb9af0746ca4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---43000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c9c1926600b2ac4d610ccf251c0bfee0ef4b7f58c9c854a3b4612d18226d80b +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---44000-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---44000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..edad1cf46d6da666cd712ae460cab560171500a6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---44000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aca55c84a3f6157f44ba7047d4c7a68e77bd04c1c8af0c9dc81d2cb5640ff530 +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---53450-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---53450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4014a50bc1b63dda956fa75e00a5bcd91beee327 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---53450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e39d5255e1a98cb84510cc984b01c42fd42fe684151355f1c295016df77814b6 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---58590-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---58590-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d7d65f998be8ccce6567fff640abd82f9945412 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---58590-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e5f458a5bc6d963af1f0ae1f78d2f7e7a6ce937775e99b21144d4b681d2a6a4 +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---58591-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---58591-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d40bff67ee4c1b040100a219393a4db96365c513 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---58591-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30188e17ae07882cb1b2f59dc790839331d9b519128be6d306a8507531f74bf9 +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---58600-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---58600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..76509223ad9b37d62d0dfbbf7d25ff16b72baeed --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---58600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975499ce7e844e52ebb564abbe9af08bc5c2d6da0c0b01fb7244b236301ff54d +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---59260-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---59260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..57d2f0e68c26bf09254a2b579ab6bca49e41f0fe --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---59260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1cda7393c6d3b65df2fc0788bd062ec34e6e3994adb3351d7b27763d257733 +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---60070-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ab025ef8cd9097e37b69d9f26a6ca65d703db080 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d160f8e79e994d1207bbe8bc2d8aa9ff447f80734f4dd939279d79640068d17b +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---60071-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---60071-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b10b9b253993a4c0d24e8f618c067206a4a07d5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---60071-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ecfd304254421fd98d4659cc58b01509a9facbbc97a96acf2daccd19f7101a6 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---60100-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3729b6fe522ffab7928d146d06741fd05ba2f955 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e26f5b93636d2c90231ff05056e79878a461ef1e72df01e517fc8fac5dfd9772 +size 493 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---62500-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---62500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec9792223595b144463a96b9b1932f4e97ded8c4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---62500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0d0c270008ea89132e17cb544a581a763455de27d718db8958147ba10149d3 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---67500-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---67500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d31f9fd080d723851963a832681e5f8814347445 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---67500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ead87d25b95e3ed6336e452c6db3191d558650ac8bc5ddc685396790fc0efb +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---73500-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---73500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5c041bc0c7b0a430e85d794ab4b07a3215649003 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---73500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e98eedee2f7395797851252e916b91e1a2c1ee0b057d74aae90906add9d853ad +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---73520-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---73520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fcfe7bd6d3b3550d9957dd141c5df328ae1e50c0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---73520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebde7de051e79966a3c013a7791fac641797520655f554c8a371a7d271436e23 +size 493 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---74300-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---74300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b6c0ac4f6faf6d1ffd23bf740cd48f138267969 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---74300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ed032d3f5be025d61dd2cd927b1413490534bf30348fb2783f2b8702abbd01 +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---75100-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a622e7052db0dd31ac4aa33594586ab2aabdebde --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b6cf7f316c2348f3358e09780fae494a62e27c9a97083a93f3c6eab3c04cfc +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---75120-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b7f62598511e0f42ccc1fe6e6aa397962e0582e --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82715c854202a05a27a58980b635b4820610805bf9666012e63ac74338c23018 +size 491 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---75122-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---75122-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b682ebc316aa54fbd9a35963fe80ac0a91bdd10 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---75122-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c7754c99131251c2b27c36572a222963bbf7a3791bfb384fe0f953f1797bb9 +size 488 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---75150-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7227a01b55b4d7155e2a23db4edbf585b2a24ebf --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275c8902ae95e08d54b0d2cf9351e4c4111432ae9774d67c810ea414285befc3 +size 497 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---75600-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---75600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f6850ed03be5aa6269637d06a6e60577ef67b75 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---75600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4e337b4a518b7f2a124626841dc01c447a89b2982be3e618cb953a7ddcf6c5 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---79696-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---79696-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4fa855908d906961b0c00bacb6eb25153bfb1111 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---79696-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e72523fc48a0ec4ef25dca92f5cf6b1177aed2d02b85ff4394614686b1812be +size 452 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---97049-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---97049-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d867e8e5cb371960495033a59e4ef5380ae332c8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---97049-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41272d0e586e9b782a2797d167ada22b8b6581009221ee2611c51336b176436b +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-00000---97338-in.json b/source/parts/detail/p/public-missiles-birch-ring-00000---97338-in.json new file mode 100644 index 0000000000000000000000000000000000000000..caab679d31f713d3641e7607dc4340ae452c4e1f --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-00000---97338-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83eef9fba0c9b5b8603bbfdc3126e6aa7047dc0d9921e733d201895729a5d44c +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-10000---25600-in.json b/source/parts/detail/p/public-missiles-birch-ring-10000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d583f8116ea0d58d2952f1b25f24d214f9eda78 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-10000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df205ebb763ce0502ebff5c44519e38a9620558832045824a8fb24f5485f6c58 +size 463 diff --git a/source/parts/detail/p/public-missiles-birch-ring-12100---15250-in.json b/source/parts/detail/p/public-missiles-birch-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..753c1aa2b92505d5e19397bdb6639d2cd6cc1ec8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bef9cf15b003750f6e7b2d577bdbcb9248c25b9ffe13daeb6541f402008cc205 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-12100---21400-in.json b/source/parts/detail/p/public-missiles-birch-ring-12100---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..421db5f41d79e0edfeb2984480cb59133ad65086 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-12100---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ab0302a143f7c41a07eb1d6ccf5c7c065b7393b9400df6ed474bd440cb4fa77 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-12100---25880-in.json b/source/parts/detail/p/public-missiles-birch-ring-12100---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ae70c29c78ba82d871ed071991363d16a5a2899e --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-12100---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc1668c1ff4acbac4c27659cede4df43ee2f8994ea7cf60b13afd9005b1295f +size 464 diff --git a/source/parts/detail/p/public-missiles-birch-ring-12100---30000-in.json b/source/parts/detail/p/public-missiles-birch-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe819355b20d92b3c21857eae049fc42ef6dd9c4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28825e7f0f23726dd527f860bb3decb6515340efa0c63ead744a9efafee80585 +size 434 diff --git a/source/parts/detail/p/public-missiles-birch-ring-12690---21520-in.json b/source/parts/detail/p/public-missiles-birch-ring-12690---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d59b07d8df1aaf9cd1ac729252a7a1098b5a8b67 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-12690---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ccc0a360005225f15c8eea813bb0ee03f17ab8835cc00877dafcda54be0eb04 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-12690---25600-in.json b/source/parts/detail/p/public-missiles-birch-ring-12690---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d2d9954842af2afaca432cfd0ed2115ed7a3ffe --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-12690---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bce47327de11893a13952a83736200d985bf70bb560723c7fb883ff254ef6058 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-12690---25880-in.json b/source/parts/detail/p/public-missiles-birch-ring-12690---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0bc57db72d6e3c6382171e20ecc42b8ed9839372 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-12690---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fce9bfe897b0044c53b865824452501798d4dbf6c317ceb46ad7cae29835558f +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-12690---30020-in.json b/source/parts/detail/p/public-missiles-birch-ring-12690---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc57eb14ee4318818814e7021d122925ff4c7c4e --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-12690---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21a7528868f22e4fed558278f663fb024b53aed0290373d42d3738bbe43bc92a +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-13800---25880-in.json b/source/parts/detail/p/public-missiles-birch-ring-13800---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31c605510df03f2ee001272c26426cd952b506c0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-13800---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e924bd9806ea9dc09b7fd3c76e79d2f52411a70f9882dcbe61d812e2816a68b +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-14961---25600-in.json b/source/parts/detail/p/public-missiles-birch-ring-14961---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..063ad04115d24dd3c20c420f39152f30bd9b75e9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-14961---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fa05ea43f8bcd351a31d8ecbc4519d9f8442ebb888e2acc0cb6aa3bd2082b9 +size 486 diff --git a/source/parts/detail/p/public-missiles-birch-ring-15642---30000-in.json b/source/parts/detail/p/public-missiles-birch-ring-15642---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..16e8614393dcd90cf391b141171425cdc3e89fed --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-15642---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866c8f1f11cc0b890ef260f3d6b856db1d18f808ec45c7d595eddd42183bd4af +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-16350---27480-in.json b/source/parts/detail/p/public-missiles-birch-ring-16350---27480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aab3a4e949ea87658d2c5bcaa9789d73c72240ca --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-16350---27480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1291158c634adbb013d90d9c7a762c10213458cf27e4ef673f90777e60bb2a62 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-16350---39000-in.json b/source/parts/detail/p/public-missiles-birch-ring-16350---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc4da86b067ba36250fe684fedf855f66043b309 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-16350---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec693f3dc60e42a6669af986e50968d1a99a286de1ac270acf4121451c5093e8 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-16350---39400-in.json b/source/parts/detail/p/public-missiles-birch-ring-16350---39400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f6eaf5bfd81f7496ace532e73026a88804db492 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-16350---39400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7e65b744ec5a0b8ce2dad8e826890faeb7438d14d9d31986cd7fbd13573b2a +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-16490---21520-in.json b/source/parts/detail/p/public-missiles-birch-ring-16490---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9da094e49b6fe461db80937d301ed28affd2fe75 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-16490---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a280e67088e5fcd9164f433108b2f68e70bd94728f5d8b12cc53da25a952ab2 +size 497 diff --git a/source/parts/detail/p/public-missiles-birch-ring-16490---25600-in.json b/source/parts/detail/p/public-missiles-birch-ring-16490---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..14a4d5f5eb74a5214b74289468dca693f8cc8061 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-16490---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ae4e584f3d7933e22606323ed46f347e1e60a564d9583673c5c1dfb83572604 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-16490---30020-in.json b/source/parts/detail/p/public-missiles-birch-ring-16490---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b08e8c649475ff880b0bd1b39fc7bffc6daeeac6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-16490---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7bb24724713437f770aef342f3c63316cf787e5c24ce0530c9f1c64fbfc6149 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-16490---39000-in.json b/source/parts/detail/p/public-missiles-birch-ring-16490---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..72211cec281ff6f11ceb223abc19666d760eeb4f --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-16490---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0634b9b028a50722edee03668d4b796bc8336a59c5ba73abab32c11d818ee895 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-16600---21400-in.json b/source/parts/detail/p/public-missiles-birch-ring-16600---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ecc66a80dcc97e543402158849d9ad5edb6abeaf --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-16600---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21f7418e35da087186e01e5e984e1b8b1232d178e007252dd995ef9524e5b33 +size 452 diff --git a/source/parts/detail/p/public-missiles-birch-ring-21600---60070-in.json b/source/parts/detail/p/public-missiles-birch-ring-21600---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..722009c9e861b1a55aa822b67724cdad6a601271 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-21600---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d432532368d61ab6264fcf5c2ad64677dce1cca42eee4714023ced9e07a3768 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-22760---25600-in.json b/source/parts/detail/p/public-missiles-birch-ring-22760---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37d7938641dd89ab69adde5ffd01b35d0098b7aa --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-22760---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c21bf7ff8e418bc1451c0dd1e6bf34a2afd449d10826a590ad9279ec5b7a7202 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-22760---30020-in.json b/source/parts/detail/p/public-missiles-birch-ring-22760---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..92036b06423813fd211ccd0a56ff04ac8ff20420 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-22760---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e3ac2d75d9deef98a36510f94f457e049cd001d42d59d0d42de2126dfba2cb +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-22760---39000-in.json b/source/parts/detail/p/public-missiles-birch-ring-22760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e73e8b70f174d9bd3bada8dac115d2c258a76ac1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-22760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c44b40535c41f1e4253d851dafe1ac2984b5d2f5d0245dd3766299f0fd74ad2 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-22760---60070-in.json b/source/parts/detail/p/public-missiles-birch-ring-22760---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03001fefb21171c94a00a72edeb0e1dc560d892f --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-22760---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:097631715caa0ed1871e3d8e658b4d7a9f698f289f208f773f10b45bc057fcc4 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-22799---30020-in.json b/source/parts/detail/p/public-missiles-birch-ring-22799---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3663adbfa13b3a7b51ca61584a19b489929aa8a6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-22799---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63f5449e0d6920948966dec3bec1a938ba4824b836e341c4ee0750f07854e87 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-22800---39000-in.json b/source/parts/detail/p/public-missiles-birch-ring-22800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29b5edc416c842ea000758a237831b40a1766e0b --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-22800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b21d5cd967efe58d5bce10b4a1ff050481adc990ef1aebb46472d6b1b0facd90 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-31260---36198-in.json b/source/parts/detail/p/public-missiles-birch-ring-31260---36198-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60dfc591ffcfc8a50897dce115998ae6d3d9cf36 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-31260---36198-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e97d4d3eb6ca72a15e552cabc7f027d6aa0356af7054d326b97899e17d74b8e2 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-31260---37959-in.json b/source/parts/detail/p/public-missiles-birch-ring-31260---37959-in.json new file mode 100644 index 0000000000000000000000000000000000000000..05431e5a38c09bf0c2bd00aa66a66d5b53eab113 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-31260---37959-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:545d0cf3420df5b4b34aa1b72e695db6b3ba96a6d6bd551eebb271dfa9fb364f +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-31300---39000-in.json b/source/parts/detail/p/public-missiles-birch-ring-31300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..17ade46bc52a7490f578389d14760841fb3edbce --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-31300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451b298c186694882571bbca78f36056839250a0b838e93801450fa6e435110f +size 494 diff --git a/source/parts/detail/p/public-missiles-birch-ring-31300---75100-in.json b/source/parts/detail/p/public-missiles-birch-ring-31300---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c49d97efc0ea51b5b395a1130bb27705f437c348 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-31300---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac0135eafec9dd4024f9b13c09c98692ea38a3370f3ca88869c2ff4a391f220 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-40000---75150-in.json b/source/parts/detail/p/public-missiles-birch-ring-40000---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9de96022df860b5ebf3abe3866cdfabc09760082 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-40000---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6fb25175bf86cdedee3e805a02066f84b6e3f4f1d9c4ad0673e9ba207a967b +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-40240---60000-in.json b/source/parts/detail/p/public-missiles-birch-ring-40240---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..97b2d20a3397f38f743d8a5b191afc901b70dedd --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-40240---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d53c12364dae4ff591af7c1b62a74b813548c0eae34d6a1fb592eb7a2fb817c +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-40240---60070-in.json b/source/parts/detail/p/public-missiles-birch-ring-40240---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c20bd715288f03fcbc79d753bb04bfaa9b4ac1b3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-40240---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:241392eb0db4e3129e570706146ee9a3266ad27881eb0af5bb9d3e49ff050ee3 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-40240---75120-in.json b/source/parts/detail/p/public-missiles-birch-ring-40240---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..add032c8e12b3f6ffc684489a869c964392bc7f2 --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-40240---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42048f8d51cf4e205a0a054847b87cecd0a80fc97741326e9ad621ba348171f3 +size 492 diff --git a/source/parts/detail/p/public-missiles-birch-ring-73400---75100-in.json b/source/parts/detail/p/public-missiles-birch-ring-73400---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..578709cd0a3d60f811ca5f886a3647f83ccac10b --- /dev/null +++ b/source/parts/detail/p/public-missiles-birch-ring-73400---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ce650b3dc41aaa2147176c8fdd5a62715df85085a1c44ad060af973ea9f659e +size 452 diff --git a/source/parts/detail/p/public-missiles-carbon-fiber-ring-00000---28800-in.json b/source/parts/detail/p/public-missiles-carbon-fiber-ring-00000---28800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f280177c2b686520d9f89b4841bae8f40c3db096 --- /dev/null +++ b/source/parts/detail/p/public-missiles-carbon-fiber-ring-00000---28800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c09b03ee1abb0b87b26dc8b20026020aa0606e66de85dc611764ee1aceff3f9 +size 473 diff --git a/source/parts/detail/p/public-missiles-carbon-fiber-ring-00000---30000-in.json b/source/parts/detail/p/public-missiles-carbon-fiber-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b225b155150ceea45064b9084b98206f2e6cf2ae --- /dev/null +++ b/source/parts/detail/p/public-missiles-carbon-fiber-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:002e264ccd445bd63ad205c7956b88b54bdec1597328f2bfd733f81f7375c757 +size 473 diff --git a/source/parts/detail/p/public-missiles-carbon-fiber-ring-17250---18500-in.json b/source/parts/detail/p/public-missiles-carbon-fiber-ring-17250---18500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e5aff651432b9af311ebc5dc055a8d564fed5d59 --- /dev/null +++ b/source/parts/detail/p/public-missiles-carbon-fiber-ring-17250---18500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08b084efd55e4a9c71327e939f7c1ee63eafae027db5df2aff2543a127ffd13 +size 473 diff --git a/source/parts/detail/p/public-missiles-carbon-fiber-ring-28800---30000-in.json b/source/parts/detail/p/public-missiles-carbon-fiber-ring-28800---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7c76d44edde10c572a79396113053170b023665 --- /dev/null +++ b/source/parts/detail/p/public-missiles-carbon-fiber-ring-28800---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e87cfd6a789ac182e4311c254819481bec41879275c2397ae8220385adb13a83 +size 473 diff --git a/source/parts/detail/p/public-missiles-cardboard-ring-00000---39370-in.json b/source/parts/detail/p/public-missiles-cardboard-ring-00000---39370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3c716e08f5017472a95493b2795008e05d9fd755 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cardboard-ring-00000---39370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a01c5b2fd6503ace56c02c5b053395fbf4c56e7b7434e46e98769d25219c44d3 +size 464 diff --git a/source/parts/detail/p/public-missiles-cardboard-ring-09819---39370-in.json b/source/parts/detail/p/public-missiles-cardboard-ring-09819---39370-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e737679df59fa935c573b7c8bb8caaf9ba93e5a1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cardboard-ring-09819---39370-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28aa4ed6760c63aeebeeaba3b90da3f32be0f5c250113202876ea24f58d81e0 +size 464 diff --git a/source/parts/detail/p/public-missiles-cardboard-ring-10000---15950-in.json b/source/parts/detail/p/public-missiles-cardboard-ring-10000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..145d3e7b33923324be76ebee2e331bdde0d0c925 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cardboard-ring-10000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fcc21170f2dbb506bd3b13100070b52d72d3a245f78db47e87ada332459ee14 +size 506 diff --git a/source/parts/detail/p/public-missiles-cba-15-fits-pt-15.json b/source/parts/detail/p/public-missiles-cba-15-fits-pt-15.json new file mode 100644 index 0000000000000000000000000000000000000000..61a60580e39c5b58b1f3dccb6770ee2702ae779a --- /dev/null +++ b/source/parts/detail/p/public-missiles-cba-15-fits-pt-15.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b69da89be1e8c032d17fdc4ec9fcd436aa28439b3e92da485b532e84fbcd05 +size 405 diff --git a/source/parts/detail/p/public-missiles-cba-21-fits-pt-21-or-qt-21.json b/source/parts/detail/p/public-missiles-cba-21-fits-pt-21-or-qt-21.json new file mode 100644 index 0000000000000000000000000000000000000000..016ba2bbd98cf5e76810564c4bd57cfcc9efc46e --- /dev/null +++ b/source/parts/detail/p/public-missiles-cba-21-fits-pt-21-or-qt-21.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa16e98a25bc09da5ac5fd8f60d2fe08c817f4ce39ef4c2f23fc6d069df81ad8 +size 443 diff --git a/source/parts/detail/p/public-missiles-cba-30-fits-pt-30-or-qt-30.json b/source/parts/detail/p/public-missiles-cba-30-fits-pt-30-or-qt-30.json new file mode 100644 index 0000000000000000000000000000000000000000..af9a26d9cbfccdf44a5d0d1422dcc31017ce4e9f --- /dev/null +++ b/source/parts/detail/p/public-missiles-cba-30-fits-pt-30-or-qt-30.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4031cad31f70911505368b71d6a0cb1148ce306d7a9596696a499e17eeb77000 +size 443 diff --git a/source/parts/detail/p/public-missiles-conical-transition.json b/source/parts/detail/p/public-missiles-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..1efae9025396694699fe05c1bfc7e80f9905a1f3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61306b58d66ef6e9ef83b01163388de4d79a8edac38174e8ff02d31a0fa338fe +size 615 diff --git a/source/parts/detail/p/public-missiles-cpr2k-39-system-cpr2000.json b/source/parts/detail/p/public-missiles-cpr2k-39-system-cpr2000.json new file mode 100644 index 0000000000000000000000000000000000000000..675511005f5e16069a2558912cf44a42d0be6aab --- /dev/null +++ b/source/parts/detail/p/public-missiles-cpr2k-39-system-cpr2000.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e5a67ccf5ac8a58cd9a080aa36915aef96a6fbaf62c6c12771ea4a4ddc3ac3 +size 427 diff --git a/source/parts/detail/p/public-missiles-cpr3k-30-system-cpr3000.json b/source/parts/detail/p/public-missiles-cpr3k-30-system-cpr3000.json new file mode 100644 index 0000000000000000000000000000000000000000..78c70ec73bfc15bf066b97a9a38aa9bb7359ff33 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cpr3k-30-system-cpr3000.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:021ef1fb6be54f3da24b60a2fa0476bfaefdbed867d0a7eb1c544d3cc50e2c5c +size 427 diff --git a/source/parts/detail/p/public-missiles-cpr3k-39-system-cpr3000.json b/source/parts/detail/p/public-missiles-cpr3k-39-system-cpr3000.json new file mode 100644 index 0000000000000000000000000000000000000000..4f719adfd515d4820aa050f72cf18d07447430b8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cpr3k-39-system-cpr3000.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9fb2d238aa42ae3c7bade423fbdb94bbbb11086087f9086c206508cc5c2198 +size 427 diff --git a/source/parts/detail/p/public-missiles-cpr3k-chacyle-cpr3000-electric-match-charge-cylinder.json b/source/parts/detail/p/public-missiles-cpr3k-chacyle-cpr3000-electric-match-charge-cylinder.json new file mode 100644 index 0000000000000000000000000000000000000000..3dc64e20aa0c558aec0920a1201b5c3ae580b175 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cpr3k-chacyle-cpr3000-electric-match-charge-cylinder.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7efec4de8ec96a2f41e3799edac7ad3c6e7b2941138f0e4b48e0f4ee96fe1ca +size 541 diff --git a/source/parts/detail/p/public-missiles-cpr3k-chahol-cpr3000-charge-cylinder-holder.json b/source/parts/detail/p/public-missiles-cpr3k-chahol-cpr3000-charge-cylinder-holder.json new file mode 100644 index 0000000000000000000000000000000000000000..bca75631921fe4888eb0d0ea2135550bf4539530 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cpr3k-chahol-cpr3000-charge-cylinder-holder.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39433daacb35172771ec62a13a36776662b16d6181975b9f15d4ba22424b35cc +size 505 diff --git a/source/parts/detail/p/public-missiles-cpr3k-fam-cpr3000-fore-altimeter-mount.json b/source/parts/detail/p/public-missiles-cpr3k-fam-cpr3000-fore-altimeter-mount.json new file mode 100644 index 0000000000000000000000000000000000000000..4e77fdd544f2189ea26d64d227512e68535df4e7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cpr3k-fam-cpr3000-fore-altimeter-mount.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f43d41b2aaf3e0e07d612a0ef1287709ce8881c02aee2c9c946f25cfaa3bbf8 +size 485 diff --git a/source/parts/detail/p/public-missiles-cpr3k-sleev-cpr3000-aluminum-threaded-sleeve.json b/source/parts/detail/p/public-missiles-cpr3k-sleev-cpr3000-aluminum-threaded-sleeve.json new file mode 100644 index 0000000000000000000000000000000000000000..79d53b3da21bf9d74eaf1c10c2427441bc7dca12 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cpr3k-sleev-cpr3000-aluminum-threaded-sleeve.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2805a28d9060598873ad52e4b15fa5e3826d4c2a94f4f5dcdbf4aa6811c45a7e +size 509 diff --git a/source/parts/detail/p/public-missiles-cpr3k-tac-cpr3000-aluminum-threaded-coupler.json b/source/parts/detail/p/public-missiles-cpr3k-tac-cpr3000-aluminum-threaded-coupler.json new file mode 100644 index 0000000000000000000000000000000000000000..2fab60bf3b6beb12d0cf6c8fc59f3b7c6e27de25 --- /dev/null +++ b/source/parts/detail/p/public-missiles-cpr3k-tac-cpr3000-aluminum-threaded-coupler.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06807254a21a536b66155b039e9baa5ba03ae999a373a7cafde919ba755743dd +size 505 diff --git a/source/parts/detail/p/public-missiles-dring-10-1-inch.json b/source/parts/detail/p/public-missiles-dring-10-1-inch.json new file mode 100644 index 0000000000000000000000000000000000000000..8da01f820e3349939685ba5220b0b668c5224be0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-dring-10-1-inch.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49cec1f7ddd05e7d6bb6037c0a8a796519a2c81056987a153ee57c3aa68dddc +size 395 diff --git a/source/parts/detail/p/public-missiles-elliptical-transition.json b/source/parts/detail/p/public-missiles-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..bc9737d715ebdbc2389d2f6fa69c1d7924a635b4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ff5d09954fafedb63e2722e8cc430b9231b7e99a746b3322fc91b72b88eaf4 +size 657 diff --git a/source/parts/detail/p/public-missiles-eyebolt-assembly-18x24.json b/source/parts/detail/p/public-missiles-eyebolt-assembly-18x24.json new file mode 100644 index 0000000000000000000000000000000000000000..b7ba3e7f8c91492191b56f940e4fead5987876f0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-eyebolt-assembly-18x24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ace342bcc529d62a1ad6b11d57fb47286598b0d652adb4aeaaa4fd8c6d033d3 +size 423 diff --git a/source/parts/detail/p/public-missiles-fiberglass-ring-00000---37800-in.json b/source/parts/detail/p/public-missiles-fiberglass-ring-00000---37800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec213305d612549169cb87eff4fc04ae9d4aabd9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-fiberglass-ring-00000---37800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bc577be2fcc18cbd562fd8150b0031e05350bb432ccdb5c3ca0f05239bae42 +size 503 diff --git a/source/parts/detail/p/public-missiles-fiberglass-ring-00000---39100-in.json b/source/parts/detail/p/public-missiles-fiberglass-ring-00000---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5ae9e183bd6689566e7ff4321aeecb5a0c569dd3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-fiberglass-ring-00000---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c983a089401b48772f19a04e17ceeafdfe502d958c16ac06e7ebfde1b3cb8122 +size 467 diff --git a/source/parts/detail/p/public-missiles-fiberglass-ring-30315---39100-in.json b/source/parts/detail/p/public-missiles-fiberglass-ring-30315---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2e80063b1c21790726b94279e4a90cbd7b364a57 --- /dev/null +++ b/source/parts/detail/p/public-missiles-fiberglass-ring-30315---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62874d48b0271d26ae3503b2a7cfffbdfdc819accfbbe894b6a96f2c8fbd0533 +size 467 diff --git a/source/parts/detail/p/public-missiles-fiberglass-ring-31300---39000-in.json b/source/parts/detail/p/public-missiles-fiberglass-ring-31300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..088cf8c56b484ea2a8c1c1a636567d70baed02e0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-fiberglass-ring-31300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2433f7e21092b59088d85c4f0195d8d46e1ba1f338a7bec37e4645f53f03d8e0 +size 493 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-loc-ring-00000---30000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-loc-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70c97ab63f9bf3f522d13deca0d405ad97aebb83 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-loc-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:894f2b38e3e3ebcb96b72ff5eb23439982937ca7e2571a750f2cff635a87dfb3 +size 527 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-loc-ring-00000---39000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-loc-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3da1bf297ff90949612c7694b223efa0f146f61a --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-loc-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2092d604d8456611420093631ac489580ff69e6cc20d77e1c978aec84262729d +size 527 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---14300-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---14300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bd6ac2f0569a2b5810097149c00589e646c6101d --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---14300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17371cc0ac5264d904cdc1140b24274cacad0b060bb23f5e56c13c2d4bd80a71 +size 479 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---21400-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d18dabea572683214eed20a7d08a5c9659f2389f --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd2c184a7673468bde97e5bdc382341df765796069cdfd5782f4b46fd3e7d4b +size 479 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---21500-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dc58d667c2234ea2f0a5a1729f36d07bb349c975 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8bf997c13fe72d5de18a0a9d204bb2d929e6597dabcee9cfbd098b35a247eb6 +size 515 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---30000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d3faa57f3d920f1f2f84ade2462eee2992251ea --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34cc8a98fd207d4b80c0595efd3a204721ad9d850a09e44bee40001ce808b672 +size 513 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---37710-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---37710-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d81e78a87f3c4ed1d18d7fce0bee856ccc99577 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---37710-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12b2e458587c09126d3f760f3f1740904d583b8c0e8960885dd962a32902821f +size 479 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---38976-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c213568020ee023d8fc2a5dd50acad16b4d9edfb --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b889a461ca258085201e24597f6d15ae1ec75264d8f0067444d06d0d8585524 +size 513 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---39000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8544bf85171c5ab630685cbf7d589da45b14ba9a --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c1545a18d5d57fbb9c0acceb0dbf8deee99114aa82d812ad7e2b77bd72c285 +size 513 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---58000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---58000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e0753ea64dcf5d5317932e9567c83b2ec4e7410 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---58000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff2251b9565c87b25d53862df44dc61df7c91711106e8a69229907648cf2ba03 +size 479 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---59000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---59000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..412f42804d9f551c060e1ac54fd021bb918a2eb1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---59000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af58af642459307a1cb4c473c2a90dc77b2fac6773bb4e3aeb77ff7828efd706 +size 479 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---60000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d19d9176760824def2efd3909933f68cb221cfc --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af6af1f2006178392496179c5ad93d6d6fe02a59443dfcbd53f5dd1d1f6f030 +size 479 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-01640---39000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-01640---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64a20c6eeb0b76e204f1b0320dc52d6be4b46c21 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-01640---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502d817508a13c17aa1c1a56986132da8c812d8036ea3aae8f588987d7c49994 +size 521 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-02500---38000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-02500---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f22fb4f5faf396b14cce4014599cbdf43a07365f --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-02500---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5a460d719c4a7292653cc6d8f1fe06ff69d5a32ce48635fba9431ec6f6282ab +size 513 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-02500---39000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-02500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75d9ebae323475235d27905c8e039a40f45574eb --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-02500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eabfc8a60aaa2498a7ac836924ba5329922f6034c0e77b8fa7200bf7492ebb40 +size 521 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-22770---38583-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-22770---38583-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a37f6167d0bc60835ef401366636089ecdc1ac3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-22770---38583-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fca084664153babf8e5945c8399370c0049b4d0fab4da23b387b3c986879365 +size 479 diff --git a/source/parts/detail/p/public-missiles-g10-fiberglass-ring-31250---39000-in.json b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-31250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62f2440feadd2965cb2ffed681b5074387af9239 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-fiberglass-ring-31250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1881ca3f08e25efca4df9195dc2808c84f0ab8c2ab12a3a2ca9f327017da273 +size 521 diff --git a/source/parts/detail/p/public-missiles-g10-phenolic-ring-31260---50000-in.json b/source/parts/detail/p/public-missiles-g10-phenolic-ring-31260---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d6c02c8c765f26fadea147ffa4bf04df79c6af0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-phenolic-ring-31260---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00560558e499b7e1366d4fc99f33a028fd4be457321b8f3df17df95fca1ae0a +size 515 diff --git a/source/parts/detail/p/public-missiles-g10-pml-0062-ring-00000---21500-in.json b/source/parts/detail/p/public-missiles-g10-pml-0062-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..762f95e0427f9b6bb37a98f199f52d15c9f86a1b --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-pml-0062-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd3ffeb357a6253c01b2867632bdfe66988c7dacd8ad8b927d88d92e6c80675 +size 512 diff --git a/source/parts/detail/p/public-missiles-g10-pml-0062-ring-00000---75100-in.json b/source/parts/detail/p/public-missiles-g10-pml-0062-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7913ef944ff11394a79b195b27ffbb91701c96f7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-pml-0062-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ee7c999dfcf03fd5f2ee83886b0365db19096c9b96288e86b985542edbc6a8f +size 512 diff --git a/source/parts/detail/p/public-missiles-g10-pml-0062-ring-40000---60000-in.json b/source/parts/detail/p/public-missiles-g10-pml-0062-ring-40000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8d9bf25bf4588c64251305c0261444ef3aa4d72 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-pml-0062-ring-40000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1891d220ae4eeaa4eb8b0bd27b8b6b95a04abac0c70b460eeae55958a2de6a0a +size 484 diff --git a/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---21500-in.json b/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c9b90d80c181dee0e1271bb9a5eb3ad57c98e5e4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ce99b8b4b09ba95e955f6bf0e1286d5d8b13bd1c791042e55a600c8aba217d +size 512 diff --git a/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---39000-in.json b/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4684959a07da0fe166ed2f6beca1722d8368af01 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be5449f3f478eeffd436765fc0348b972dcfe57066135400bb5f7e1a3a20102 +size 510 diff --git a/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---75100-in.json b/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dacea0daa80043fdf9900adcc828915aa1b4615a --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-pml-0125-ring-00000---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972e67f17fa1a4f61992add5e77d6ae1cb27cfa9450a3cd6f0a63c59ffd51b27 +size 510 diff --git a/source/parts/detail/p/public-missiles-g10-pml-0125-ring-22800---30000-in.json b/source/parts/detail/p/public-missiles-g10-pml-0125-ring-22800---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b3d4bf5d0a5db9bccaa9ec64d169dd9507f068f4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-g10-pml-0125-ring-22800---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d747de830ab5eb966497d87839cda912977b7f779d6793ff3ccade0324cd37 +size 518 diff --git a/source/parts/detail/p/public-missiles-haack-transition.json b/source/parts/detail/p/public-missiles-haack-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..8da176d4868c77075d76f8cb02293cb94eaffba4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-haack-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d6db935b753f44773ddc242ae8e476c911910991d258a4fa04b39ef23497a7f +size 632 diff --git a/source/parts/detail/p/public-missiles-hdwe-eye-18-18x24.json b/source/parts/detail/p/public-missiles-hdwe-eye-18-18x24.json new file mode 100644 index 0000000000000000000000000000000000000000..8620866400f52b0964fb13a2aafcf7214efdb7ac --- /dev/null +++ b/source/parts/detail/p/public-missiles-hdwe-eye-18-18x24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df04e9b79e87c3dc72c80a16042742245815e52d6466bd73ce7862705b586d74 +size 405 diff --git a/source/parts/detail/p/public-missiles-hdwe-kl-10-small.json b/source/parts/detail/p/public-missiles-hdwe-kl-10-small.json new file mode 100644 index 0000000000000000000000000000000000000000..9aa58a3311e5c2da3cf9ce91ee7911132ae219c2 --- /dev/null +++ b/source/parts/detail/p/public-missiles-hdwe-kl-10-small.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58066b4fecd5ebb727234e76b9115fbcc5d04d60fd839a65637c9bd57463cee +size 399 diff --git a/source/parts/detail/p/public-missiles-hdwe-kl-20-large.json b/source/parts/detail/p/public-missiles-hdwe-kl-20-large.json new file mode 100644 index 0000000000000000000000000000000000000000..f8ee2ce04472bd117f170511ed8ad4fd1a8f2d4f --- /dev/null +++ b/source/parts/detail/p/public-missiles-hdwe-kl-20-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3059934994e42975646997b4be67b3123a2557ba6cd36fe16f72f26ce3f6dd8c +size 399 diff --git a/source/parts/detail/p/public-missiles-hdwe-nut-316-18x24.json b/source/parts/detail/p/public-missiles-hdwe-nut-316-18x24.json new file mode 100644 index 0000000000000000000000000000000000000000..3869b2e4381d110ac13462a52d459e31bd2058e7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-hdwe-nut-316-18x24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0269b50ff7ebb036946456fca43c974cda1cea87a4039067f5fda4f1ba2045d +size 409 diff --git a/source/parts/detail/p/public-missiles-hdwe-ublt-u-bolt-516-dia-x2inw-x275inl-wnut.json b/source/parts/detail/p/public-missiles-hdwe-ublt-u-bolt-516-dia-x2inw-x275inl-wnut.json new file mode 100644 index 0000000000000000000000000000000000000000..aa5029fceac4be1f817dd46f3caf3b366dd81bf2 --- /dev/null +++ b/source/parts/detail/p/public-missiles-hdwe-ublt-u-bolt-516-dia-x2inw-x275inl-wnut.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5542d049908d1f114cdd602a4d862d107e5577a1c65e1643b42d1fe53bae755f +size 513 diff --git a/source/parts/detail/p/public-missiles-hdwe-ubolt-set-ubolt-for-fncs.json b/source/parts/detail/p/public-missiles-hdwe-ubolt-set-ubolt-for-fncs.json new file mode 100644 index 0000000000000000000000000000000000000000..f291c90515961859d43e99e92480c5b435a1ba2e --- /dev/null +++ b/source/parts/detail/p/public-missiles-hdwe-ubolt-set-ubolt-for-fncs.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e62e361a5db66f05c1d369a7e875802e7f6dc2897a0bc584b095c7fb5a53a7 +size 449 diff --git a/source/parts/detail/p/public-missiles-hdwe-wash-316-for-hdwe-eye-18.json b/source/parts/detail/p/public-missiles-hdwe-wash-316-for-hdwe-eye-18.json new file mode 100644 index 0000000000000000000000000000000000000000..ef5ab63d896573b64742d5d97e1762cbd230296f --- /dev/null +++ b/source/parts/detail/p/public-missiles-hdwe-wash-316-for-hdwe-eye-18.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b808cfd07a520212c49e5b93f04c7dea779f9c642c70a35c4de57b251f8d79c1 +size 453 diff --git a/source/parts/detail/p/public-missiles-les-ec-cpr2000-ejection-canister.json b/source/parts/detail/p/public-missiles-les-ec-cpr2000-ejection-canister.json new file mode 100644 index 0000000000000000000000000000000000000000..df4aa3da6bc01b4908d7dcb3919754cd2ea40f02 --- /dev/null +++ b/source/parts/detail/p/public-missiles-les-ec-cpr2000-ejection-canister.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dafb8230fd3a5795749cb3991266809bae102182b33716d51e827ee64788de5 +size 461 diff --git a/source/parts/detail/p/public-missiles-lillunar-nose-bplate-whdwe.json b/source/parts/detail/p/public-missiles-lillunar-nose-bplate-whdwe.json new file mode 100644 index 0000000000000000000000000000000000000000..91d56f3d362fcdba1937ffa77ba672d8b8836dda --- /dev/null +++ b/source/parts/detail/p/public-missiles-lillunar-nose-bplate-whdwe.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a0f1042e141764bcb59135a6a670d04063963e0c2bfd8b234c6b75de71eb140 +size 439 diff --git a/source/parts/detail/p/public-missiles-lite-ply-ring-09760---15700-in.json b/source/parts/detail/p/public-missiles-lite-ply-ring-09760---15700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f30003e04ecaa1aa1142b0bdfa402ff7759df99 --- /dev/null +++ b/source/parts/detail/p/public-missiles-lite-ply-ring-09760---15700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0a3e531d3daa8d519b66457ccc7183e124cdcd69c1f98618737defeecc9923 +size 461 diff --git a/source/parts/detail/p/public-missiles-lite-ply-ring-12100---30000-in.json b/source/parts/detail/p/public-missiles-lite-ply-ring-12100---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cf6425abf686f3f92aa702fb9b4a5ecd8c2a9908 --- /dev/null +++ b/source/parts/detail/p/public-missiles-lite-ply-ring-12100---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78029768816e09479c5c0e3e7ef428e4547b3c85155f452b5a544e8ba58b9b46 +size 461 diff --git a/source/parts/detail/p/public-missiles-lite-ply-ring-31300---39000-in.json b/source/parts/detail/p/public-missiles-lite-ply-ring-31300---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4c9eb1420871508b3d0c42b5e053cc5972087f61 --- /dev/null +++ b/source/parts/detail/p/public-missiles-lite-ply-ring-31300---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206e781b112b243e4ec43830b17ff6a17bf86765bbbe091bc046188462ef1f5d +size 503 diff --git a/source/parts/detail/p/public-missiles-ltd-carbon-fiber-ring-43000---44000-in.json b/source/parts/detail/p/public-missiles-ltd-carbon-fiber-ring-43000---44000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df9691e9b8e24cf6accaa82c84cf988ecfe9c6fc --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-carbon-fiber-ring-43000---44000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a1c9bdc6b893508159904c08c1b8adc51d596129c94d7b52ed13ee768edca6 +size 527 diff --git a/source/parts/detail/p/public-missiles-ltd-cardboard-ring-73520---75150-in.json b/source/parts/detail/p/public-missiles-ltd-cardboard-ring-73520---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4ad87378aecb33a5c4359cc888e75412ae54d63 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-cardboard-ring-73520---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc41654d4ae139af7ecfe04b1705ac707e30df6e1f49c037e5018f3e5fad51d +size 518 diff --git a/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-00000---59000-in.json b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-00000---59000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..580b56b2d19c9c6ca6e7bbc432621f245c739f71 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-00000---59000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb9d08354f8c2c1daab116b9645a735ce1aca4b39cad583f5bc828881cb0758 +size 485 diff --git a/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-20200---21400-in.json b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-20200---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40c474c3740e72ce161d67b0ee4c77fbb2ee499e --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-20200---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53d572fac78380b3a33af1d49497fba6cfb903f08a7ee95a2b844b9d9bf615d2 +size 485 diff --git a/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-20300---21500-in.json b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-20300---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f6fc56025e98ad66f1e049f52ddfe2c5b40a4300 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-20300---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e19ed9d1831ce46dbcdff181bf9028c9eb0ab6cf90e020fbcfdc5cc71c9c1731 +size 521 diff --git a/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-37800---39000-in.json b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-37800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31fa8f404b80e884fee8ab8feed2b866c8e4ca4f --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-37800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d08af96224abe81554732bfd33be7ba8981d21f546c4b666397a5a1515302cc +size 521 diff --git a/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-38000---39100-in.json b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-38000---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2586382f341deb31c8636c30fd0d3381525b8def --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-38000---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5486819da1c170bfe043976d42e95610059640581a6bdb56e1c8632baf3d7ff +size 485 diff --git a/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-58600---60100-in.json b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-58600---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d88f2379a4cea62dfc98b85b717cad977b8d9a57 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-58600---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbf8968d46a0dbfbea729c6f8891e7f6ab683bb0d970eee9a881a3bbea1cbf4 +size 521 diff --git a/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-59000---60000-in.json b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-59000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85e2d3508ae324e9a3b43c703986980ecbe643d8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-fiberglass-ring-59000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dab96220a9835cfaa937aabd9456f6b51efbc7566521b43e0938a7bd05894af +size 521 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-13700---15180-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-13700---15180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39c68e113c0da75a6702739bdea0b671e9320d7d --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-13700---15180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a8d7196a9a955fcf718d5694b5f641388a6dbc3db5deb45f72f2fe6b9cb24d +size 497 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20200---21400-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20200---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c11077f6d29d8c52b411f6b66b6d7edd61f15665 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20200---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5575fb77f82835cc77e51d778600e5798d8ef4a02341d0c2cce56aaf93061f15 +size 497 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20280---21520-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20280---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..af841e921e0bfc8076aba031d51bea8180446f7a --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20280---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412342cb93487297d36889e269af00039f5a86a0d2556610ced48621575e5e5d +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20300---21500-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20300---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..52775e47c07fe6c8b87831a9c8fa0752a02629de --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20300---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a671d6e978937a166a44b0ad8c8f7e2cc4d9a70505ae159976c01edbd834ac9 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20400---21300-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20400---21300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..caac945934662faee8fef172547a954265c7cdc8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-20400---21300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876fdac36ad2eeb7a0f5264986d7a4b278c4c7ea28b7ff5583db1493a0a4b54d +size 497 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-28750---29980-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-28750---29980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3cc8d6abfb03ab51ad0630f89b8b68892b20b21 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-28750---29980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066d4b54c5ec484fb4e25763952ac768d71c3c27998f25dc86a24dd0f10c6a7e +size 497 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-28750---30000-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-28750---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3cda5655a6d66b01a45e1dc94dd8991ff75e7fc5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-28750---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8b79fd78d08d94cebf22af88783b1e87af1f0b74c5bea1b98013b1a4dfacd7d +size 497 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-33980---37750-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-33980---37750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6273a71aecebd58ba759a8cb63eb03761f0fe1e --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-33980---37750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d68b30520f61d3f3a3d2489e15464a2222c16cad95ab885a558f74c629e09aff +size 497 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-37760---39100-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-37760---39100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e7a9d98e4c42de6e70c05fade0124a87af8c5c6d --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-37760---39100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f18258f10dd28db02d5da96a9b3179c456f8817a22962b7e6f6a56a5cf1a97b6 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-37800---39000-in.json b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-37800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e0ba9f2b9373079152a7c970ac54a181838fc7b7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-g10-fiberglass-ring-37800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80b7135b6e76707dc330ddf878f2ba953ed205056cdd9e65816e69d43ce8e6c +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-00000---25579-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-00000---25579-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37a44a4c164bec64659af660fbd43b8a5baa8fd6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-00000---25579-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44b5fd297575e40c1a203aa11870525dac8b4fc0a8f82acdfe41998e01c7dd8 +size 497 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-111600---114100-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-111600---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d459a779f706ce6d36616f629d5863311d88881d --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-111600---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b22b3641917f2092c460126bb793e430fb1967214ee3ed8cff006b8ee79c2a5 +size 544 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-112000---114000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-112000---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1b3fd2533f21d043bbb9d42a96dfcf15b134154 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-112000---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fb82abf1ed9c537553fece75281be9ca72fdfab54edb41c743e0da7d140f6b0 +size 539 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14000---15200-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..938a7245cdd7c736e05ddb6da642e5ab35f82087 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c4dbe6891c207af30e4e586ced095e6af10ccdf7b065f03ba7c611320092ce +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14010---11450-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14010---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f391a609ebab86ecaf09eff4d539c03c9bea7ad9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14010---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e2a3863ccc4ab53fce6445bb0f8de3acf85c682037a2e2672ab79717a3fba61 +size 542 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14010---15250-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14010---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a47305ab57b96b345156dd93b021a1bea1f53f09 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-14010---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:742b30630a7098780841055736f428550e2c3d5c4b1bea41121d82767ad82555 +size 538 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20280---21400-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20280---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ef888425b3c394c47df2f3154b5ffd8317f31c1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20280---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c737388c83311dba2a5e967aa7b0d5ed6e37064debff55bce322d18da16d395 +size 538 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20280---21520-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20280---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0a506cfbcd127fe3d90695594d94d6202e0bc48b --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20280---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f7d544e7980b05f4bd0a0821b7d6474c752649b3796566469dcf1d6cc1f73ee +size 510 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20300---21500-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20300---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1562f4b3fca88fa868852d59438709eb5b1f135 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-20300---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8d7d8fe36027a9d00d8280ebb3362e06176dbf03a9ab8948003c28b0f0439b +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360----312194-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360----312194-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9d2e2a3cdf161a29760df90b5ec8444f2e4f94e --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360----312194-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a448200cbf324fe5cad910956697608b4051bcd428b3d67026eca71c8039c165 +size 549 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ef9bb15cdaebe12adbf339326ddb8373612836c --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a90d19e602ad47d358ab63b260d393cbd98d2ae7fff003563cd1be6539dcf7 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25550-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..709a2eb5b2abe8819e88c81a8c71058889b9596c --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db5bdd11d1363c15ba4e0b6761f3d01d8bb715817483115d607fe8262dc32b3a +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25600-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b993ffaf3fc0aae1e557acddf7ae44ad9da8f88a --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ac107cb8c1a3655840148f18bc260c9478fc0a0c2c9e362eea7da6de7d3334 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25880-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00b7e729b622f53fb08a428c1062ba37e5fd30e7 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24360---25880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eec1477d74d4438be6cbfd83750ff2c867aa719989b7925ce4dd57c9c388c552 +size 541 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24400---25600-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24400---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..768f6d6b3e4a2d411420f71a92d0cb234e4d7c73 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-24400---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d16535adef2db94c3cae7a5de71edb74a9f629eff26115c85ffa698b57b7e7f +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-27760---30000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-27760---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82eb1560a80a5624f10bb15bfa6684c4da85b8f0 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-27760---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a59ba9fdb92b963175789ece13be9ecf9389cdc81914a5f40d4f16881b8b2be8 +size 541 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28780---30000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28780---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..22b61695deca66dd029ab12f61932a5f45bc6199 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28780---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ed199f1b63280b790dd504fe25382e35618ed29c450b11d1454593dd5ac4bf7 +size 538 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28780---30020-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28780---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6590326d84ee426dd823153ff39b5e1c53938042 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28780---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3aa4a638952dd5fe10e75cdba91dadc94679a2aac477216497e416f0e14df61 +size 538 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28800---30000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28800---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1541a90a527ab74fbd9b0ed7b93375ae4d89f890 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-28800---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b93b158addb0fa4e3e20004d858acb083f1cb3372729b2574542816dbef3a19 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36250---39000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7209302f74232333ee5aed06fd4af4ea2ad821d --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:291e39e2de14f1781c746e6edb3942762942f4e0643071de5422acb7c6e7d374 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36260---37500-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36260---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e82d9d57026da991def6b4ac0ee602810a80f348 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36260---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:814339e2694f11f31c3a78865e57568ec85e2cfbde00bea0c4cb9a075219855d +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36260---39000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36260---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5bf25d9fe54aa1b68f8da6468c92129b4fe76e2f --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-36260---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b1a4f180ec3e23b4d269d42549a15a337df053aafd85c1c306a2bbd48eb202c +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---21520-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..066c721a90fe54dd4a30632c0a27878e46d09a09 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1862cf02fd6a362684282955874536b8aedcd051ee711ab10cbacc7c93bb6b9e +size 534 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..491e616108824d71dcc4f46358498898592cb7ca --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9259acf05444a66b69d1a256056b1dc25690f6bc687b900207dcb0eef1d25177 +size 469 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39012-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bbfd7493d5861c5e4ee759df5f777b4e4529aa24 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5daf37a87e01c4507f8a2f2ad520b82b1fccf1fdc603b38fb762b1b095eb2b3c +size 541 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39600-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c4c34420ae3aca340ef5b16cece3a1b4c66f0ed --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37760---39600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17585eab6e9d7efcc7108224393807f136eaa8ff4baa210832c9aeba7d55a894 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37800---39000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1775fd27422fce4f50341ee955076c520b9da195 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-37800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb8f30b81df6426c820709eaac6960760b570a6ab9402a3dd68c622d4553013 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-43000---44000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-43000---44000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ef3da9e254a7c01a39a42f98fddc0c1b5691954c --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-43000---44000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ced655365fc93d7b2867f945b01c4418573da75e36c67f17e67267c0f1ebcd2 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-50000---53800-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-50000---53800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a93068d81a63a6be30defbafee3d8cfd2b1e89d3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-50000---53800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41e450f4a848bb295f5364a3c6b425f65bdb9660a4cf468ddb43e6322b22231 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-53000---54000-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-53000---54000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ffec594523d189f1849e5b6c64471ea94926d9bc --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-53000---54000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4525540d8eb593a354f14ad3d9b3978c48e96dde6cc8f06e0d29d7da2a30a6f7 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58590---114100-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58590---114100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93053f97e02ac5bbc603ab851a79efaa085dfcf9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58590---114100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79e78749c17f273c7ea5567dae3b84a08fde40170308d09edd573b600a247ab0 +size 544 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58590---60070-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58590---60070-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6e5c20ac2842e245a5aa3e961cc966e211432a5e --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58590---60070-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b07f53c4be0cf363b025e1a1203cfc67865cf3d2cd4b6aa97ec0a51619132c2 +size 538 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58591---73520-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58591---73520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..591cf2a0d8c12ffb7fa1d73bc445ea428d89dc3e --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58591---73520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb73eb518e4174c411ac10bdf52aa8840f41cf540b262faf77a80b0d78d26a5 +size 541 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58600---60100-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58600---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7187e03b363dde876f0730307cdf6d2630ccdccb --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-58600---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b1bb3f1adff3928c59edcc4b93acc1aa3fdf1f4ad3e8e8bf279155a44157220 +size 464 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73500---75100-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73500---75100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d74dc3ca6db619470bbf4015827b2c4a1207ad29 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73500---75100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e9f543ae525491165640ee9e65e716e7bfc3478a350d2e5d0429d80185b4370 +size 533 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73520---75120-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73520---75120-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2fa88ef992d29f7c388ebde29ec9fa531a5ccb1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73520---75120-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a60797ae10ac7ea426ca4fe5c350d6774309559b402e7ee79cc98bde93241e +size 538 diff --git a/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73520---75150-in.json b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73520---75150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..30d2e514c1886987ce535b78d127b7aa342471d9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-kraft-phenolic-ring-73520---75150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecdbd177c88011291cba3287dae5297d87bf3ab30e826d4766afea151a8283c3 +size 538 diff --git a/source/parts/detail/p/public-missiles-ltd-paper-ring-22880---24750-in.json b/source/parts/detail/p/public-missiles-ltd-paper-ring-22880---24750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fb80b5d35e5913cc9ce8d04fdfd80d2f04224c89 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-paper-ring-22880---24750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a83fb2f5d0647e4bfcf0319beeaf6b1c3a059f0d654f99b1393c9b3fa2b64ceb +size 506 diff --git a/source/parts/detail/p/public-missiles-ltd-paper-ring-27760---29000-in.json b/source/parts/detail/p/public-missiles-ltd-paper-ring-27760---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bdd58a5be6016d858fb92c39bcb0ae0736c44c6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-paper-ring-27760---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dae1c19524766db1327f5e7aad9cbd56beb03a5939c488e8f50ee9b55f0c12a +size 514 diff --git a/source/parts/detail/p/public-missiles-ltd-paper-ring-37760---39000-in.json b/source/parts/detail/p/public-missiles-ltd-paper-ring-37760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..830ad7bd3772e0b38d79c2c5e44ab8710dfaa054 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-paper-ring-37760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:108868a0a4eb6818df8088928ba1c985eae8be792806bde0b758fec3fd3a1840 +size 506 diff --git a/source/parts/detail/p/public-missiles-ltd-paper-ring-37800---39000-in.json b/source/parts/detail/p/public-missiles-ltd-paper-ring-37800---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a9e2396dca04e34cb161292f83d89b606a8c65c --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-paper-ring-37800---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbcd0a916b5d2422d5f1271b84827ac73dd76ced4405f4d5ba70b437e709592c +size 506 diff --git a/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-14000---15000-in.json b/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-14000---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7e3cafb05925a9a0790f70b279c200d6078a4d5c --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-14000---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e558f396722824fa49ed9ab88425bb352de86d1c134159e9c2f3a26ca1f1370f +size 530 diff --git a/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-18750---20000-in.json b/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-18750---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2233f7e86d8230e52d1b3f9c8d800409f8e9313e --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-18750---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b9f6bcd5c8aed211c45f7bd17c85bfd8e9d94f3a823bf41da914adc1d4c1bd +size 530 diff --git a/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-28750---30000-in.json b/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-28750---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1026710047c98cea6c5a23ddf47388dcc5d82359 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ltd-polycarbonate-ring-28750---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8cc7859c690296ce32cdf68e2b3477104435e2ce10e9199312a7078277f9c2 +size 530 diff --git a/source/parts/detail/p/public-missiles-maple-hard-ring-37000---39000-in.json b/source/parts/detail/p/public-missiles-maple-hard-ring-37000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3ee390c4ee807fbcf87a6bdb0224cd8ed1b6ffc1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-maple-hard-ring-37000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbf6977bebefef109b9e86e8416620ece12e8cfe6bd86b879f2a96f255dad94b +size 503 diff --git a/source/parts/detail/p/public-missiles-ogive-transition.json b/source/parts/detail/p/public-missiles-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..a31733400f33209932ede20f8640b06e451886e9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e071052eb07cf56f3e8bd27ee03d2e9453b380bf99163156fec4cf234c255bf2 +size 607 diff --git a/source/parts/detail/p/public-missiles-ogive.json b/source/parts/detail/p/public-missiles-ogive.json new file mode 100644 index 0000000000000000000000000000000000000000..89543e1a444d6f53c31af82007471b77aa6bb502 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ogive.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2663e394c142a3686bcb615728d517a98e3bbb85df88f729a9f0eac2fbdd1a1b +size 565 diff --git a/source/parts/detail/p/public-missiles-p5-set-altimeter-transolve-p5.json b/source/parts/detail/p/public-missiles-p5-set-altimeter-transolve-p5.json new file mode 100644 index 0000000000000000000000000000000000000000..3e1a1c578b89fa0e9ae7f3613d52b4e5b6dcc219 --- /dev/null +++ b/source/parts/detail/p/public-missiles-p5-set-altimeter-transolve-p5.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0ce34a5d2bf2bdcd4dd8876fa944ccf941a367535ce845f3bad5d0489eed9e8 +size 451 diff --git a/source/parts/detail/p/public-missiles-p6-set-altimeter-transolve-p6.json b/source/parts/detail/p/public-missiles-p6-set-altimeter-transolve-p6.json new file mode 100644 index 0000000000000000000000000000000000000000..76669bc24441b7d622bb10c5a29b4e7f646c336a --- /dev/null +++ b/source/parts/detail/p/public-missiles-p6-set-altimeter-transolve-p6.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:142da290104fd44b478d0e5ee23861999bb816cff896eaf05a05dec1de9a30d1 +size 451 diff --git a/source/parts/detail/p/public-missiles-paper-ring-12100---15250-in.json b/source/parts/detail/p/public-missiles-paper-ring-12100---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2120410f36bf5e9a43cb85f4d32a4f5b12585cdb --- /dev/null +++ b/source/parts/detail/p/public-missiles-paper-ring-12100---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba92e1594d3026c4eb85b8af7a89cc60ad3a67eeddee829febd53ee5ef700cbd +size 494 diff --git a/source/parts/detail/p/public-missiles-parabolicseries-transition.json b/source/parts/detail/p/public-missiles-parabolicseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..5d05da9f0b518b8351e20c69b66ad3be664b473f --- /dev/null +++ b/source/parts/detail/p/public-missiles-parabolicseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b22b0f907559fe869907ffae421c4e86831d503363d9170017caf6056a7a41d +size 674 diff --git a/source/parts/detail/p/public-missiles-pml-24in-chute-tl-booster.json b/source/parts/detail/p/public-missiles-pml-24in-chute-tl-booster.json new file mode 100644 index 0000000000000000000000000000000000000000..c61c775d630f88d7a668349703eec75d0f2675aa --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-24in-chute-tl-booster.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5e1cdab6626b1195fa6443e8cda70d399560a28c369c64357976a4bd27e2756 +size 437 diff --git a/source/parts/detail/p/public-missiles-pml-ag1-b-single-flashbulb.json b/source/parts/detail/p/public-missiles-pml-ag1-b-single-flashbulb.json new file mode 100644 index 0000000000000000000000000000000000000000..71be908df776febac1db2c07e7a29cf9c97e29df --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-ag1-b-single-flashbulb.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538ab412b985910ef6222d312f9a2e679e32905600053c10ffacd9b759ba512e +size 437 diff --git a/source/parts/detail/p/public-missiles-pml-cba-390-couplerbulkhead-assy.json b/source/parts/detail/p/public-missiles-pml-cba-390-couplerbulkhead-assy.json new file mode 100644 index 0000000000000000000000000000000000000000..757f8660f145dbbc1e692545aa7fea3de7c34ab5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-cba-390-couplerbulkhead-assy.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fd8c85e1e7b755f9ed271775675aff7c747901014b0c06487402a622d19019 +size 467 diff --git a/source/parts/detail/p/public-missiles-pml-cpr-21-system-cpr2000.json b/source/parts/detail/p/public-missiles-pml-cpr-21-system-cpr2000.json new file mode 100644 index 0000000000000000000000000000000000000000..f7cbde09fb081d509bfaac6cc9235ae9fde994a5 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-cpr-21-system-cpr2000.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f144136c1b8242aaa482500e19e711ddd977f9d034069f995ab23d23ad67b62 +size 435 diff --git a/source/parts/detail/p/public-missiles-pml-cpr-30-system-cpr2000.json b/source/parts/detail/p/public-missiles-pml-cpr-30-system-cpr2000.json new file mode 100644 index 0000000000000000000000000000000000000000..1e893a03ea05a435bde27d043699d76117d924f1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-cpr-30-system-cpr2000.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10b6a6d5d258f215a2b7e716e12ba21ec037ec06f0efd0d2302be8693b204d7c +size 435 diff --git a/source/parts/detail/p/public-missiles-pml-cpr-39-system-cpr2000.json b/source/parts/detail/p/public-missiles-pml-cpr-39-system-cpr2000.json new file mode 100644 index 0000000000000000000000000000000000000000..338d52a7817e7e6b7871b32d6cb8ce281e8a8872 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-cpr-39-system-cpr2000.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e502fd2cc9d43d90b5afed6ab720db1a1d2b73a826197fb78706c1490cac60bb +size 435 diff --git a/source/parts/detail/p/public-missiles-pml-dr-10-d-ring.json b/source/parts/detail/p/public-missiles-pml-dr-10-d-ring.json new file mode 100644 index 0000000000000000000000000000000000000000..3b8e08ee0f1a99a56e2e019b30a3e83d1f23fa4d --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-dr-10-d-ring.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c488a3cdf40ff4c535ea4dfe0b401a3bb1f63572502a2920323677ebfe779fd +size 397 diff --git a/source/parts/detail/p/public-missiles-pml-eb-01-18x24-eyebolt.json b/source/parts/detail/p/public-missiles-pml-eb-01-18x24-eyebolt.json new file mode 100644 index 0000000000000000000000000000000000000000..6602d6ea1da442e6d35d1a6ca151874c73ac7e21 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-eb-01-18x24-eyebolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05b4b55976ecfd06ef36fe084bb380fcc71710e8e6555c0dfe88ffca1c0fd7ba +size 427 diff --git a/source/parts/detail/p/public-missiles-pml-eb-01-18x24.json b/source/parts/detail/p/public-missiles-pml-eb-01-18x24.json new file mode 100644 index 0000000000000000000000000000000000000000..a2f308145304d8d095de49e4c14b3d7992573a1c --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-eb-01-18x24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f8888d781457e852baf2631c7d06f57f282dcef5b4425f95867eb1b59927c9b +size 395 diff --git a/source/parts/detail/p/public-missiles-pml-ec-les-ejection-canister.json b/source/parts/detail/p/public-missiles-pml-ec-les-ejection-canister.json new file mode 100644 index 0000000000000000000000000000000000000000..6f070e6e8230a70bf2db7b29b7e6e393da43547b --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-ec-les-ejection-canister.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8faf3578e772354c5ee7163231bb1fc489451fed687e7a94a65224c1bcf03ba8 +size 445 diff --git a/source/parts/detail/p/public-missiles-pml-eybltwshr2nuts.json b/source/parts/detail/p/public-missiles-pml-eybltwshr2nuts.json new file mode 100644 index 0000000000000000000000000000000000000000..2cff115c6ce9d3a3c4d47145a3939d0fc0c22160 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-eybltwshr2nuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba348d2d854db943270ca84412415e5fecde043bedd5c1c7a741235a01dba0d9 +size 409 diff --git a/source/parts/detail/p/public-missiles-pml-kl-01-small-kwiklink.json b/source/parts/detail/p/public-missiles-pml-kl-01-small-kwiklink.json new file mode 100644 index 0000000000000000000000000000000000000000..3fa48ce58f739d9576188876ac0ed82c9ae86cfd --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-kl-01-small-kwiklink.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f88668833757ea65217727c31a8c64c904c2e2ee88821a57f9c7be057e677bab +size 429 diff --git a/source/parts/detail/p/public-missiles-pml-kl-01-small.json b/source/parts/detail/p/public-missiles-pml-kl-01-small.json new file mode 100644 index 0000000000000000000000000000000000000000..72dc65a0902c609f8982238221ac803fb83374bc --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-kl-01-small.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c808066228a011d14502a3da9f81a7403ba82805bd4b9507bdf2ea9cf3401dcf +size 393 diff --git a/source/parts/detail/p/public-missiles-pml-kl-02-large-kwiklink.json b/source/parts/detail/p/public-missiles-pml-kl-02-large-kwiklink.json new file mode 100644 index 0000000000000000000000000000000000000000..a76e23dcde189a67d1d6eda59f97fa3835575c22 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-kl-02-large-kwiklink.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:341b16128b14d5fca6eacc47e8dac8688c13c2de9551931cffec6509a5f45c86 +size 429 diff --git a/source/parts/detail/p/public-missiles-pml-kl-02-large.json b/source/parts/detail/p/public-missiles-pml-kl-02-large.json new file mode 100644 index 0000000000000000000000000000000000000000..f62546e77daa337b7bc1f5096a561e454d2a7c3d --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-kl-02-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffa29c9c5ad168868c6844189283fb4176461eedd8df02d488cf0300bdae8e7 +size 393 diff --git a/source/parts/detail/p/public-missiles-pml-nt-01-18x24-nut.json b/source/parts/detail/p/public-missiles-pml-nt-01-18x24-nut.json new file mode 100644 index 0000000000000000000000000000000000000000..d754359ce50463fdf1a33519c0dd7cbeadf6ff54 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-nt-01-18x24-nut.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b673a11feb5b6e412bbdbf26b3b046661cc4bcdb0ffd71a8bf977f9fae09c8b0 +size 411 diff --git a/source/parts/detail/p/public-missiles-pml-nt-01-18x24.json b/source/parts/detail/p/public-missiles-pml-nt-01-18x24.json new file mode 100644 index 0000000000000000000000000000000000000000..7174540912742f03e97ed5bcbeae57c7b647e6a6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-nt-01-18x24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f4d5cc6ea951d9aeab9781d0902775a6bf289e74d6e3d339e845d5bb2503a0 +size 395 diff --git a/source/parts/detail/p/public-missiles-pml-p5-altimeter.json b/source/parts/detail/p/public-missiles-pml-p5-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..d4d68ae4e971740d9e31a61a33e31121e946c7d8 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-p5-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2302bb9f654cdb15078885777a000f8cc94990c68ff63530ff2819553f3ac528 +size 397 diff --git a/source/parts/detail/p/public-missiles-pml-p6-altimeter.json b/source/parts/detail/p/public-missiles-pml-p6-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..91aa25d2e55ed7550cd63be12f330e8cde061d16 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-p6-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6561068399db26735912d691a3a596e9890e8b3bbaf2c3f8f7338ef67dca80b2 +size 397 diff --git a/source/parts/detail/p/public-missiles-pml-ps-256-fits-pt.json b/source/parts/detail/p/public-missiles-pml-ps-256-fits-pt.json new file mode 100644 index 0000000000000000000000000000000000000000..079721c75e12eb4ea8010cf37375f41191973878 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-ps-256-fits-pt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c91f00efe82abc478652a68094ea35676525ab431260e07940ae4367314a3e0 +size 424 diff --git a/source/parts/detail/p/public-missiles-pml-ps-390-piston-assy.json b/source/parts/detail/p/public-missiles-pml-ps-390-piston-assy.json new file mode 100644 index 0000000000000000000000000000000000000000..6297684c67907213bfa00895ed1d52e4f419808a --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-ps-390-piston-assy.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e870e180c00eae8c96c0e9493d2997942cbedcc35a14b532916001d2cf2b1e8e +size 423 diff --git a/source/parts/detail/p/public-missiles-pml-sc-10-1-shock-cord.json b/source/parts/detail/p/public-missiles-pml-sc-10-1-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..627e56983a386450cf3fb1abec3eecb3bcb52d70 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-sc-10-1-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a19e0b5c92f6dd3943262d53730ed32f84792b4c7a7884db2c454a38e784e4 +size 439 diff --git a/source/parts/detail/p/public-missiles-pml-sc-15-15-shock-cord.json b/source/parts/detail/p/public-missiles-pml-sc-15-15-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..f05813afec3f1b78b0ebe4d7e7f91fbf95a36b58 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-sc-15-15-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b70039cdf67209729ccab8eabe193daa9612f715205c1111cd982a7e24410d4 +size 445 diff --git a/source/parts/detail/p/public-missiles-pml-sc-75-34-shock-cord.json b/source/parts/detail/p/public-missiles-pml-sc-75-34-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..45a3293c73a155a2991dc5b770fed862e6ba3f01 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-sc-75-34-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8adfe385866a7aeaadda4dae5c162786b594eeecf86eeadf0bda60cabcf57209 +size 445 diff --git a/source/parts/detail/p/public-missiles-pml-st-10-1-nylon-strap.json b/source/parts/detail/p/public-missiles-pml-st-10-1-nylon-strap.json new file mode 100644 index 0000000000000000000000000000000000000000..3062405124e096e0201164966620c2334c7f76e4 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-st-10-1-nylon-strap.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c35e2a599fc415327946538ac0829c5b76fa8e150606d7412ec8035ef866ba7 +size 443 diff --git a/source/parts/detail/p/public-missiles-pml-st-10-2-nylon-strap.json b/source/parts/detail/p/public-missiles-pml-st-10-2-nylon-strap.json new file mode 100644 index 0000000000000000000000000000000000000000..aed6abeb1bda87ca149ab9ac2e6373a139679953 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-st-10-2-nylon-strap.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38ea6b885033fe0da50863a0596e8f3fc6c9814a8826179c107249cc61a4bef +size 443 diff --git a/source/parts/detail/p/public-missiles-pml-tbd-eyeboltwasher2-nuts.json b/source/parts/detail/p/public-missiles-pml-tbd-eyeboltwasher2-nuts.json new file mode 100644 index 0000000000000000000000000000000000000000..fb86496dff37fc197e572684d7431aca9db0ae76 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-tbd-eyeboltwasher2-nuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf6ff124d8090f165cb28e96f3e44b0e42311cd245672d3fef10c0dc67548b9 +size 445 diff --git a/source/parts/detail/p/public-missiles-pml-ublt-ubolt-for-fncs.json b/source/parts/detail/p/public-missiles-pml-ublt-ubolt-for-fncs.json new file mode 100644 index 0000000000000000000000000000000000000000..477998138fa5b8047a31c9621102fb34e1476f0f --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-ublt-ubolt-for-fncs.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac55593c7fade9162515015dd6a6d987f00230c2f8f3ed947f5af9ae8439b0fa +size 425 diff --git a/source/parts/detail/p/public-missiles-pml-wa-01-eyebolt-washer.json b/source/parts/detail/p/public-missiles-pml-wa-01-eyebolt-washer.json new file mode 100644 index 0000000000000000000000000000000000000000..fbac086ff78c0c877d3940cc448520f6076cbdc3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-wa-01-eyebolt-washer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddae703f1b6f6ed23ffd969978f133ba8da3fc93df8df9b2a5d63b66665ee5e8 +size 429 diff --git a/source/parts/detail/p/public-missiles-pml-wa-01-for-eb-01.json b/source/parts/detail/p/public-missiles-pml-wa-01-for-eb-01.json new file mode 100644 index 0000000000000000000000000000000000000000..f1892b626355cbbd82976b0059e02c5a7a93928b --- /dev/null +++ b/source/parts/detail/p/public-missiles-pml-wa-01-for-eb-01.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e58985ad42af3e894f4773a973dccda2b4bb2a72c0479efec05623d5eb405d +size 409 diff --git a/source/parts/detail/p/public-missiles-polyethylene-ldpe-streamer-00020-in.json b/source/parts/detail/p/public-missiles-polyethylene-ldpe-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..425903578e1235df3da6128c568ea6ec89650aca --- /dev/null +++ b/source/parts/detail/p/public-missiles-polyethylene-ldpe-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95844a6afe379bf4a02534d6b7be71ff72f15febb0dacffbc98b0154b32795aa +size 485 diff --git a/source/parts/detail/p/public-missiles-polystyrene-ps-ring-09500---16000-in.json b/source/parts/detail/p/public-missiles-polystyrene-ps-ring-09500---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..884fb6df15168ad2ec01b337e550e782b03c4588 --- /dev/null +++ b/source/parts/detail/p/public-missiles-polystyrene-ps-ring-09500---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec26f90f524642f134eb6a7ded542c8586446f2ea1fc4813a5e3850ae22dd9fe +size 521 diff --git a/source/parts/detail/p/public-missiles-powerseries-transition.json b/source/parts/detail/p/public-missiles-powerseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..0753d452cdf079b53260246ae6cd68867802d59d --- /dev/null +++ b/source/parts/detail/p/public-missiles-powerseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f65b94d7964750f15814caa9a9e17045bf610c5efc3469e10c139fba9ae865 +size 627 diff --git a/source/parts/detail/p/public-missiles-ps-15-fits-pt-15.json b/source/parts/detail/p/public-missiles-ps-15-fits-pt-15.json new file mode 100644 index 0000000000000000000000000000000000000000..86bcf773ebd798e7a74bcd0ff77f0596e947f75a --- /dev/null +++ b/source/parts/detail/p/public-missiles-ps-15-fits-pt-15.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f799b7554ace3c48a45046c339da4f395b15a4c22c808a0fcdfb29948f253881 +size 401 diff --git a/source/parts/detail/p/public-missiles-ps-21-fits-pt-21-or-qt-21.json b/source/parts/detail/p/public-missiles-ps-21-fits-pt-21-or-qt-21.json new file mode 100644 index 0000000000000000000000000000000000000000..26e3881ada45f85a7c08966789dac832bb291d11 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ps-21-fits-pt-21-or-qt-21.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c984bf6ea71253fe53b4a52742eb6d34d31d19f25f9f49dcd9dbcb0a2b0d74 +size 439 diff --git a/source/parts/detail/p/public-missiles-ps-25-fits-pt-25-or-qt-25.json b/source/parts/detail/p/public-missiles-ps-25-fits-pt-25-or-qt-25.json new file mode 100644 index 0000000000000000000000000000000000000000..eabcb3e42793def16d468e4149805d1e3fe28d35 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ps-25-fits-pt-25-or-qt-25.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42f2cc1ea7290438bbdc447ae3d3418fd04c049a0aacae67bd8a11fb453e64d +size 439 diff --git a/source/parts/detail/p/public-missiles-ps-30-fits-pt-30-or-qt-30.json b/source/parts/detail/p/public-missiles-ps-30-fits-pt-30-or-qt-30.json new file mode 100644 index 0000000000000000000000000000000000000000..c3b73b4571a328985e37c159872c64a592ecfc5f --- /dev/null +++ b/source/parts/detail/p/public-missiles-ps-30-fits-pt-30-or-qt-30.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2745cff7f982ffcbbf48e7a99208023170c7ea45926bae4a55e73e4563c84c0e +size 439 diff --git a/source/parts/detail/p/public-missiles-ps-39-fits-pt-39-or-qt-39.json b/source/parts/detail/p/public-missiles-ps-39-fits-pt-39-or-qt-39.json new file mode 100644 index 0000000000000000000000000000000000000000..ea0680a887a9ec0c2f107b3289c94e6028f9de55 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ps-39-fits-pt-39-or-qt-39.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7199472d3aaad53e7e3894206f89b7026f90e7a09beabc92b06e23300e9cdab3 +size 439 diff --git a/source/parts/detail/p/public-missiles-ps-60-fits-pt-60.json b/source/parts/detail/p/public-missiles-ps-60-fits-pt-60.json new file mode 100644 index 0000000000000000000000000000000000000000..fe3e296b3041c5b4ec6c2829ab1ebecbb2ffe1b3 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ps-60-fits-pt-60.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:173edd394d953f78b5dd8558d3e731b266388ed5ea8b0846abc6c3f1b70d02b7 +size 401 diff --git a/source/parts/detail/p/public-missiles-ps-75-fits-pt-75.json b/source/parts/detail/p/public-missiles-ps-75-fits-pt-75.json new file mode 100644 index 0000000000000000000000000000000000000000..b10639429084f6ceed4920cf26b68cc388530d20 --- /dev/null +++ b/source/parts/detail/p/public-missiles-ps-75-fits-pt-75.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d60304fcf49d3365b11b1205a020e5f06ee0a9ac78731ba16dff7283d398315c +size 401 diff --git a/source/parts/detail/p/public-missiles-psk-15x9-fits-pt-15.json b/source/parts/detail/p/public-missiles-psk-15x9-fits-pt-15.json new file mode 100644 index 0000000000000000000000000000000000000000..dd3462bd6c4583a7fec6f2784f41c9bf6b3296f6 --- /dev/null +++ b/source/parts/detail/p/public-missiles-psk-15x9-fits-pt-15.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d3c89b4190da0831af9fdc2d6e4ce8db26700f2d421c2cb415b4320e5a26857 +size 413 diff --git a/source/parts/detail/p/public-missiles-rocketwood-ring-00000---25600-in.json b/source/parts/detail/p/public-missiles-rocketwood-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c433991378d5ca9de11d249cdccda3eb4dff0fa1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-rocketwood-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95066ea734d6b1ec9653b583a381adc677e30e303d14587257ac6a5f689784a4 +size 501 diff --git a/source/parts/detail/p/public-missiles-staging-tmr-staging-timer-transolve-st-2.json b/source/parts/detail/p/public-missiles-staging-tmr-staging-timer-transolve-st-2.json new file mode 100644 index 0000000000000000000000000000000000000000..6fc4e0d4feb5909cbe54c828843f4ed738a23008 --- /dev/null +++ b/source/parts/detail/p/public-missiles-staging-tmr-staging-timer-transolve-st-2.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd856aa211b182df933135c0f89c5801f182df02b9f98663efff19469e7911fe +size 495 diff --git a/source/parts/detail/p/public-missiles-stracpr-stratus-cpr-parts.json b/source/parts/detail/p/public-missiles-stracpr-stratus-cpr-parts.json new file mode 100644 index 0000000000000000000000000000000000000000..3ed99ccae95d6b2a3f1ba8c47a3ccbc1d0a72330 --- /dev/null +++ b/source/parts/detail/p/public-missiles-stracpr-stratus-cpr-parts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17ecaf467c8006c59c513ecd9a7a279d68251bab27b839c8356f602946af7263 +size 433 diff --git a/source/parts/detail/p/public-missiles-stracpr-stratus-cpr2000-parts.json b/source/parts/detail/p/public-missiles-stracpr-stratus-cpr2000-parts.json new file mode 100644 index 0000000000000000000000000000000000000000..8cc413796b81cec0b6e2bdd199a44de739319ca1 --- /dev/null +++ b/source/parts/detail/p/public-missiles-stracpr-stratus-cpr2000-parts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5137e648e84540b67b53014fb373fc71da119ff9e0eae5ea8253f72a84b1965f +size 449 diff --git a/source/parts/detail/p/public-missiles-sw-spdt-electronics-onoff-switch--wiring.json b/source/parts/detail/p/public-missiles-sw-spdt-electronics-onoff-switch--wiring.json new file mode 100644 index 0000000000000000000000000000000000000000..8210f86eb4b12011a1fd33c6d0e5ebce14af0bb9 --- /dev/null +++ b/source/parts/detail/p/public-missiles-sw-spdt-electronics-onoff-switch--wiring.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d92f7a61b4b9e8064d3154a54907433a961e97fd03cc203c647233f0b6076316 +size 497 diff --git a/source/parts/detail/p/public-missiles-urethane-foam-ring-00000---20000-in.json b/source/parts/detail/p/public-missiles-urethane-foam-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20f706fb3e3cc41f20b0c437e1cc594aedf01847 --- /dev/null +++ b/source/parts/detail/p/public-missiles-urethane-foam-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4054bf2f3039ab3396c4bfa7a79e59e9c7aa89f3182a960456a0061d5e915dbf +size 476 diff --git a/source/parts/detail/p/public-missiles-urethane-foam-ring-16250---46900-in.json b/source/parts/detail/p/public-missiles-urethane-foam-ring-16250---46900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f2b329e8b56bf0be6d66a0d9b6b35a31483ec874 --- /dev/null +++ b/source/parts/detail/p/public-missiles-urethane-foam-ring-16250---46900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67fa5559940ce25caa0a0593e467ca7499c208105c6ab3bef29e8f478d773023 +size 476 diff --git a/source/parts/detail/p/public-missiles.json b/source/parts/detail/p/public-missiles.json new file mode 100644 index 0000000000000000000000000000000000000000..217e87dabb139ec23ec3f44bcfe810f75690df28 --- /dev/null +++ b/source/parts/detail/p/public-missiles.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d1f109b6f1f95ed99555bd8d5065cff52f284b453c7d270926af5108d05093 +size 400 diff --git a/source/parts/detail/p/public-missles.json b/source/parts/detail/p/public-missles.json new file mode 100644 index 0000000000000000000000000000000000000000..7efe7deddaccf5fc3bb5225715bb0a6a9f2257cc --- /dev/null +++ b/source/parts/detail/p/public-missles.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94a27abafb01513a0a265e0edce353df5b18bd5e015bfa7582503adc223c89d +size 285 diff --git a/source/parts/detail/q/qmodeling-conical-transition.json b/source/parts/detail/q/qmodeling-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..6ab35c8e1b6d1ca39a203d884bec52c44d951954 --- /dev/null +++ b/source/parts/detail/q/qmodeling-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06702ba794520f0e3cd88200f0eeebe38bfc40da4e51fca04d1863a6563eff84 +size 590 diff --git a/source/parts/detail/q/qualman-paper-ring-05118---09500-in.json b/source/parts/detail/q/qualman-paper-ring-05118---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d3033832d8fc4dd85d294a6e07337086d836b366 --- /dev/null +++ b/source/parts/detail/q/qualman-paper-ring-05118---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c58fc7eb2e561bc02470c762f7d79d4ffce6c75aa404b92d4c06a5c69ce6eed +size 420 diff --git a/source/parts/detail/q/qualman-paper-ring-09799---15902-in.json b/source/parts/detail/q/qualman-paper-ring-09799---15902-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dc9b56a37734816a72c5c00881081d34fe32e80e --- /dev/null +++ b/source/parts/detail/q/qualman-paper-ring-09799---15902-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b0c88c642def587e797326f8e5f1b02d2fd9d18b75f9110bf293e7f74e413e6 +size 458 diff --git a/source/parts/detail/q/quest--116-kevlar-thread.json b/source/parts/detail/q/quest--116-kevlar-thread.json new file mode 100644 index 0000000000000000000000000000000000000000..967014de0551cb1c84ea8304e20c62605b4492bf --- /dev/null +++ b/source/parts/detail/q/quest--116-kevlar-thread.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072c93f6908755bffc144bb6a80c5d87d0ce46ff47e9fc4755a48284bb293d42 +size 369 diff --git a/source/parts/detail/q/quest--14-in-elastic-shock-cord.json b/source/parts/detail/q/quest--14-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..7dd96484fe2bef3b86ed8e008a6c808c59ec43be --- /dev/null +++ b/source/parts/detail/q/quest--14-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98ef35ebb3d08f4c0746bacdad0f0a4f8e1e392539bf543a0bcf56c4a8bc1e23 +size 373 diff --git a/source/parts/detail/q/quest-49000-motor-clip.json b/source/parts/detail/q/quest-49000-motor-clip.json new file mode 100644 index 0000000000000000000000000000000000000000..e5756cdcba6f4c688ec0bb38b58502a7c5fce303 --- /dev/null +++ b/source/parts/detail/q/quest-49000-motor-clip.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96665f5622b169ba14ee188da930898dfa7acc32c2f80fe413fddfbfe764fab +size 357 diff --git a/source/parts/detail/q/quest-50012-quest-kevlar-shock-cord.json b/source/parts/detail/q/quest-50012-quest-kevlar-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..3bf70115788416cc5c712db3ede469d4d4178dd7 --- /dev/null +++ b/source/parts/detail/q/quest-50012-quest-kevlar-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51856c81845e213576c4224f752cea38fb9deef4a57be84ef6f6c4da0214f348 +size 409 diff --git a/source/parts/detail/q/quest-50014-12-inch-white-elastic-shock-cord.json b/source/parts/detail/q/quest-50014-12-inch-white-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..cc4deb8e00b2995a3764b4dae4e1238dc32cbac4 --- /dev/null +++ b/source/parts/detail/q/quest-50014-12-inch-white-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:213508297cd5d4bc096d3b10786ffca1b26d1fb192d62f27adbb0f6bbb4b0a23 +size 445 diff --git a/source/parts/detail/q/quest-50051-18-inch-yellow-kevlar-cord.json b/source/parts/detail/q/quest-50051-18-inch-yellow-kevlar-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..8f5060a24a8f87cfa7750038bd1e5bacc549189e --- /dev/null +++ b/source/parts/detail/q/quest-50051-18-inch-yellow-kevlar-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946650f89c61ce6a4b5d4d60e77a5928e8807f95f5dce49e34aecd7c1acd6b6c +size 421 diff --git a/source/parts/detail/q/quest-50053-elastic-chock-cord.json b/source/parts/detail/q/quest-50053-elastic-chock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..7b85517dca623898ca5b40a24d5ad2428bd36f53 --- /dev/null +++ b/source/parts/detail/q/quest-50053-elastic-chock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e6888880f949dcc0659d3d7ce547d32c5f895f88d1791821ba87626829ee385 +size 389 diff --git a/source/parts/detail/q/quest-conical-transition.json b/source/parts/detail/q/quest-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..1c4b4ce288a9d7617e104411a430e8ef17323e2d --- /dev/null +++ b/source/parts/detail/q/quest-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:255a0882e2872ee337c7742b11ecbe079d4dab65b0b5ab597e9385d0c65b0815 +size 574 diff --git a/source/parts/detail/q/quest-motor-mount-clip-standard-size.json b/source/parts/detail/q/quest-motor-mount-clip-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..c56485f5e0b649354ed8965ccf778828661b6298 --- /dev/null +++ b/source/parts/detail/q/quest-motor-mount-clip-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3c634873d43eb6d5f1a5564a9be5e8a47e458d5ed00810248d5936f30be130 +size 413 diff --git a/source/parts/detail/q/quest-paper-ring-00000---13380-in.json b/source/parts/detail/q/quest-paper-ring-00000---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7c4fd2c1f77eae443bcedb58bff2dadbc3f3a6a --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-00000---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00ed6fd74eb2f40900f629eb1e24d1b7157800d10c6518849f63cee40b469c88 +size 444 diff --git a/source/parts/detail/q/quest-paper-ring-05000---06875-in.json b/source/parts/detail/q/quest-paper-ring-05000---06875-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f51c098aa54663e5de45563acc0088adc456f05e --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-05000---06875-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb15b52ec4b51e01f71d0594bd7378df80f97a8111108a84d74a26c27d9b75f4 +size 444 diff --git a/source/parts/detail/q/quest-paper-ring-05008---07100-in.json b/source/parts/detail/q/quest-paper-ring-05008---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ef7aefdca361f9f14423a681230287c72d2bd96 --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-05008---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa95938dbd162a2ec83aa38588fde358180ff9984b23e1855f3a8ec2dce9e05 +size 444 diff --git a/source/parts/detail/q/quest-paper-ring-05008---07106-in.json b/source/parts/detail/q/quest-paper-ring-05008---07106-in.json new file mode 100644 index 0000000000000000000000000000000000000000..325256846936b8723de1d9f59fd873300c3b8696 --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-05008---07106-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:944bfe59bea71f2d3e9d0f40adc27b29d2d8ceec6163e952433caf9cb1e79955 +size 444 diff --git a/source/parts/detail/q/quest-paper-ring-05118---07087-in.json b/source/parts/detail/q/quest-paper-ring-05118---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..990cbdc99d0c967483c77a6f0b4cc1f32a47ff78 --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-05118---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23ade7b6d8b333f55bcb9571aad53d59afc2d1e9aefab459f7103e7f335efa60 +size 412 diff --git a/source/parts/detail/q/quest-paper-ring-07400---07500-in.json b/source/parts/detail/q/quest-paper-ring-07400---07500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..adc8da7c6892aade43089cf1908ea965eea71085 --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-07400---07500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495645ee2a2bfe86bb4d1e13485d299a5603d0aa2641490ef4a0b26b05c651ca +size 444 diff --git a/source/parts/detail/q/quest-paper-ring-07400---09450-in.json b/source/parts/detail/q/quest-paper-ring-07400---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aea71256b27372f05b28568a275d379ee096a7c6 --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-07400---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634f271f941604203392305ea571310356c79299ee2b8079e20a5b539bf62125 +size 444 diff --git a/source/parts/detail/q/quest-paper-ring-07870---13380-in.json b/source/parts/detail/q/quest-paper-ring-07870---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f84f3e7be23f6756c3f343e2359720d63b1267f2 --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-07870---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16859c3ecd2427a9cb27d61fa929c309c9612972636d1f9c7c9f7c7ff1eb6ebe +size 444 diff --git a/source/parts/detail/q/quest-paper-ring-12980---13380-in.json b/source/parts/detail/q/quest-paper-ring-12980---13380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..afaa2fc485e6d10b3d789e2d499b2c17cdcb3281 --- /dev/null +++ b/source/parts/detail/q/quest-paper-ring-12980---13380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c51b662845fd96368818ec4cd2183c6c5b55f4bab52bfcb49a00a2bdca022b89 +size 444 diff --git a/source/parts/detail/q/quest-polycarbonate-ring-09800---10840-in.json b/source/parts/detail/q/quest-polycarbonate-ring-09800---10840-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0571305d2cef25be00cc27dd70839d27a7ab5a45 --- /dev/null +++ b/source/parts/detail/q/quest-polycarbonate-ring-09800---10840-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e870370c3941ee1af00293ffb0a7fb6cfeac15a78dcd23f8beb2e65b9a16c95 +size 468 diff --git a/source/parts/detail/q/quest-polyethylene-ldpe-streamer-00015-in.json b/source/parts/detail/q/quest-polyethylene-ldpe-streamer-00015-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb7417b01578ad35587b0006c9ac739186e852f7 --- /dev/null +++ b/source/parts/detail/q/quest-polyethylene-ldpe-streamer-00015-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cff7161835bb0865516cab098c345619a2a47069f43c49f7b75bac7c9ed1bd1 +size 440 diff --git a/source/parts/detail/q/quick-link-ss-18-qlss18-quick-link-ss-18.json b/source/parts/detail/q/quick-link-ss-18-qlss18-quick-link-ss-18.json new file mode 100644 index 0000000000000000000000000000000000000000..fabc8ac9dc81d7cfb24fe944210c7df70b051e9b --- /dev/null +++ b/source/parts/detail/q/quick-link-ss-18-qlss18-quick-link-ss-18.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9b0cc917480a9fc0d1ca1fba82c81a2ef27fcd21e35b6e7c758ab71ad83219 +size 435 diff --git a/source/parts/detail/q/quick-link-stock-quick-link-18in-220lb-test.json b/source/parts/detail/q/quick-link-stock-quick-link-18in-220lb-test.json new file mode 100644 index 0000000000000000000000000000000000000000..35ffe2cbe791e3998f495bc202f2666209258648 --- /dev/null +++ b/source/parts/detail/q/quick-link-stock-quick-link-18in-220lb-test.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0919eb8ad278475adb91d6eb5fb32c00f7b98d7456a2e6077cd51ebb961db229 +size 447 diff --git a/source/parts/detail/q/quick-link-stock-quick-link-516in-1540lb-test.json b/source/parts/detail/q/quick-link-stock-quick-link-516in-1540lb-test.json new file mode 100644 index 0000000000000000000000000000000000000000..db77810f42abbebe26f59d629aec24e6a2030d72 --- /dev/null +++ b/source/parts/detail/q/quick-link-stock-quick-link-516in-1540lb-test.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09228b1388ed23c3c55f42bcc43396eefb5f23a9024a44047e6374cf65b78dc +size 455 diff --git a/source/parts/detail/q/quicklink-14-quicklink-14-quicklink.json b/source/parts/detail/q/quicklink-14-quicklink-14-quicklink.json new file mode 100644 index 0000000000000000000000000000000000000000..a761d8b225f0e1117f4f2316494d977da2628eab --- /dev/null +++ b/source/parts/detail/q/quicklink-14-quicklink-14-quicklink.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387927a121ef31da2b508a6f1dd12eff7713647914a8b7206350421cc87ae72b +size 421 diff --git a/source/parts/detail/q/quicklink-18-quicklink-18-quicklink.json b/source/parts/detail/q/quicklink-18-quicklink-18-quicklink.json new file mode 100644 index 0000000000000000000000000000000000000000..f2d3d614ce038b533714a14fd6e08ac21d604afb --- /dev/null +++ b/source/parts/detail/q/quicklink-18-quicklink-18-quicklink.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641c433e046e34956679d23b9761d371d9196f4394e46e722ade7b99c4684a54 +size 421 diff --git a/source/parts/detail/q/quicklink-316-stainless-quicklink-316-stainless-quicklink.json b/source/parts/detail/q/quicklink-316-stainless-quicklink-316-stainless-quicklink.json new file mode 100644 index 0000000000000000000000000000000000000000..17f1891d1e2796eaf3275913b57ed405c3a2898e --- /dev/null +++ b/source/parts/detail/q/quicklink-316-stainless-quicklink-316-stainless-quicklink.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73cde6050b13491d3041d56ec7ecb172aa1dad0a62b4f3dfd83b63cdfcc486a4 +size 509 diff --git a/source/parts/detail/r/rad-rockets-alignment-tab-standard-size.json b/source/parts/detail/r/rad-rockets-alignment-tab-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..568ca3e5a1f8bbdf1a0faa230d10a95cf58d0b70 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-alignment-tab-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e1a7f88b7357093b4fccecfa2740aec6f04fe8a59f944653e8da66d1ff8d317 +size 425 diff --git a/source/parts/detail/r/rad-rockets-cam1-spy-pen.json b/source/parts/detail/r/rad-rockets-cam1-spy-pen.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd9af0b1d87e7e34cbe16bee56e6bd6369045b1 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-cam1-spy-pen.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:172088589bfa6977a8292afecbe9ec12a3f1ac7d42bcd4ce50ab80b1c62d06b8 +size 365 diff --git a/source/parts/detail/r/rad-rockets-cardboard-ring-00000---16000-in.json b/source/parts/detail/r/rad-rockets-cardboard-ring-00000---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2e466f15181e17a833c35a55040facf2324124bf --- /dev/null +++ b/source/parts/detail/r/rad-rockets-cardboard-ring-00000---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33a92b81b939c81e7267fb88b2bc7a47b20dfec4598c03e74ef41978b69a3ec1 +size 484 diff --git a/source/parts/detail/r/rad-rockets-fiber-ring-00000---15930-in.json b/source/parts/detail/r/rad-rockets-fiber-ring-00000---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..05346be9067a2e48869bfb447452d2ec1979baf8 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-fiber-ring-00000---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5350260abf7ec4f9455c233546834e28cea74010c98479dfc95f9fe4518f292a +size 474 diff --git a/source/parts/detail/r/rad-rockets-fri-parachute-protector.json b/source/parts/detail/r/rad-rockets-fri-parachute-protector.json new file mode 100644 index 0000000000000000000000000000000000000000..e76ec7aba3f0a2137f39373afc3b5326859ff2c7 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-fri-parachute-protector.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfc9e1352df4a4e9fb6b5f37e5d0512debdf1d60fa3fc92fc36a25a080f1fccc +size 409 diff --git a/source/parts/detail/r/rad-rockets-paper-ring-14900---16000-in.json b/source/parts/detail/r/rad-rockets-paper-ring-14900---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..479709f5023aaf687c927af572cdefd214989bc6 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-paper-ring-14900---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e32c000d6fe6a2ad3e9621591890d7b6dc72bf35ad64c4d6127c226a7827384 +size 474 diff --git a/source/parts/detail/r/rad-rockets-pg-paint-and-glue.json b/source/parts/detail/r/rad-rockets-pg-paint-and-glue.json new file mode 100644 index 0000000000000000000000000000000000000000..013967539b5eaeaa8187727ae90be4770c1fc1ca --- /dev/null +++ b/source/parts/detail/r/rad-rockets-pg-paint-and-glue.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fca803012a50595ec8342afceeb775fb0d2e2631586ea9d2e9ae77b354d2738 +size 387 diff --git a/source/parts/detail/r/rad-rockets-rr-fls-rocket-info-and-flight-log-sheet.json b/source/parts/detail/r/rad-rockets-rr-fls-rocket-info-and-flight-log-sheet.json new file mode 100644 index 0000000000000000000000000000000000000000..f02e27e9d0625abf3465941ffc07591ad5d96448 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-rr-fls-rocket-info-and-flight-log-sheet.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c957f49432ab4930a16f283101ed98736fc9d2b924be35f48cd0f34c7238f992 +size 473 diff --git a/source/parts/detail/r/rad-rockets-rr-se-ss-screw-eye-with-snap-swivel.json b/source/parts/detail/r/rad-rockets-rr-se-ss-screw-eye-with-snap-swivel.json new file mode 100644 index 0000000000000000000000000000000000000000..de0a24766d6db1daef3e97359353358e071da9e3 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-rr-se-ss-screw-eye-with-snap-swivel.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f770c0f1cd0121f849e502373896d9aa44930f41f8cd9b1eea9268ac12ca49d5 +size 457 diff --git a/source/parts/detail/r/rad-rockets-sa-1-15-inch-foam-disk.json b/source/parts/detail/r/rad-rockets-sa-1-15-inch-foam-disk.json new file mode 100644 index 0000000000000000000000000000000000000000..40cd7503f2406150527f199af0a8dd3da109394b --- /dev/null +++ b/source/parts/detail/r/rad-rockets-sa-1-15-inch-foam-disk.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35192125d6865033b8b6a8cb03a2a2f9749551dbf50fca4151a22780b609d2da +size 407 diff --git a/source/parts/detail/r/rad-rockets-sc-1a-fire-retardant-braided-cotton-string--5-ply.json b/source/parts/detail/r/rad-rockets-sc-1a-fire-retardant-braided-cotton-string--5-ply.json new file mode 100644 index 0000000000000000000000000000000000000000..714ce0479f0468dd15e2ff84b623d0a86cfb2766 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-sc-1a-fire-retardant-braided-cotton-string--5-ply.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c416e64ed136a88cc28abd4613988c3e6771dc2b051d7522612775136b010d71 +size 517 diff --git a/source/parts/detail/r/rad-rockets-sc-2a-14-in-black-elastic-shock-cord.json b/source/parts/detail/r/rad-rockets-sc-2a-14-in-black-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..42828d50abab7ecf5a8bf9175f2c7781547a7cb0 --- /dev/null +++ b/source/parts/detail/r/rad-rockets-sc-2a-14-in-black-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f05147a3f67177964322725fd9b24969cbac900689b12c1a675ccabb6f73f4 +size 463 diff --git a/source/parts/detail/r/raven-raven-raven-altimeterflight-computer.json b/source/parts/detail/r/raven-raven-raven-altimeterflight-computer.json new file mode 100644 index 0000000000000000000000000000000000000000..9355604a55ea8322886b119654dd9b3c53d47c6e --- /dev/null +++ b/source/parts/detail/r/raven-raven-raven-altimeterflight-computer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45f77238727d6501e50cff226f4446d834d199f8ca9446ba5aa78795381d36b8 +size 439 diff --git a/source/parts/detail/r/rds-aircraft-plywood-birch-ring-21600---39000-in.json b/source/parts/detail/r/rds-aircraft-plywood-birch-ring-21600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a905b45091b2013bfe26bff6a65e8de80298fa3 --- /dev/null +++ b/source/parts/detail/r/rds-aircraft-plywood-birch-ring-21600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e7b7b2e6e6bd0344b99e995f688f3a97ebff8ea133998f8d9a8e7f603f45c8d +size 491 diff --git a/source/parts/detail/r/rds-paper-ring-36500---39000-in.json b/source/parts/detail/r/rds-paper-ring-36500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06f8df7e2d26a8dc1decf6301077f826c51ae4ea --- /dev/null +++ b/source/parts/detail/r/rds-paper-ring-36500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c575023240b6e31eb638d8147eac7e06d6eb780d1ff9896fc4abd367cc48fe +size 446 diff --git a/source/parts/detail/r/rebel-space-carbon-bp-60-birch-ring-00000---60098-in.json b/source/parts/detail/r/rebel-space-carbon-bp-60-birch-ring-00000---60098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..427abe6a2e111677bc6cfa2eac31220939b9a4ac --- /dev/null +++ b/source/parts/detail/r/rebel-space-carbon-bp-60-birch-ring-00000---60098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efbe9a77d5f67fc6943ecd3baa5772a4c94e9974a2125fe31b4a34a28a3ea6d4 +size 524 diff --git a/source/parts/detail/r/rebel-space-carbon-bp-60-carbon-fiber-ring-00000---58598-in.json b/source/parts/detail/r/rebel-space-carbon-bp-60-carbon-fiber-ring-00000---58598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b9fd615718e58ce7c013c5ea1b967e92bba69394 --- /dev/null +++ b/source/parts/detail/r/rebel-space-carbon-bp-60-carbon-fiber-ring-00000---58598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d9d4eb8a57959b9a145da9c798ac25c40accd463bdd534e9f1b7b69dd099d25 +size 545 diff --git a/source/parts/detail/r/rebel-space-carbon-cbp-60-carbon-fiber-ring-00000---58598-in.json b/source/parts/detail/r/rebel-space-carbon-cbp-60-carbon-fiber-ring-00000---58598-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89465ca5a0383c5d22e602165e22b19a427bee6e --- /dev/null +++ b/source/parts/detail/r/rebel-space-carbon-cbp-60-carbon-fiber-ring-00000---58598-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b90bc6073c0e30bca54cebe2998e8d207b0a4a1f85b9c529cf9d47e79633b0 +size 549 diff --git a/source/parts/detail/r/rebel-space-carbon-cr-60-30-carbon-fiber-ring-31299---60098-in.json b/source/parts/detail/r/rebel-space-carbon-cr-60-30-carbon-fiber-ring-31299---60098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aafdac55f615b7d4d317457ec731a2cf1b76ccc7 --- /dev/null +++ b/source/parts/detail/r/rebel-space-carbon-cr-60-30-carbon-fiber-ring-31299---60098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c00741dcdf01cc39cc0bb87267a55af7ac65af94a27eba5a204a4ce3a0a022a +size 559 diff --git a/source/parts/detail/r/rebel-space-carbon-cr-60-39-carbon-fiber-ring-40201---60098-in.json b/source/parts/detail/r/rebel-space-carbon-cr-60-39-carbon-fiber-ring-40201---60098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8877177dd5cb9374262de03a7d1551a1810a8e2f --- /dev/null +++ b/source/parts/detail/r/rebel-space-carbon-cr-60-39-carbon-fiber-ring-40201---60098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641fb546a82af6816b24c8545d8f3bdd29927a18e83ecb0725bc072b3877ad35 +size 559 diff --git a/source/parts/detail/r/rer-conical-transition.json b/source/parts/detail/r/rer-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..5678c427dfecfd0c37fe51fd8c0fc626fc0395ee --- /dev/null +++ b/source/parts/detail/r/rer-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a68e14172348edd1b9cca23d39ce4cd6e05e272a4cfd1ccc8a6807a3bc3a2d +size 586 diff --git a/source/parts/detail/r/rer-sc-14-x30-elastic-chord.json b/source/parts/detail/r/rer-sc-14-x30-elastic-chord.json new file mode 100644 index 0000000000000000000000000000000000000000..b3d4cc913d9cced271fbdc7f98ce96d3fd358550 --- /dev/null +++ b/source/parts/detail/r/rer-sc-14-x30-elastic-chord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34bdde415962b7657143bc7984157a82f9279238e0b302fabca2561f2286010c +size 379 diff --git a/source/parts/detail/r/retro-rocket-works-conical-transition.json b/source/parts/detail/r/retro-rocket-works-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..174aabd4cb86d06a50c46d20aaf73e9d65b90be7 --- /dev/null +++ b/source/parts/detail/r/retro-rocket-works-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35dfaa8af4620b7d8a15abf70df5596986bf6cbfbdb0951d66b3f9be48607d5a +size 651 diff --git a/source/parts/detail/r/rip-stop-nylon-streamer-00000-in.json b/source/parts/detail/r/rip-stop-nylon-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4a5e238002002990ba3c6e0dd495070883f2e161 --- /dev/null +++ b/source/parts/detail/r/rip-stop-nylon-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27cb8022d41a56cbac4f30efd2b4489e9b6dd30635b602ff875df33ac41697a4 +size 357 diff --git a/source/parts/detail/r/ripper-rockets-0001-u-bolt.json b/source/parts/detail/r/ripper-rockets-0001-u-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..9b20f6fd024302b3ad876de24f999e37975ada74 --- /dev/null +++ b/source/parts/detail/r/ripper-rockets-0001-u-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0a0108853f5258674e12e7caff3b4eb446b086895200ec63af51f8a4f640ec +size 373 diff --git a/source/parts/detail/r/ripper-rockets-0002-small-quick-link.json b/source/parts/detail/r/ripper-rockets-0002-small-quick-link.json new file mode 100644 index 0000000000000000000000000000000000000000..d0504f35a2d62e8d762d16250b609d0a849c9099 --- /dev/null +++ b/source/parts/detail/r/ripper-rockets-0002-small-quick-link.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78aab2755d2b757fff1500ba9c365626e9e6d4d2c515da24f551da9105af7ee9 +size 413 diff --git a/source/parts/detail/r/ripstop-nylon-streamer-00000-in.json b/source/parts/detail/r/ripstop-nylon-streamer-00000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8733302f8ffed4ad0517f573023516eae2bf9b01 --- /dev/null +++ b/source/parts/detail/r/ripstop-nylon-streamer-00000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3672de95dbddf21e50fc36bd824f0739d948ee6736e98822cc9775c32010abf +size 353 diff --git a/source/parts/detail/r/rocketarium--24mm-motor-retainer.json b/source/parts/detail/r/rocketarium--24mm-motor-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..dc8bac59756eba04a713d6647e40e4611eddd51f --- /dev/null +++ b/source/parts/detail/r/rocketarium--24mm-motor-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f94f3cd51041a0a433cd31a16cefc524c0ba6207e6e18be8a50e3d7ece66cb94 +size 375 diff --git a/source/parts/detail/r/rocketarium--24mm-retainer.json b/source/parts/detail/r/rocketarium--24mm-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..f4f2214e04ede2551c586d837bf89b1c7983b47f --- /dev/null +++ b/source/parts/detail/r/rocketarium--24mm-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c84ff7934438c412c95edb729247783b9252ad3b483f22567cc16e1f1211515 +size 351 diff --git a/source/parts/detail/r/rocketarium-24050-24mm-engine-retainer.json b/source/parts/detail/r/rocketarium-24050-24mm-engine-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..a20c626c4841922c3c4ed8c6164e98f640bbb088 --- /dev/null +++ b/source/parts/detail/r/rocketarium-24050-24mm-engine-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99607f3b3a1d1a4c671ff8027d514e60c3ea735e564fceff8c59afc60de9b394 +size 421 diff --git a/source/parts/detail/r/rocketarium-24056-18mm-engine-retainer.json b/source/parts/detail/r/rocketarium-24056-18mm-engine-retainer.json new file mode 100644 index 0000000000000000000000000000000000000000..9481275e7d931714727103f7221669853ed74c0e --- /dev/null +++ b/source/parts/detail/r/rocketarium-24056-18mm-engine-retainer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c65f309f2c54895e65603a3c60932a70bebda74674689decebfcf29ecad789b +size 421 diff --git a/source/parts/detail/r/rocketry-warehouse-aircraft-plywood-birch-ring-16100---21250-in.json b/source/parts/detail/r/rocketry-warehouse-aircraft-plywood-birch-ring-16100---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f213dc4a8f7bb607e5b7cf9132ef499edb5f455 --- /dev/null +++ b/source/parts/detail/r/rocketry-warehouse-aircraft-plywood-birch-ring-16100---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4f38f3f2979a8ed294802bde1ca47176b23508b540a7619cf5d0e946eb2ab1c +size 517 diff --git a/source/parts/detail/r/rocketry-warehouse-conical-transition.json b/source/parts/detail/r/rocketry-warehouse-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..8782eb2d2556ea3cb77a4176e31083a005de6c54 --- /dev/null +++ b/source/parts/detail/r/rocketry-warehouse-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc6023fd89d99efbd5dc79cc6d90066c307f187ec69dc11f95e13fd13d3bd7d +size 652 diff --git a/source/parts/detail/r/rocketry-warehouse-fwfg-ring-20000---21250-in.json b/source/parts/detail/r/rocketry-warehouse-fwfg-ring-20000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..92374cbde8fb7b568754e98bdf059316e1e9f066 --- /dev/null +++ b/source/parts/detail/r/rocketry-warehouse-fwfg-ring-20000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a58321699be180769b56c5ad15030dd818ff7007390cae00769281e3a6d3c4 +size 461 diff --git a/source/parts/detail/r/rocketry-warehouse-fwfg-ring-39100---39500-in.json b/source/parts/detail/r/rocketry-warehouse-fwfg-ring-39100---39500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8cbdb8f323039f5f58dce3fd3cdf201e37ff0efa --- /dev/null +++ b/source/parts/detail/r/rocketry-warehouse-fwfg-ring-39100---39500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e5ca4dd7edd2eb14c221dbecbd1ad7db6537dbb1796bf598c9ffd0d5f71e067 +size 461 diff --git a/source/parts/detail/r/rocketry-warehouse-g10-fiberglass-ring-00000---21250-in.json b/source/parts/detail/r/rocketry-warehouse-g10-fiberglass-ring-00000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..11886d1778460d4589640357571a10760eb14119 --- /dev/null +++ b/source/parts/detail/r/rocketry-warehouse-g10-fiberglass-ring-00000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f512c6490b393ecc97378248bb1a973bf73e851910afc285399493a1e1b579a +size 491 diff --git a/source/parts/detail/r/rocketry-warehouse-g10-fiberglass-ring-00000---35000-in.json b/source/parts/detail/r/rocketry-warehouse-g10-fiberglass-ring-00000---35000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f612cde20e4195ddbb0326b476a6ccb861bb3b5e --- /dev/null +++ b/source/parts/detail/r/rocketry-warehouse-g10-fiberglass-ring-00000---35000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc668935b7a30ce38510771967002e964946ae5349c7ed24f15747291384c62e +size 491 diff --git a/source/parts/detail/r/rocketwood-ring-00000---25600-in.json b/source/parts/detail/r/rocketwood-ring-00000---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..935733fc9b2fdb1845f4bb20b3c16f355dbcddef --- /dev/null +++ b/source/parts/detail/r/rocketwood-ring-00000---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9e366c08e128f0210e3289c55488eb2eae6dc78026eac51b892c195165e906a +size 393 diff --git a/source/parts/detail/r/rocketwood-ring-11800---22500-in.json b/source/parts/detail/r/rocketwood-ring-11800---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..504de3c9144fe3bc57355d489e92156f227022e1 --- /dev/null +++ b/source/parts/detail/r/rocketwood-ring-11800---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee3d448efd3a7505929d86c55e33d34fa875094159250be5e4a40f4fa7aab18f +size 393 diff --git a/source/parts/detail/r/rocketwood-ring-12500---25600-in.json b/source/parts/detail/r/rocketwood-ring-12500---25600-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a185d8c87dd314253ce805b5ed4e0f7cee6b5cbe --- /dev/null +++ b/source/parts/detail/r/rocketwood-ring-12500---25600-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd8b7bdf35bef642526d54884a4bf5cd7bde6cc461b4e98507313377ea07469 +size 393 diff --git a/source/parts/detail/r/rothco--550-para-cord.json b/source/parts/detail/r/rothco--550-para-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..9a4d805d763e4dede7a4b25b33f729efae63e289 --- /dev/null +++ b/source/parts/detail/r/rothco--550-para-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d55cf9d48c3f9267898a6bd6b405da2531ac32cf2b15d7f5c738f5aca1b532ee +size 331 diff --git a/source/parts/detail/r/rowes-retainers-conical-transition.json b/source/parts/detail/r/rowes-retainers-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..d42670b6e82190a4f98e2b5b2b761689fb3813eb --- /dev/null +++ b/source/parts/detail/r/rowes-retainers-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2835843957261b9bc46b66eba48d4acd65d2bf287acc656ed963b691ac3cee1d +size 609 diff --git a/source/parts/detail/r/rrw-10401-275-coupler-rocketwood-ring-22500---25000-in.json b/source/parts/detail/r/rrw-10401-275-coupler-rocketwood-ring-22500---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..908d71b53e1dfa5d3c096c779db1b601a5893ee3 --- /dev/null +++ b/source/parts/detail/r/rrw-10401-275-coupler-rocketwood-ring-22500---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a37f37fb79690817122f4a63f1818a47c62c33f0f25c4cc764b27e891459fec +size 533 diff --git a/source/parts/detail/r/rrw-15101-cr-29275-rocketwood-ring-13800---25000-in.json b/source/parts/detail/r/rrw-15101-cr-29275-rocketwood-ring-13800---25000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f70d63f25a8935a488fb9772c0314dfea5452a9b --- /dev/null +++ b/source/parts/detail/r/rrw-15101-cr-29275-rocketwood-ring-13800---25000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f689dbd85ec839e183e0d95bc1b41599541c58fb1dbb3d11d74b925764fd1676 +size 523 diff --git a/source/parts/detail/r/rtv-aircraft-plywood-birch-ring-00000---21400-in.json b/source/parts/detail/r/rtv-aircraft-plywood-birch-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a3c02a2e40904ad25f5613f0f2e0bfdfa10975a --- /dev/null +++ b/source/parts/detail/r/rtv-aircraft-plywood-birch-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9c2bea82a22386c2172352f37bd469152fe05335d2fe6b32e960eafd32d0d6 +size 501 diff --git a/source/parts/detail/r/rtv-aircraft-plywood-birch-ring-10000---21400-in.json b/source/parts/detail/r/rtv-aircraft-plywood-birch-ring-10000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7ac5b4da3c09a6a1ac3fd3800a3e34d7b2027a9c --- /dev/null +++ b/source/parts/detail/r/rtv-aircraft-plywood-birch-ring-10000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cfd16d9d43d3c8ba32ce05d4da21c01e870dfd1b780eea488e9e416ab7fbe2d +size 501 diff --git a/source/parts/detail/r/rtv-cardboard-ring-70000---74380-in.json b/source/parts/detail/r/rtv-cardboard-ring-70000---74380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa5ea153ac5bef7712f8f229c8f93180f7457a74 --- /dev/null +++ b/source/parts/detail/r/rtv-cardboard-ring-70000---74380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2559165459930f8c3bea7e89038cb8f980f93690c1b737ad738f736ea9c3e826 +size 484 diff --git a/source/parts/detail/r/rtv-conical-transition.json b/source/parts/detail/r/rtv-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..4eddaa626e73094eb181cd9ac334dfaadda02f1f --- /dev/null +++ b/source/parts/detail/r/rtv-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc91921cd63b22da28e021f36e62beb96f3438ea979fdf610a55749483c5fa80 +size 587 diff --git a/source/parts/detail/r/rtv-pvc-ring-21600---24100-in.json b/source/parts/detail/r/rtv-pvc-ring-21600---24100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c0b6967dfd5d97b15a172855fa2baa23735252de --- /dev/null +++ b/source/parts/detail/r/rtv-pvc-ring-21600---24100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:528dd565473cb76c015067c7dbd980f50cc163505729cdb651c4733d81118461 +size 452 diff --git a/source/parts/detail/s/sailor-bill-rockets-rb14ws-recovery-bridle-14.json b/source/parts/detail/s/sailor-bill-rockets-rb14ws-recovery-bridle-14.json new file mode 100644 index 0000000000000000000000000000000000000000..ec87a814067f2ff1a33ca19678047880cd57f484 --- /dev/null +++ b/source/parts/detail/s/sailor-bill-rockets-rb14ws-recovery-bridle-14.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f5c25ea4817283910b4abb135b829f4a557e220d45c6a9315c5be037b2d24d +size 453 diff --git a/source/parts/detail/s/self-made-aircraft-plywood-birch-ring-00000---21400-in.json b/source/parts/detail/s/self-made-aircraft-plywood-birch-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c3eca8bfd5c55eb5946502d8fcba57e5f8b86e02 --- /dev/null +++ b/source/parts/detail/s/self-made-aircraft-plywood-birch-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ba73f840e7341e7bb9df11b962ed1bf97439a8302e8db9eec9d825d4f893a7 +size 527 diff --git a/source/parts/detail/s/semroc-116-aircraft-plywood-ring-01000---13000-in.json b/source/parts/detail/s/semroc-116-aircraft-plywood-ring-01000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d56680ca459ede0e756a4d2897cac05be6f4aadc --- /dev/null +++ b/source/parts/detail/s/semroc-116-aircraft-plywood-ring-01000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d6f6b73aca1c1d1358b5d042d2daa2dff3efeb1bb636529f9ecac7906fd1b10 +size 462 diff --git a/source/parts/detail/s/semroc-116-aircraft-plywood-ring-02500---13000-in.json b/source/parts/detail/s/semroc-116-aircraft-plywood-ring-02500---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d23e08a0ab77d7d6a97e774e806512d41813a73 --- /dev/null +++ b/source/parts/detail/s/semroc-116-aircraft-plywood-ring-02500---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ac5582fc6101017a795fb8c57871deac8ba3d2c7449b89f887c24589b2ff7cb +size 462 diff --git a/source/parts/detail/s/semroc-116-aircraft-plywood-ring-07360---09500-in.json b/source/parts/detail/s/semroc-116-aircraft-plywood-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..14154802a93ea4dee7f390524488df4c4daebe49 --- /dev/null +++ b/source/parts/detail/s/semroc-116-aircraft-plywood-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f2f894a3b731d0b2e4dd189dd025a030d2be0c5e6e3cf4c6ab2f6b7ec26e09b +size 462 diff --git a/source/parts/detail/s/semroc-14-aircraft-plywood-ring-16400---60100-in.json b/source/parts/detail/s/semroc-14-aircraft-plywood-ring-16400---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ed5a802f8e9532dff0470c4a9ba621c89763f81 --- /dev/null +++ b/source/parts/detail/s/semroc-14-aircraft-plywood-ring-16400---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b3885c3a6d13445cfbd6fbccc17f1c12622965714b30c64d5db3528bdeb3f7 +size 472 diff --git a/source/parts/detail/s/semroc-14-aircraft-plywood-ring-40000---60100-in.json b/source/parts/detail/s/semroc-14-aircraft-plywood-ring-40000---60100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d47b9fff04b06aa259d3ad12a68e205e98ade30c --- /dev/null +++ b/source/parts/detail/s/semroc-14-aircraft-plywood-ring-40000---60100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9175cda9452854603ddac04f35d0b503a7a8f4288caf750706b5c08dee60af90 +size 472 diff --git a/source/parts/detail/s/semroc-18-aircraft-plywood-ring-09980---15000-in.json b/source/parts/detail/s/semroc-18-aircraft-plywood-ring-09980---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8af0fccb903e6429837fdc4f42ca84e8ce22fef4 --- /dev/null +++ b/source/parts/detail/s/semroc-18-aircraft-plywood-ring-09980---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1997f0e6ab6bf153030ad8c560ca8c5aec226c1485333efc87165f92849660 +size 493 diff --git a/source/parts/detail/s/semroc-316-aircraft-plywood-ring-09980---17500-in.json b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-09980---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..01d0fe0d072b823bc74dfb77255ec4a8a93ca3dd --- /dev/null +++ b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-09980---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3217d4d3b935d2e94915c3a7763a8b85556bd937ecc42f6198cffdb701bfd9b +size 446 diff --git a/source/parts/detail/s/semroc-316-aircraft-plywood-ring-11811---21654-in.json b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-11811---21654-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d864ce83188cc234ae8143e5fecadac2cb3ccdf7 --- /dev/null +++ b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-11811---21654-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9cab8bf70fe17adc1a779c000aac9436e7d934c8e740d4bd7eb53bf5eb8145 +size 504 diff --git a/source/parts/detail/s/semroc-316-aircraft-plywood-ring-12200---17500-in.json b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-12200---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f55ea5d72efb1998b7141c9a354d9fb68c339846 --- /dev/null +++ b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-12200---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc833be8215e2c7639b3c640eea328c78229ffd18527dde6daf2ccc6483511a +size 504 diff --git a/source/parts/detail/s/semroc-316-aircraft-plywood-ring-12200---22500-in.json b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-12200---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eaff27b5b2d6dfcd41c6ba35961aa9f36030d7d4 --- /dev/null +++ b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-12200---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac447618daf2e0a7bb6184526df613100369a760832e4d4cef864dc75c8991c3 +size 504 diff --git a/source/parts/detail/s/semroc-316-aircraft-plywood-ring-13400---17500-in.json b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-13400---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..082c46a63a20d05e3a7fba4b15e17191287ba6ce --- /dev/null +++ b/source/parts/detail/s/semroc-316-aircraft-plywood-ring-13400---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:608a7a15a458f987185730996f59c6b59171795b4290b200db13be0bac9eb70b +size 504 diff --git a/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-00000---21750-in.json b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-00000---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5455a14d922eea37f35e5c5d61d7678f5ca9aa10 --- /dev/null +++ b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-00000---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e2ccf4ee13591d4541a1b81d717bd23ee82e289bf1b156e6ad71970380625f +size 469 diff --git a/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-06000---11400-in.json b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-06000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..95b21f3ae8a4fd4248a0e8c2b151bfcd42cc7a92 --- /dev/null +++ b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-06000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fad9d2b70e61bd75ba85cb224b07d3285c0e1470a90dfc76d58db6d2f6c0643 +size 505 diff --git a/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-09980---21750-in.json b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-09980---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..03bd074497283360b05d492efdaeb0b04fdc4f21 --- /dev/null +++ b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-09980---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd2d56e937815d61108faff7bc3919bdf4dc59c040c64ae124261a36edcbb841 +size 469 diff --git a/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-22800---38000-in.json b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-22800---38000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26d483c36e28e6a86670ae46b091f8e95a4986b8 --- /dev/null +++ b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-22800---38000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab4afd1fa09b14ddfd5e30a44d0bbbb5de73bce4e3288f0adca3ddc07634f28f +size 469 diff --git a/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-31300---48000-in.json b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-31300---48000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5aacda23c90221843c2e2b762d5818369b65af72 --- /dev/null +++ b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-31300---48000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9402aad6123939fcffef2f645275038da283eed8b4b9ecda9b147a000f6f14f3 +size 469 diff --git a/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-49000---51000-in.json b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-49000---51000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b01442d1ec7034823ab01df764a363e542b1ee44 --- /dev/null +++ b/source/parts/detail/s/semroc-aircraft-plywood-birch-ring-49000---51000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8249b33f15644f1a6b107ab3f765e605c817765eb6cc387e5767fa4e8f8b9b +size 469 diff --git a/source/parts/detail/s/semroc-aircraft-plywood-loc-ring-09980---17500-in.json b/source/parts/detail/s/semroc-aircraft-plywood-loc-ring-09980---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c36ea0cbf4c075e89f77ed36c9a2d56ab46461c8 --- /dev/null +++ b/source/parts/detail/s/semroc-aircraft-plywood-loc-ring-09980---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54f5a9a742a6e5c24b9fea61fab42d6db776726774e4b34d5d4ad6608c951033 +size 505 diff --git a/source/parts/detail/s/semroc-aircraft-plywood-loc-ring-12100---15200-in.json b/source/parts/detail/s/semroc-aircraft-plywood-loc-ring-12100---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d65454cda502593a6aa215d46b99432b6654be2 --- /dev/null +++ b/source/parts/detail/s/semroc-aircraft-plywood-loc-ring-12100---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cb62a9e9a30ed21664b40aeedb76d6b81aad89f6e3629143bcb010f13da3c88 +size 503 diff --git a/source/parts/detail/s/semroc-astronautics-conical-transition.json b/source/parts/detail/s/semroc-astronautics-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26d93d3d76cf720309fd6bbca4a15b46ed3cd4 --- /dev/null +++ b/source/parts/detail/s/semroc-astronautics-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37dfdf5f23b12945eea323fa7c0e444fc7bbfc91e2208901e3cab63865fa12b1 +size 629 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---05150-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..db379497a59e0edfa6127835e3b881f957414924 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99f1d596daed2b7a2f7d17e66ce319b581f28b645506608210f223a5dc6c79a1 +size 464 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---06000-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---06000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9997ec3ecf52efaf1a8847534533097b5adb49b1 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---06000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0320a98bf1dac698d529bad6ce48ba8011dc16ca55bf50f4d120b76464aa558d +size 416 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---07150-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8a51f4836ad18fee98432b7549756ceb2942cf6e --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd1188519e95c1ebcfd87dceeaacc678f109cf5acb009a25ee78d0c6e61613f +size 466 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---08650-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5c9718bc295e6192424c4359cecfbca042e57236 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd04db3dea5d83fa37dcc18f99b6ae5c4342222292214b44681d3bd46e915e2 +size 466 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---09440-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d97d3e844781a8cd8675416ab40674a3df444842 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a306a7fa3006bece327e7328c8b67902f7f82cb964365549d8f962c08c98bd7d +size 416 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---09500-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ba38c24f24c989cd1b0e7d2e9d7630a486e59ee --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eaa3f2bebba97ddbf4f3c48d3485cba6441ebeec55a5901948b13836e44077f +size 416 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---10000-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c65bd3b335d4f3d101cce10fa5382622b0aec13e --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e0563540d8e810f80d89535acf2f638314ba7f1199bda54b1ff7d2060e9d9af +size 468 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---11400-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58d35b6bec4a78912d58b83034845ae95bca9309 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:712b5e84c235cd7cdc847075664ce51944d0909a2fb8c3fc388517efbeb53627 +size 416 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---12500-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20b48dd4a367a770da077cedac0c0b9ee9938cf0 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7162f15e3aad6ddf6c36807837f864c1061ccf7050328d764c443513f2b477bc +size 452 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---12830-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..44acdcc89cc2c2866117829b14a079bf6e56fd96 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f2c258f50b6714d8c8d29fb517e9b76115cbf5de2b0f52ca81b65b3961a58b +size 461 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---12870-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---12870-in.json new file mode 100644 index 0000000000000000000000000000000000000000..07318adde08386cd902d89ddb40f5528b712d7a0 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---12870-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecd9efc35dd43439a53fa59eef453f7761d716db54a1271874a8500e2036ca71 +size 448 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---13000-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..46b86665a1ce084bbcd8ee4081df2eafb759c206 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaa847a21cc42256fd464fadb07e7a624e9e254c6ccb3fe0a4c9e1a38ff9a936 +size 450 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---15950-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f66760bf6f91d56c360b00170f5eeb7b6af4ab8 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca57f95f62d2d72e0aac26491c87cf3f81e572d4b86f4eac48e285f2d27373dd +size 448 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---16000-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..897412257ada895eb9bd74db3d327bff37bb57ff --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98fe3878c873276f7483e72d54d7ec66f918d9c70ae2569101eacf1b66b8977 +size 468 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---17500-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3eddcb35d548ce1ae2c4a0169109067454c3b43f --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924d25baa0523d5a17965ba9848b9ece1746242fe56571904f2deb29e9a237c7 +size 419 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---21750-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4998a61f89ac1e73128266bb102749c4d69d14ea --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70f8cbdd4695f4b11853c029621bc7ed046dff0566e6b2356cf24f796c61b7d5 +size 452 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---21800-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ec4dd8ec6ea4a6f9fda8214f847e6885d010c343 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65a582bad8b30ef4a82f24e2934b6ae5390df7a89220c67a0639a4a8c0e88cb +size 450 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---25580-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6342025e2b9d5e726f07768e6deea849992c03d --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f635871a0f53a8a8b02ecdb0830ae87386a74d17eeda7c69af536aa504ea22 +size 461 diff --git a/source/parts/detail/s/semroc-balsa-ring-00000---27500-in.json b/source/parts/detail/s/semroc-balsa-ring-00000---27500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..10fb2df33bf25d3acbcdc0df8c22d1b7c57767fe --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-00000---27500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e31c3070449b7fe998c6b923132bc78f8dba36ceeb083a0ad81b4fcecf8de85 +size 416 diff --git a/source/parts/detail/s/semroc-balsa-ring-04060---07250-in.json b/source/parts/detail/s/semroc-balsa-ring-04060---07250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed178dd772f048364437ef30aed25ebce80ea7fa --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-04060---07250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860a6fbbe8c794f7ad702b7b7d81b6a845717c3c16878e47d160899611d42a8a +size 448 diff --git a/source/parts/detail/s/semroc-balsa-ring-07590---10400-in.json b/source/parts/detail/s/semroc-balsa-ring-07590---10400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a00b07f5fe73bcb53f8a8fdae9ab4d4731c8a398 --- /dev/null +++ b/source/parts/detail/s/semroc-balsa-ring-07590---10400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b383c4f6d0f85035feaa2035b4c20e7854e8f8981f35c5382449ea7ca4a55e2 +size 416 diff --git a/source/parts/detail/s/semroc-cardboard-ring-05430---09500-in.json b/source/parts/detail/s/semroc-cardboard-ring-05430---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddb4f7086e5d4ee6ba41144172d61e80fb9618fe --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-05430---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e939c28eb536e9bd6266b1621a560f3a4894e321bd4ef2692c39310a481b5e5a +size 460 diff --git a/source/parts/detail/s/semroc-cardboard-ring-05750---07130-in.json b/source/parts/detail/s/semroc-cardboard-ring-05750---07130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..344f8203d00ec7985c7fed91ddb59421df606808 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-05750---07130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bbdb4747613adf80c9f1e5ff2f934cc5cff12559e087950668eca5bae867829 +size 458 diff --git a/source/parts/detail/s/semroc-cardboard-ring-05750---07150-in.json b/source/parts/detail/s/semroc-cardboard-ring-05750---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9bc47c4a8c071bf3b2c78b8167047a3fb0230cce --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-05750---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d99688402cb6d8c033811cd74fa29b694ea66ae08277544936a14e8cdf072254 +size 458 diff --git a/source/parts/detail/s/semroc-cardboard-ring-05750---09500-in.json b/source/parts/detail/s/semroc-cardboard-ring-05750---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a0e3970dda28a0e79edb90e153745036db850cb5 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-05750---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c67ead16304b35a4c7267e3eac84796bc72dc65e4d5b2b5d27bd9db5bc0eb2 +size 458 diff --git a/source/parts/detail/s/semroc-cardboard-ring-05752---07130-in.json b/source/parts/detail/s/semroc-cardboard-ring-05752---07130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..253f3245ba4e8e44d080ea98bbaffa477ea4025e --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-05752---07130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d5a4831dce6bcc731df9e1fff16b2055d21bd5dc1fcb112db9b90a1a50a9aac +size 458 diff --git a/source/parts/detail/s/semroc-cardboard-ring-06000---07150-in.json b/source/parts/detail/s/semroc-cardboard-ring-06000---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ede30da0007e84f4d8bf8a2d17c57033702e95e --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-06000---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac0668690c5609030f0e07f6c435c200eaad6a881abbf9c81069bda2c3cf935 +size 458 diff --git a/source/parts/detail/s/semroc-cardboard-ring-06000---08650-in.json b/source/parts/detail/s/semroc-cardboard-ring-06000---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c48d3081060e4c460e0e9e829ff5ae74bfc25b80 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-06000---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8b575d0ad99885d97a15e8e543a7bc6a8f7c8666afe2705b945c366fb8df874 +size 458 diff --git a/source/parts/detail/s/semroc-cardboard-ring-06800---07100-in.json b/source/parts/detail/s/semroc-cardboard-ring-06800---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac4cbe4f3f08e03727d1a49734dd8503fdead555 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-06800---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caab62b9511882ab0a0d90e74ad94922d18e67f6b6b2b3e57a9dae23180094a2 +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07590---08650-in.json b/source/parts/detail/s/semroc-cardboard-ring-07590---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74b028d59e2ae3980b4a7c51e941817aec6466d6 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07590---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff91ed5338fc2b0b407a1797d533a944f01354846614f5ed9d0802405ce2537b +size 460 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07590---09500-in.json b/source/parts/detail/s/semroc-cardboard-ring-07590---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bc6501b98e99902f7faba434a7fc70c28b1d7391 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07590---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72662be68a7a2c50a22ed553a7ec4a0a0c9f76405f7a9806fcf29fcc4498bf88 +size 460 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07590---10000-in.json b/source/parts/detail/s/semroc-cardboard-ring-07590---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e813b9ad758000243785d5b429b50493f1e4511b --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07590---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3feb89f05b4f5949c5e4f920eaffa72e4a4abf0425e69b4673412b783aa2983b +size 446 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07590---11300-in.json b/source/parts/detail/s/semroc-cardboard-ring-07590---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b2229dd98f9ab7da592cb009e77348f6d1c3426 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07590---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df3375f13ebdf8965bd3ff143cafbb61d57ca7e660db1009d41466251fb671a +size 428 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07590---12830-in.json b/source/parts/detail/s/semroc-cardboard-ring-07590---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0bab08ec6cc34941ad23d4dc0ca37fdc9516d05c --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07590---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc2f758708c94d3cc9ab41b38fcd2e251e78362bb6ddb450538384c553b22e43 +size 464 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07590---13000-in.json b/source/parts/detail/s/semroc-cardboard-ring-07590---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8689b645663af585ef6341920720a851f466f03 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07590---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74af3fb8f59b86e71363e9faa664613d4cecba1a3b04787d8c5e7b89dce2e882 +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07590---16000-in.json b/source/parts/detail/s/semroc-cardboard-ring-07590---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bda7551d16c970f717efd1310bb79cde7f40a876 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07590---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d6c0535fb42bea85ec99188814a2f070ff219a63cf80f6e829e30dde917a64 +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07590---18000-in.json b/source/parts/detail/s/semroc-cardboard-ring-07590---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f3de900e9c72422f70d4add1bde37b9ec27c46c --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07590---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84bb73120f51b2a7410bc95ae09c59a894da744e638428dcabc6dfe3da7c34b5 +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07591---08650-in.json b/source/parts/detail/s/semroc-cardboard-ring-07591---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f5edf1bfe3bf5a7a54cd63f15b5b9f7497c484f0 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07591---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac38493299471a4e20285c95e94f3c9a01bc2e5b901d23819c77c1a2350be60 +size 460 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07591---10000-in.json b/source/parts/detail/s/semroc-cardboard-ring-07591---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9eb384bdef4667c0918f04a82f9b1a8b8b439103 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07591---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f09905c9b957f7985dbff205136266264827704f94805b35b6c06e165be60db +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07591---10039-in.json b/source/parts/detail/s/semroc-cardboard-ring-07591---10039-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0cd83e78d75cd18bdd4cbcdc7b21d52dd879a53c --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07591---10039-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498a7961ed9814709e72f8fe43189658b3a968b1e6a7795378ce74d00b2c17bc +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07600---08630-in.json b/source/parts/detail/s/semroc-cardboard-ring-07600---08630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..328cc562beb3e069eecc490721af11f7da718d0d --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07600---08630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb7e54b211a3dbfd4c97edd294b3f02d535f95b6c71e6182230b0aaf1167340 +size 460 diff --git a/source/parts/detail/s/semroc-cardboard-ring-07610---09980-in.json b/source/parts/detail/s/semroc-cardboard-ring-07610---09980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f7e3fac65833131c6fb08663d647619f1354042e --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-07610---09980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d562c59b1900b614da07d2b4e3a343186aad3e4e028a366cb3fb592af62215 +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-08350---08850-in.json b/source/parts/detail/s/semroc-cardboard-ring-08350---08850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..32e6a792ccb2a2bc963c09e96473ef3458869118 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-08350---08850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f733710ad82cd0d776001c72ea3d9b0aeb71143393dce4ec2ed56cc627c4b74 +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-09760---13000-in.json b/source/parts/detail/s/semroc-cardboard-ring-09760---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..31267d44f43b1b1ab7aeadc59145230f361d78c6 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-09760---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4adfa1a51d967c10c7fdd11e551f1b1bff84382f995ae88c98dca19e722b6439 +size 428 diff --git a/source/parts/detail/s/semroc-cardboard-ring-10000---15950-in.json b/source/parts/detail/s/semroc-cardboard-ring-10000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..09a5c9d33f027347b07bbcfeb7994bfe41d77b8d --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-10000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a124d64bf34ef5727ed8c4551872c1440f5829d0c0a59de115e8d2b89cd7ead3 +size 464 diff --git a/source/parts/detail/s/semroc-cardboard-ring-12200---18000-in.json b/source/parts/detail/s/semroc-cardboard-ring-12200---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7120ee4cfe4b82de2400ed7fa904e15aa231d5ca --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-12200---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2eaffb7fc2adce924a57dc146b580db298438e17c2d617be40c2adfdb4456d1 +size 462 diff --git a/source/parts/detail/s/semroc-cardboard-ring-13500---15900-in.json b/source/parts/detail/s/semroc-cardboard-ring-13500---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..913d66ec468142298924269dce6b4bf0743710c8 --- /dev/null +++ b/source/parts/detail/s/semroc-cardboard-ring-13500---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751eda14476f6c5b165e356a9d1ed5769a4b72b1a8d17a7bab1fe9d68581caa1 +size 428 diff --git a/source/parts/detail/s/semroc-clay----04-oz-nose-weight.json b/source/parts/detail/s/semroc-clay----04-oz-nose-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..7c3dfd07c7c0c3e16320a6709a9d38bd2e0eec31 --- /dev/null +++ b/source/parts/detail/s/semroc-clay----04-oz-nose-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18cde63b3c3e6065c24d207b0419a66d2ddf4e10bb531b2d3c778d78c9a2ae79 +size 401 diff --git a/source/parts/detail/s/semroc-conical-transition.json b/source/parts/detail/s/semroc-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..d65e90da0d5619770dbc0e1b3a0a4f08fd9b653a --- /dev/null +++ b/source/parts/detail/s/semroc-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0ff0ccf63e95392d2b01a72444e75cc180cb445d1024e930900b1357b79d7cd +size 610 diff --git a/source/parts/detail/s/semroc-coupler-ring-10000---11410-in.json b/source/parts/detail/s/semroc-coupler-ring-10000---11410-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d14b8ae930beed740a7bcad174e2a10e9fcc544 --- /dev/null +++ b/source/parts/detail/s/semroc-coupler-ring-10000---11410-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77dc62d8a009d6d1149d59515b3cb9513d5b9bf0131b8f5a3d440f27dc241b06 +size 452 diff --git a/source/parts/detail/s/semroc-ec-112-18-x-12-elactic-shock-cord.json b/source/parts/detail/s/semroc-ec-112-18-x-12-elactic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..8c63aafe1dbe85303acab41245d9f52aaa592bc9 --- /dev/null +++ b/source/parts/detail/s/semroc-ec-112-18-x-12-elactic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4164fc47922cb93e2c4ba870013f81dcb91d0072eb1cdf1ff520b016734d5cb +size 439 diff --git a/source/parts/detail/s/semroc-ec-118-elastick-cord.json b/source/parts/detail/s/semroc-ec-118-elastick-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..fbfa5934f895bb968057a5f7f12e0cdbd58afa33 --- /dev/null +++ b/source/parts/detail/s/semroc-ec-118-elastick-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43151f9f1bd07a0dc12a59eb622fcef876b22659e37afcb5c5ab25f88300258a +size 377 diff --git a/source/parts/detail/s/semroc-ec-118-shock-cord-narrow.json b/source/parts/detail/s/semroc-ec-118-shock-cord-narrow.json new file mode 100644 index 0000000000000000000000000000000000000000..1dcecef378a99144f9dd3bc6645a909bf649dccb --- /dev/null +++ b/source/parts/detail/s/semroc-ec-118-shock-cord-narrow.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54fe26e8d6399dc46236492f59e1e68c7a5acdd31f276f8bbb4bfdff4f1da5bb +size 393 diff --git a/source/parts/detail/s/semroc-ec-124-14-in-elastic-shock-cord.json b/source/parts/detail/s/semroc-ec-124-14-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..02f061aa883112b6c5b042c0e67705a4149c7231 --- /dev/null +++ b/source/parts/detail/s/semroc-ec-124-14-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1da13bb605dc6512af8f9191476b8c4dd4bbfb420ed4bfe147099660a583e03d +size 423 diff --git a/source/parts/detail/s/semroc-ec-124-elastic-cord-24-pkg-of-6.json b/source/parts/detail/s/semroc-ec-124-elastic-cord-24-pkg-of-6.json new file mode 100644 index 0000000000000000000000000000000000000000..c348696bb644a15355906ba2417cebe23e5b0fe0 --- /dev/null +++ b/source/parts/detail/s/semroc-ec-124-elastic-cord-24-pkg-of-6.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdda0b78dcffbc21cdfb9f36bdc549e7878dd208bbed2c5b45bdebe5651f5f70 +size 429 diff --git a/source/parts/detail/s/semroc-ec-124-elastic-cord.json b/source/parts/detail/s/semroc-ec-124-elastic-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..654b6e5c0d76131393842204571bb1deeca6812a --- /dev/null +++ b/source/parts/detail/s/semroc-ec-124-elastic-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1782b2ca523304c2f2ac7d6fdaf30d91e1e69959f8c6d5806238df45da376afc +size 373 diff --git a/source/parts/detail/s/semroc-ec-124.json b/source/parts/detail/s/semroc-ec-124.json new file mode 100644 index 0000000000000000000000000000000000000000..66e7be6e36cbe47b552f1941a796805a5a1566c5 --- /dev/null +++ b/source/parts/detail/s/semroc-ec-124.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e82364e9b5cdc3ba8fff46abce8704ddd5f5fdd0df739a947505f65a549f1708 +size 301 diff --git a/source/parts/detail/s/semroc-eh-18-engine-hook-mini.json b/source/parts/detail/s/semroc-eh-18-engine-hook-mini.json new file mode 100644 index 0000000000000000000000000000000000000000..ab50182ece4d354314971ea03bbf9bd94e36ebda --- /dev/null +++ b/source/parts/detail/s/semroc-eh-18-engine-hook-mini.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fdcf09294542c13c529f00531078ed2ea64bb032bedcdc6806fa703d31647cc +size 385 diff --git a/source/parts/detail/s/semroc-eh-28-28.json b/source/parts/detail/s/semroc-eh-28-28.json new file mode 100644 index 0000000000000000000000000000000000000000..351a4ca1c5b0f4088bf76a3bd88ad7ea2b2b016a --- /dev/null +++ b/source/parts/detail/s/semroc-eh-28-28.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a2ce2670d1c0e7429a979228f96b7cd4a946d2a9ceda8255c2fa32cc451818 +size 335 diff --git a/source/parts/detail/s/semroc-eh-28-eh-28.json b/source/parts/detail/s/semroc-eh-28-eh-28.json new file mode 100644 index 0000000000000000000000000000000000000000..71eda9684c03f0311dc35331af12002d2a4c9cbb --- /dev/null +++ b/source/parts/detail/s/semroc-eh-28-eh-28.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a46ceb3b044f3afa111409a2366664b4a9af4c9ea9a527928fa2e0316cfe3c7 +size 341 diff --git a/source/parts/detail/s/semroc-eh-28-engine-hook-standard.json b/source/parts/detail/s/semroc-eh-28-engine-hook-standard.json new file mode 100644 index 0000000000000000000000000000000000000000..411ce46df870c1ec5f871d91860e140af1def4f4 --- /dev/null +++ b/source/parts/detail/s/semroc-eh-28-engine-hook-standard.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05d04dbdeb3e7964ca68dc1edc54539d2895932cc6f2b51885b0c6c5762de554 +size 437 diff --git a/source/parts/detail/s/semroc-eh-28-engine-hook.json b/source/parts/detail/s/semroc-eh-28-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..464007240d27ed8e35799b118e5913f1a256ae96 --- /dev/null +++ b/source/parts/detail/s/semroc-eh-28-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53967b80058a89940f562056976698285c23e91dd26123fc10a24ede67af972 +size 365 diff --git a/source/parts/detail/s/semroc-eh-28-standard-size.json b/source/parts/detail/s/semroc-eh-28-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..687b0f6c3c50a96cea4db7a49d03f04b13aad2dc --- /dev/null +++ b/source/parts/detail/s/semroc-eh-28-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82b9962ea26ee073695a5957b4e306eb592f8f63094e2ef55365e4f2ab0f4d0c +size 373 diff --git a/source/parts/detail/s/semroc-eh-30-engine-hook-standard.json b/source/parts/detail/s/semroc-eh-30-engine-hook-standard.json new file mode 100644 index 0000000000000000000000000000000000000000..816a9ae123213bb2f97327a8591f950389f25258 --- /dev/null +++ b/source/parts/detail/s/semroc-eh-30-engine-hook-standard.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e700a8dbc9ecf30f877659677d63c0ca5b25d254ebcc391ce4fff395894b3e7d +size 401 diff --git a/source/parts/detail/s/semroc-eh-38-engine-hook-e.json b/source/parts/detail/s/semroc-eh-38-engine-hook-e.json new file mode 100644 index 0000000000000000000000000000000000000000..e1660716c2a313b9f55b087e697c82e70c6ef803 --- /dev/null +++ b/source/parts/detail/s/semroc-eh-38-engine-hook-e.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7258f749cf2bc42139adff9c5eb7910c5cc1a772c5735531f8ab167cbeaef033 +size 381 diff --git a/source/parts/detail/s/semroc-eh-38-engine-hook.json b/source/parts/detail/s/semroc-eh-38-engine-hook.json new file mode 100644 index 0000000000000000000000000000000000000000..a3899081078f9937acf6c83f41c1a4cf2ff06713 --- /dev/null +++ b/source/parts/detail/s/semroc-eh-38-engine-hook.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972b241f18b216adb182156e3330d3a5229256954e4b49d7c3a40374e84f90c0 +size 365 diff --git a/source/parts/detail/s/semroc-eh-kv-4-standard-size.json b/source/parts/detail/s/semroc-eh-kv-4-standard-size.json new file mode 100644 index 0000000000000000000000000000000000000000..b2eda5c5ca1a875126bceb000e7ff46211c0a993 --- /dev/null +++ b/source/parts/detail/s/semroc-eh-kv-4-standard-size.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66cc58cbeb918c373a724a838df96679f807a865255a2a51f8d3dde9188bc4c9 +size 381 diff --git a/source/parts/detail/s/semroc-elliptical-transition.json b/source/parts/detail/s/semroc-elliptical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..76d0f73c9401fdc886c8671c8597c275131f9922 --- /dev/null +++ b/source/parts/detail/s/semroc-elliptical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf7f9c394a843477eaf4c166846810235d1230309413521b0d300aae73dae044 +size 590 diff --git a/source/parts/detail/s/semroc-em-18-engine-hook-mini.json b/source/parts/detail/s/semroc-em-18-engine-hook-mini.json new file mode 100644 index 0000000000000000000000000000000000000000..df50750bd1607bac760623dada0129cae4355aee --- /dev/null +++ b/source/parts/detail/s/semroc-em-18-engine-hook-mini.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0cbd251849285dae3f401f6784973335ef1f5b25c1027facba6e4da2aef2db +size 385 diff --git a/source/parts/detail/s/semroc-em-28-engine-hook-standard.json b/source/parts/detail/s/semroc-em-28-engine-hook-standard.json new file mode 100644 index 0000000000000000000000000000000000000000..bdc8a8f0f994645a063fa6472e86777faab06ea6 --- /dev/null +++ b/source/parts/detail/s/semroc-em-28-engine-hook-standard.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71508c16dcf8f8e3ecca9053845875d0bd8758a7e5ef92e87d11466d808b787a +size 401 diff --git a/source/parts/detail/s/semroc-em-38-engine-hook-e.json b/source/parts/detail/s/semroc-em-38-engine-hook-e.json new file mode 100644 index 0000000000000000000000000000000000000000..2268ea1b770ea8fda387a5d0c8fc739e0efb1be2 --- /dev/null +++ b/source/parts/detail/s/semroc-em-38-engine-hook-e.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5ca981c204314979b453c9e803a9d576a94c1546b05086b5a774399985372b +size 373 diff --git a/source/parts/detail/s/semroc-em-38-engine-hook-standard.json b/source/parts/detail/s/semroc-em-38-engine-hook-standard.json new file mode 100644 index 0000000000000000000000000000000000000000..805e8d228fae3d81552490b13e21f11ff4bf2f37 --- /dev/null +++ b/source/parts/detail/s/semroc-em-38-engine-hook-standard.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc907f979aa33051d6f495e82f25a4d044d6a7178dee66772508b360629ad58 +size 401 diff --git a/source/parts/detail/s/semroc-erc-236-elastic-round-cord.json b/source/parts/detail/s/semroc-erc-236-elastic-round-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..9568c0de8b1c4ee2112dc67f6f667f768d24fe5e --- /dev/null +++ b/source/parts/detail/s/semroc-erc-236-elastic-round-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0db994f7544bf4d18b416b346699be1b3f433f6549b00b0bfa3998a1838a45f +size 401 diff --git a/source/parts/detail/s/semroc-fiber-ring-01250---05150-in.json b/source/parts/detail/s/semroc-fiber-ring-01250---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..972d8a1e08693150664a6f5205ac421d66ed1343 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-01250---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eed086b8a48ca393cddebe298119b30a142f375a08f9d70b31283d13e3a181a +size 416 diff --git a/source/parts/detail/s/semroc-fiber-ring-04130---05130-in.json b/source/parts/detail/s/semroc-fiber-ring-04130---05130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bfaaa974b9742050d7f3c54aa044277f1002660f --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-04130---05130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f989927be5f4827bb0998b3f00b70f0257602ebb2d6d329f2959ba7c06530726 +size 459 diff --git a/source/parts/detail/s/semroc-fiber-ring-05170---07080-in.json b/source/parts/detail/s/semroc-fiber-ring-05170---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5957dfaba67f4c95d82e6184e28143ff55ef7dc1 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05170---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc6ff610156dfdded13c8cc25d718d3d650f09ae452fe44104e47b1853e430e2 +size 420 diff --git a/source/parts/detail/s/semroc-fiber-ring-05320---09500-in.json b/source/parts/detail/s/semroc-fiber-ring-05320---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e797b5694ee9a8c148472fd56190d5133d371395 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05320---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7404842c838d3b7c869bbcaa448dfd81607013fbb99b24fe8145b04d22f9bb49 +size 461 diff --git a/source/parts/detail/s/semroc-fiber-ring-05430---07080-in.json b/source/parts/detail/s/semroc-fiber-ring-05430---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d97cd52e3c194707cac4f5afa9222719bb6ef7a --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05430---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2be1d2ff6fa3bbe4dda1c657215fb66fa3a449c447d3c7e2a478e1f0990cbb6 +size 463 diff --git a/source/parts/detail/s/semroc-fiber-ring-05430---07150-in.json b/source/parts/detail/s/semroc-fiber-ring-05430---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..466a4135db1422337bae4e4016bc0ead9df7f20d --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05430---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294c36d32eb596049fa6c78985d260b175b95458918dafe068cc48c0290197ec +size 459 diff --git a/source/parts/detail/s/semroc-fiber-ring-05430---09480-in.json b/source/parts/detail/s/semroc-fiber-ring-05430---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8bf4e007ee029067eb7c183f4684d05a3f0aa74 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05430---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdff35d84861b08aeb0bb162db6ccb09f66d2a790c31d09ca59a578d29766659 +size 463 diff --git a/source/parts/detail/s/semroc-fiber-ring-05450---07130-in.json b/source/parts/detail/s/semroc-fiber-ring-05450---07130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c3b45b4760d347af6a36f6bdfe8bf4ac8dcfe9bc --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05450---07130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1e1ef4e0968e1af3b078c9237f0e7497273aeaa97cd0e621c9ec885d53a8a0b +size 461 diff --git a/source/parts/detail/s/semroc-fiber-ring-05450---08630-in.json b/source/parts/detail/s/semroc-fiber-ring-05450---08630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..895f9c59635313f89ce3c574e80cef8a06b6d770 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05450---08630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:913caa93ec847f2d9792dcd0385ee67b94f590eed7bf9e35d9eabff3dd7c56ac +size 461 diff --git a/source/parts/detail/s/semroc-fiber-ring-05450---12980-in.json b/source/parts/detail/s/semroc-fiber-ring-05450---12980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..21341bad3cd9278f6a7de4472724a3d8c30e9923 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05450---12980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1ed452f7aae08a08863fb8e7470e0e0d0b40fe8d5df32c74946c2aeaf35c8c +size 463 diff --git a/source/parts/detail/s/semroc-fiber-ring-05750---07130-in.json b/source/parts/detail/s/semroc-fiber-ring-05750---07130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..205187344b91597f3dd687a0d32049d2d053c013 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05750---07130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0925d059cdc407f3e7428f6d6bad86190931a55e57ac8017aa2274e441f8b372 +size 459 diff --git a/source/parts/detail/s/semroc-fiber-ring-05750---07150-in.json b/source/parts/detail/s/semroc-fiber-ring-05750---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35bf65e06f0a6eeb22ce877baefd9ee5aaa73b17 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-05750---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d0d15ff27a75e4f9239207e076ace53abf7d800275cd8ebf6406f5f0bcfa11f +size 446 diff --git a/source/parts/detail/s/semroc-fiber-ring-07360---09500-in.json b/source/parts/detail/s/semroc-fiber-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86bc047102a86926d2eecd692fb4d2a59c07649a --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e7657ad597af2684875268a7f40b731dfc54bc1ea077357dc7710d503217d63 +size 452 diff --git a/source/parts/detail/s/semroc-fiber-ring-07360---15950-in.json b/source/parts/detail/s/semroc-fiber-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fda22f85038a1de972cfa2ad809d8f5227ffe3c2 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47193f571eedb944adc189d2f32a6ca50b9494a4cfd22baeb01ac10a10aca878 +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-07380---09480-in.json b/source/parts/detail/s/semroc-fiber-ring-07380---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..63b2e6fb1c39371fa8b9de00915e4020293362d6 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07380---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de799ce4d6ed00795ac3cfca330b6f9b42f8052036ee594c085493a2d34a7876 +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-07380---12810-in.json b/source/parts/detail/s/semroc-fiber-ring-07380---12810-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58312b5a39fc15af91234a85a552bb5a65566486 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07380---12810-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebb55fd55adc252eba3098f1421839c6c12a08da907bc9435391b879f9a4d52e +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-07380---15930-in.json b/source/parts/detail/s/semroc-fiber-ring-07380---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bfd0f2dfffce74b2d5b4e2e2be486eb132832783 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07380---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56472fefb0d85f60239f19aa1de205130d20771777ca6340d46cf7ce65fd4fda +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-07590---08650-in.json b/source/parts/detail/s/semroc-fiber-ring-07590---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b262fb12a58dad56fa7fb8db879571a35b61921d --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07590---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f04f61047d3614cd446d62ace5cb97fed181157cf151af48c57793ef338f83f4 +size 448 diff --git a/source/parts/detail/s/semroc-fiber-ring-07590---09500-in.json b/source/parts/detail/s/semroc-fiber-ring-07590---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..85b96be913862714ea76291098ffa286470821e8 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07590---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707d5b49d307bc611d4e2f2559b9138cad0a7a700df12927be4db7f29bb5d172 +size 448 diff --git a/source/parts/detail/s/semroc-fiber-ring-07590---09880-in.json b/source/parts/detail/s/semroc-fiber-ring-07590---09880-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6cc342481d6ca30a35305722f65bae08e61fd35b --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07590---09880-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6cb3378b497646694e5cbd88eab7adb2c620ec8d44a0343ecfe9071c129d36 +size 454 diff --git a/source/parts/detail/s/semroc-fiber-ring-07590---10000-in.json b/source/parts/detail/s/semroc-fiber-ring-07590---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7a983f6f73f0b6013da0c75cbf0e5ba74d6cb6b --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07590---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06806db168a810d5b2274389099d574ec6f47d6f9182b9a767bfd1c59192b6a0 +size 450 diff --git a/source/parts/detail/s/semroc-fiber-ring-07590---12830-in.json b/source/parts/detail/s/semroc-fiber-ring-07590---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b1121474eda772ee318dd54f632de84d47f9d206 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07590---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e18bb1171391a8b006c670fa51206e8e3ef31b591d550e339d5514eb573657 +size 416 diff --git a/source/parts/detail/s/semroc-fiber-ring-07610---08630-in.json b/source/parts/detail/s/semroc-fiber-ring-07610---08630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5053ca2aa6aabb9ca0411bf48fdf4f63ba6d1785 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07610---08630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c6ca4b69aca65e62a887e443cb6167704b094c2e76a20310ceb7008c8d13a0 +size 461 diff --git a/source/parts/detail/s/semroc-fiber-ring-07610---09480-in.json b/source/parts/detail/s/semroc-fiber-ring-07610---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f813683b51eb78b0317ccba735ee4f3e5f22569 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07610---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe0634b1c19f34f58f5ca8a9abaf34363ffbf973ee69fd3542e13f20e07c48d +size 466 diff --git a/source/parts/detail/s/semroc-fiber-ring-07610---09980-in.json b/source/parts/detail/s/semroc-fiber-ring-07610---09980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..39985cc7c1936b8940bfbc1c13662731283addfd --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07610---09980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b7fd999088ed91294039e0712081a79f94269571bbbc76c1a2d5d9b0fdedae +size 463 diff --git a/source/parts/detail/s/semroc-fiber-ring-07610---11100-in.json b/source/parts/detail/s/semroc-fiber-ring-07610---11100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b351231b6c163e577c1d43999a1117e4b77db9f4 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07610---11100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2351a6f5454162f9df1d9700b11b983b167ba69b83b30404d0a497cc14cfdb37 +size 463 diff --git a/source/parts/detail/s/semroc-fiber-ring-07610---12980-in.json b/source/parts/detail/s/semroc-fiber-ring-07610---12980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2096bd15fadb05241ad7a429651add15a8b2566 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07610---12980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18d09978ed9df4e6cc1200468156fb7cbc959cd44ff69eb378690deb31b089e5 +size 463 diff --git a/source/parts/detail/s/semroc-fiber-ring-07610---13000-in.json b/source/parts/detail/s/semroc-fiber-ring-07610---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..592bcca995ef1c2868e625a2415af1b6499f648a --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07610---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1e4751a326b391a55003c9602d09e419fa9f428c9759ca732bdca6c647bc88c +size 450 diff --git a/source/parts/detail/s/semroc-fiber-ring-07610---15980-in.json b/source/parts/detail/s/semroc-fiber-ring-07610---15980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..407d69622bd19fe9be18c2b71f10a551e27a64f5 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-07610---15980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c0478acce56b82e3efb47a68ae6fb007097bc92f5a7465bd486b30e891de3a +size 463 diff --git a/source/parts/detail/s/semroc-fiber-ring-09760---15900-in.json b/source/parts/detail/s/semroc-fiber-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc875c07fded6eb9e530974eadad11de042558f7 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc09d4191b08c8860416bcdaff890591ba24fd8ec70c5d1c9ba247fe11e1104 +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-09760---15930-in.json b/source/parts/detail/s/semroc-fiber-ring-09760---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bc791a43001a95624f2fc82a3e31a506c9ff7fb6 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09760---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:680372c7c85bf3327fa64bab51faa310bc42220372973224d7760d1a109fc9d0 +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-09760---25900-in.json b/source/parts/detail/s/semroc-fiber-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b32bb9310c08f8844387f7adf4189d19e1f32876 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbba643ca9cfb96b6e2bf331bfd4b0ac97dc0e962180b8c058043b52810e7886 +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-09780---12810-in.json b/source/parts/detail/s/semroc-fiber-ring-09780---12810-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2a5814d77ff68979e36a68a10caefe1e63248d7 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09780---12810-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f5e55bdd5f5d27f751318f5e854b38def2b4b52620ffe51a09ea7682439d7b +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-09780---15930-in.json b/source/parts/detail/s/semroc-fiber-ring-09780---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2fcc4a620a02c6f41bf6ae7c9d6f4d9051f48d36 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09780---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c333684badb0c07b36606487be986606a1d164b7b3568c4a8a46da0896d16ea2 +size 470 diff --git a/source/parts/detail/s/semroc-fiber-ring-09780---25580-in.json b/source/parts/detail/s/semroc-fiber-ring-09780---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..463914b16163d5f1eddfd6e646027d96f9a46dce --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09780---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056ad065f7f63ae06f4f9f93f6c36ad014ab671b13721c9067d1445d5810d73e +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-09780---25660-in.json b/source/parts/detail/s/semroc-fiber-ring-09780---25660-in.json new file mode 100644 index 0000000000000000000000000000000000000000..47a282d590ea2a7db3cbec662b02f4464553f4ef --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09780---25660-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301f1cb7c0e1c67cf7256f04b8b29bfbd229cd80c8dc5f4832d9ba7aae5f11bf +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-09980---11300-in.json b/source/parts/detail/s/semroc-fiber-ring-09980---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8eefff44963129eda077ecd79e00bf2b2390abac --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09980---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b321d66c020a5760a2a9795b2b303c856af7c72aa87f9c11c4b0ef6a0e3da597 +size 429 diff --git a/source/parts/detail/s/semroc-fiber-ring-09980---12830-in.json b/source/parts/detail/s/semroc-fiber-ring-09980---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5e2649da9b9d1047faaec49d4f16c0b9dc1d7f6d --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09980---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3d1e03955de25c908d5c17375992935dba04893c1d218c82d033a00f778223d +size 454 diff --git a/source/parts/detail/s/semroc-fiber-ring-09980---21750-in.json b/source/parts/detail/s/semroc-fiber-ring-09980---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7b55e818a7b4687f4d33d295157959c4813f477 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-09980---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf6e36205db806dac15b2ad32364385b0d0f73a880075259589614d7ec0128cc +size 452 diff --git a/source/parts/detail/s/semroc-fiber-ring-10000---12980-in.json b/source/parts/detail/s/semroc-fiber-ring-10000---12980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ead920c8cae99199126df79bcbea60872ed26ce9 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-10000---12980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b9cf6c23002557b940e452a3810bd600a298334ca93a57d02a8eb5f7caf180f +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-10000---15980-in.json b/source/parts/detail/s/semroc-fiber-ring-10000---15980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..06d945dcb13f64cf98e460c3963f2cad993e36f6 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-10000---15980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b58cc97a114617eccf502fb0c48b82a147eb80a886471008791eb8a66e07ccc +size 463 diff --git a/source/parts/detail/s/semroc-fiber-ring-10130---15930-in.json b/source/parts/detail/s/semroc-fiber-ring-10130---15930-in.json new file mode 100644 index 0000000000000000000000000000000000000000..269304a16f3e465bb1aa85cde19fe2d459cbb88f --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-10130---15930-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48ecfa55790076c2fba646c065a0ae84a7852722f41c78a1961cee8465920e21 +size 465 diff --git a/source/parts/detail/s/semroc-fiber-ring-10400---13000-in.json b/source/parts/detail/s/semroc-fiber-ring-10400---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d0749609f7c817c49d6762a1924bb38c513a45e --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-10400---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6abef9d28c7aaa9e1b6e3027637218d93673e6a6d9884e9d42b3591f5e81f628 +size 429 diff --git a/source/parts/detail/s/semroc-fiber-ring-26400---37020-in.json b/source/parts/detail/s/semroc-fiber-ring-26400---37020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..916d66f34e2832bf6a6f68d2a104d1188eeef4d0 --- /dev/null +++ b/source/parts/detail/s/semroc-fiber-ring-26400---37020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf40d109195f487a52bc915c1a7e5625038b9901d28df97a0b2295bccdc2489 +size 465 diff --git a/source/parts/detail/s/semroc-fiberglass-ring-00000---10000-in.json b/source/parts/detail/s/semroc-fiberglass-ring-00000---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f06fe8fc3ba17302e00228772f34f683a2a86139 --- /dev/null +++ b/source/parts/detail/s/semroc-fiberglass-ring-00000---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a7484822e554d9f46024c20be1653ed4b89ed9bf492a95c9eb61b31f7350e65 +size 465 diff --git a/source/parts/detail/s/semroc-haack-transition.json b/source/parts/detail/s/semroc-haack-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..343f83bc0586ca0c60acbcea0778cc56d9ccce10 --- /dev/null +++ b/source/parts/detail/s/semroc-haack-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9316937dbe0e683c5187fe76ea42d8132fcbcdac9ae19f0c4aa244f5cd821f9a +size 592 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-00000---11400-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-00000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d030943acf0d70ff3f873275140f8fea5b757c15 --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-00000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f52198ba764848bb8be0684ba685ff80625c80377ea5696f3d34763fe9adc10 +size 479 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-06660---07130-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-06660---07130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..65550571401657df67197751254077cff6393f00 --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-06660---07130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89b84d8d6a9fadedc116dd0c8cea9944e072863163fef4922e71b74264431f83 +size 475 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-06730---07150-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-06730---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37856a1bc78f6d6d763ddbcbf6e2160780b4f770 --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-06730---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d570f5c1c651ef36ffdb3da62e5a3838198d4e1ae60119fc86517411dceb973c +size 488 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-07190---07700-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-07190---07700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89d3c1977ebbee287b8da20f43afc793a38897b7 --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-07190---07700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006f0e337a9763e4699c013a56059870bdea4c31540ce77c9e071d0068f1dcf1 +size 490 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-08230---08650-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-08230---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cb7bb90dcaee1e97a230d578a3c1df884b95460a --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-08230---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08cfa159b55273dafe2a59b99b255d484636edf5622359a9f4729371f3d552cd +size 488 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-12160---12830-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-12160---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b57627726638fb852851df38b0db837186fc88a3 --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-12160---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bb982738d742f9fd0600cbffa956424ad63b0fa5f1f764bd3b58b64c0d4860 +size 477 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-15530---15950-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-15530---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8b9a6de8de0d91a7d3cd46ebcbcff534f7c7f8ae --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-15530---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c24396844bad90bf47652c17bce4664b37755c8473239772f7a98052962b276 +size 490 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-19600---20000-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-19600---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..89513b372e77b3cb1e3d525823edb45ce8418570 --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-19600---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5586140454c23e58113214592ba25bf0ecddc5166a29e875691df0d8df11c6e3 +size 477 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-21400---21750-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-21400---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c510317be01e779789539c2d8fc610f326c93932 --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-21400---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6893c77dd03d16d3ac5f5efc7403807ea26286cfd7b36e0d6f29ad0e0260631d +size 477 diff --git a/source/parts/detail/s/semroc-kraft-phenolic-ring-29700---30030-in.json b/source/parts/detail/s/semroc-kraft-phenolic-ring-29700---30030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d8c1fc133015ac0cdfae222d5620c9d22b440ca5 --- /dev/null +++ b/source/parts/detail/s/semroc-kraft-phenolic-ring-29700---30030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7742f65f03a5826884705d5e450018ad0ec4b014e7c129c1512e05e4a12c11d +size 443 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-00000---22500-in.json b/source/parts/detail/s/semroc-lite-ply-ring-00000---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5838273bed7f8b79b0bab32e2362c8c4f1a08d63 --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-00000---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf7f4d1302f01b156a559ea9b94c62ceb8d7b98c753e34891d6122cbe3c1731 +size 467 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-03000---19980-in.json b/source/parts/detail/s/semroc-lite-ply-ring-03000---19980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..890814d52a207c441905ae3b3e2ad6dde161bb6f --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-03000---19980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:094ef1784563f7058d616258c453cb39a658486f06a1848db7f4f95a9e76b8cd +size 459 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-09760---27500-in.json b/source/parts/detail/s/semroc-lite-ply-ring-09760---27500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5cb0e5423d46191f1dac0fa5a0fe572421db30bb --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-09760---27500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42109ae0ef4a11579670c5717ab7c6ab451d78d74e3175a367275e376c42cb3c +size 425 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-09760---39000-in.json b/source/parts/detail/s/semroc-lite-ply-ring-09760---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..37197fb622ace9962f794d572e550450d388687e --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-09760---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d85399a15bd69c19551084af3ff2207f95b98b5507ae8de07a73347026a4359 +size 425 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-09980---25580-in.json b/source/parts/detail/s/semroc-lite-ply-ring-09980---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e751e8461ca8f83673bfa850587e8658b3ab236b --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-09980---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cfcd65f3ef5ece4d14476c8b8ec621d0a6b9204eaac954ee69ba09175e65f3e +size 425 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-10000---19980-in.json b/source/parts/detail/s/semroc-lite-ply-ring-10000---19980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8e2bed525768430dc769e7159709a30a860c83f --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-10000---19980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20f02947db6400c81d2bfd6b4e2efdbbc300487069df2d06c7935e240bf4687 +size 459 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-10000---21750-in.json b/source/parts/detail/s/semroc-lite-ply-ring-10000---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa310d7cb834c4eb000d0953b9ebc966b633ed55 --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-10000---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b8214643634afef14411b5cd94240e824f78977d21b1fcce41c2dd2144272ef +size 425 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-12200---22170-in.json b/source/parts/detail/s/semroc-lite-ply-ring-12200---22170-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1f21adae0050de2c43936589c00a53a4e9ba59f1 --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-12200---22170-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32563068a1df5350fa5e2f295300dca35dc45855f8bc1584426951cc9642ff1b +size 467 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-12200---22500-in.json b/source/parts/detail/s/semroc-lite-ply-ring-12200---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..12e25726499886219036d11e7e3d5b943bcdccab --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-12200---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfedd320aa5a55149824cd754ad66acf796750a1e7f194f6d31f634326fca95c +size 467 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-12220---25660-in.json b/source/parts/detail/s/semroc-lite-ply-ring-12220---25660-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4f1a7249f3ccd1248209adfd2fc17cac29f29746 --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-12220---25660-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b46e1bdabb84aefb51b1e8c679ab9273ade59f3b91a34f3e031176867c93925e +size 480 diff --git a/source/parts/detail/s/semroc-lite-ply-ring-12700---27500-in.json b/source/parts/detail/s/semroc-lite-ply-ring-12700---27500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4142d8b1f2ccd38bdf1411f38ab9c9f7c6625f58 --- /dev/null +++ b/source/parts/detail/s/semroc-lite-ply-ring-12700---27500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd2d9cfbe414e65c32beba65f0731a23363008d66c7f806eb96c4af6da97670 +size 425 diff --git a/source/parts/detail/s/semroc-mat-board-2-ply-ring-05430---13000-in.json b/source/parts/detail/s/semroc-mat-board-2-ply-ring-05430---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c6584817acbb73ffb00add3e414ff1db572999f3 --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-2-ply-ring-05430---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1454160da87fe7b4e8f18e066db9f66534ace3b3297d8737b26a188a03286d78 +size 480 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-05430---10000-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-05430---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90d13afdf2a4c60c9f7932ab97b588aac08245da --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-05430---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c55a7d1d28fded3aaf14b040a17eeef68596d511110d1cad6f34dca118381de8 +size 480 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-07360---15950-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07360---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5fc83db0172663fc8a117b9e78a5e7186b2c945b --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07360---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7466e1cccbe60abcc52dd2780b9b9f0c16c61348c6d1255bb2180bb7a7623efc +size 446 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-07500---16000-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07500---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6592faec2a5885f26699a2570916b443a1c0c0d9 --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07500---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0ff5e9682333713485f30b3218b061acd68b199c2fcf0e91b8b371609c4ae1 +size 484 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-07500---18000-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07500---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee1d08876cfac782c9c261153fa2fee51161cbf4 --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07500---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d763827fb3bf3e1c610c46e2f86cf79e8297eaebb0d3cb83989dd94a089f84c6 +size 484 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---11400-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00ba4971f1087bec40ebec92efd308a8e72ec5c2 --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:315089d02cfa35c273679f2415c2cddc8fa396dcca71a5af068005d773d8fdd3 +size 446 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---13000-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ddcdf8d6af66b92509679869828866c0f4251a09 --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5b9095986d8909c2bea0eead4be21c9a85a3aa9a82f1aafa9654037f6c037d +size 480 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---16000-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1211ab68d86fc09a446d98c6c67da76e05d427af --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee68b6c689e8e1ca4fdf07a5c54fd79dc76ada801d7eb0fb4b3f71267d4920e7 +size 480 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---21750-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fabd750537cb4a57e31ace6d5727a95d5f6c5d38 --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-07590---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:551ffeec68e7da5f5c1081b5a1c83a9d004bfbd813b5209781c8f959ed4fad43 +size 446 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-09080---13000-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-09080---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64b403db3bfeb686dc794d9e374497359eff1955 --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-09080---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b59d55786ab27fd9e79cdf884550dbf34125d07772d7f6fbee87439d399e924 +size 480 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-10400---13000-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-10400---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..05e97aa5166f818d8008a4c67c44a059d45f163a --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-10400---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52000b5e72ccb4bea2b699d2b389e6b2b4300d6bc3b169c4ea6764b0696c4883 +size 482 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-10400---20000-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-10400---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..79dec6db813de1dde235bc2b86d68982abbfb16e --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-10400---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b512e714701980143313c27f63c4dd24d33dc6fa523815229fdfe75b772522 +size 482 diff --git a/source/parts/detail/s/semroc-mat-board-4-ply-ring-21000---28959-in.json b/source/parts/detail/s/semroc-mat-board-4-ply-ring-21000---28959-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6a804caef7d04519b80b790bf4aac1ba309df6ab --- /dev/null +++ b/source/parts/detail/s/semroc-mat-board-4-ply-ring-21000---28959-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c6d2c318b54f5f56a05a34222fd6718f422d2b4c34ca8dc998eb458b8cb782 +size 446 diff --git a/source/parts/detail/s/semroc-mylar-streamer-00010-in.json b/source/parts/detail/s/semroc-mylar-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..685d34e8e8319157b17d4a5ddfe84466e082e704 --- /dev/null +++ b/source/parts/detail/s/semroc-mylar-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd57fa307bbe441c448cd1587b94accd40999dfb0931671911953c1ab838d91 +size 370 diff --git a/source/parts/detail/s/semroc-ogive-transition.json b/source/parts/detail/s/semroc-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..53a44235c867f096919410f9cb2860b0761dcb3d --- /dev/null +++ b/source/parts/detail/s/semroc-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d373602d5a7b8a1ed71790a489295423b5d670de9ca396110a0e61645af12d +size 570 diff --git a/source/parts/detail/s/semroc-paper-ring-00000---07100-in.json b/source/parts/detail/s/semroc-paper-ring-00000---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4168e439983aa68292fc58926bcd1f9c367b3661 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-00000---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:547889db1884ba5b2907ec29036397032ad8a9bba83d02eaa0179938d35a6cff +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-00000---09500-in.json b/source/parts/detail/s/semroc-paper-ring-00000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dab9d435fa0060b5a826565f27c96009b4da7e12 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-00000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34c976952e7831865a4c7fcd271dc663260fbfa20bec0a1932ca955e49822d2 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-00000---12500-in.json b/source/parts/detail/s/semroc-paper-ring-00000---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2ef94a00a96496e7c2329d1964eb2f021a4e42cf --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-00000---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:158006b4be2ca66c457bb531827bc39bff5d878db9daf0003ebf2b137013f700 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-00000---13000-in.json b/source/parts/detail/s/semroc-paper-ring-00000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e32d2dfc2f02ea9a5982bccc867d634f9e7cff64 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-00000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c77d89dc125410cc2614b33473fdbf17d17d671361fb6ffa34c3df52d0c166c1 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-00000---15900-in.json b/source/parts/detail/s/semroc-paper-ring-00000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5bc58ce2e9b8a5a231904f9fbb2ae9e3c05fb45d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-00000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d21bfd97d1d5bd18bd96c36fc96cc62c2b3ceface4761ceb8371a4ffa64ef10 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-01250---02500-in.json b/source/parts/detail/s/semroc-paper-ring-01250---02500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41845c8b9e093481193c38c78a498de64cf44d3b --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-01250---02500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ba982c8e9072b39f038807b5e5f35f6bf113b956036ca98be56424b78b8a11 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-01250---03750-in.json b/source/parts/detail/s/semroc-paper-ring-01250---03750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..57f94d3f165b61d1a4c9f3519c861012577509d6 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-01250---03750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abbc0ce37736733f4c9b0adf295f698eb38787b3c9ededd53225d9346fb7aa4c +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-01250---05000-in.json b/source/parts/detail/s/semroc-paper-ring-01250---05000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..74239cbb62a3c069e00ab18b5a5e227d924b2056 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-01250---05000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9409c6af160ce6bb309dc90019f02fa2380e74a72f256bd3253e8a2538d5b32a +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-01250---10000-in.json b/source/parts/detail/s/semroc-paper-ring-01250---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8896f435422cd6129a4f6141d46e888206db460 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-01250---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01f2de5371d6dee39aa6ccbbccd3ddd69c31210412bc0a2599d6d38b7600802d +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-03125---03223-in.json b/source/parts/detail/s/semroc-paper-ring-03125---03223-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3d1ace74b06795a67a3901dca8e7177d0da0e6f0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-03125---03223-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be794a68f12971ba2d82ac6fab3174bb5305d605056407f6d47f712124536e06 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-03500---05150-in.json b/source/parts/detail/s/semroc-paper-ring-03500---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33cad251dce1d11c26e6a83c67b6e24c8809d73e --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-03500---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a89bcc427c253320be2fcf052d716242ed9885b0805c3bfb4f81476d69e0c40 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-03750---05150-in.json b/source/parts/detail/s/semroc-paper-ring-03750---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f85a53251223a185564ee09562f150ef48e4901d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-03750---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75cb898a152563e64eb441d7d869df2abbf59cefc7ab1f4ff730aa772ecf2f5 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-03750---08650-in.json b/source/parts/detail/s/semroc-paper-ring-03750---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dda6dba9352ed93216f25d6f4175a6096eeea5f7 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-03750---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51c8ab2c39d9d5684b002e9a070a6d70e9af278565ab940095ca2a37d3be0b33 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-04130---05130-in.json b/source/parts/detail/s/semroc-paper-ring-04130---05130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6d36154ca96e730fc952f093646209f2af1ab24b --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04130---05130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a34540f7728456c0234e9eabe75ef432a3ff5efe7a168595624a40c40fcec26 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-04130---05150-in.json b/source/parts/detail/s/semroc-paper-ring-04130---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bcfc8eb3e9ff5a7c55490c15e1894d23e479db81 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04130---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a995e93e664becf90f4c7c858c7c3c9d9bc9b964bc52ce605d99ee8d89917d5 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-04130---05180-in.json b/source/parts/detail/s/semroc-paper-ring-04130---05180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1fda815b17eb637f697de7ef5c1ea1b3995dfd2 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04130---05180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215ab0de5962038cf47ab566f6e0f61436c25bd64528f9d2388caee642ca81be +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-04130---05200-in.json b/source/parts/detail/s/semroc-paper-ring-04130---05200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82a20a69511404a0548ba1e195748ab37972d8f2 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04130---05200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2234d8cc3578227937bb3035a465bab987e6d12ff130888ee227354c550f598 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-04130---05201-in.json b/source/parts/detail/s/semroc-paper-ring-04130---05201-in.json new file mode 100644 index 0000000000000000000000000000000000000000..734ad1d3988175ef7e6d83fb2c55c4c8e197e887 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04130---05201-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4283a13ab91423b95a461235178b2c2311a5732c38fe85a093206a3219546b66 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-04130---07100-in.json b/source/parts/detail/s/semroc-paper-ring-04130---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0657c64a735bda6822fcff9518441673e3926f39 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04130---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e829f82f7ad03b91f87923b69e865e78efb9cb1eaae972f40af134227e2895ec +size 451 diff --git a/source/parts/detail/s/semroc-paper-ring-04130---09500-in.json b/source/parts/detail/s/semroc-paper-ring-04130---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c1014f6543a3a3b699e3dc96893fa55860d0307b --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04130---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4f188a30ef67e4dc1409b72f617887ec98fdf51778e332fcd94c4581a56e381 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-04530---05150-in.json b/source/parts/detail/s/semroc-paper-ring-04530---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8ed715f1dcfb3858f879c12365e39644b08a1774 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04530---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bbde6881e9bafd2de3c67893d7d4c7da1031c2dfdc2c0da0f524eb46301a6c6 +size 420 diff --git a/source/parts/detail/s/semroc-paper-ring-04730---05150-in.json b/source/parts/detail/s/semroc-paper-ring-04730---05150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efc8939854a802aafa3e975ebe376710ff0fa435 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-04730---05150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cd884e254add6a7df05ccad875d1b789ce722e6df9a254d7d55258d46238e75 +size 461 diff --git a/source/parts/detail/s/semroc-paper-ring-05000---13000-in.json b/source/parts/detail/s/semroc-paper-ring-05000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..640d99d716a13c23154ae67de4ab7153687e129f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc88581143ee16913fd8a993001b771d9d894674061b43230b1a4de62cf90660 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-05000---17500-in.json b/source/parts/detail/s/semroc-paper-ring-05000---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea3cb25d7193edfeb435f0cbf1637b4d5c44c486 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05000---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d6c1e40228477ae9ea7d5be69974a714ebc5e1f65bca6503dd12bdff3fd34b5 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-05276---07087-in.json b/source/parts/detail/s/semroc-paper-ring-05276---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2cb6868c425da693ece52ab761a1f027bbe8bb49 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05276---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f55cb3c117e57334d1b09f4f5e4224b5bd7b08481836eb128fb7b7c8d30526c +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-05400---07150-in.json b/source/parts/detail/s/semroc-paper-ring-05400---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..282c909710a0da0722f69cc1feea27045d79895a --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05400---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f847c63c2db7723b6697e5ccf3a8c6030b654ffa593b8b1058ab1543d089a640 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-05430---07100-in.json b/source/parts/detail/s/semroc-paper-ring-05430---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4bada9680fc4713aa7e6f7472836fafb378cc279 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05430---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404c50ea5d311e625c384536d43d37d786a40515a8d8bbe2239de0c80668a3ea +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-05430---07150-in.json b/source/parts/detail/s/semroc-paper-ring-05430---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a3b59ab0464903e76ccbc2ab1bf3a17e5e2c27c7 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05430---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c664662478f6eebc12fa42fb5b1a1e6cffcd4e41258ba2156f4e346b6cef25 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-05430---08650-in.json b/source/parts/detail/s/semroc-paper-ring-05430---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..81d8c4006aa3a513587dec0e7f4359b97520d019 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05430---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c341bf0d6e17772859bf6f3467706a0bfb50f49cd4aa5e09b31a8d1854ac933 +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-05430---09480-in.json b/source/parts/detail/s/semroc-paper-ring-05430---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aaf34590a336d4a49bdfc7159b2e9b0a530b1f3e --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05430---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b19e5cd0a783a7d6fc2add2c4ab093709ce1435ba35ec3a4a2a08131133e31f +size 463 diff --git a/source/parts/detail/s/semroc-paper-ring-05430---10000-in.json b/source/parts/detail/s/semroc-paper-ring-05430---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..69ae91a950fa83a9cb32461d085344b8d542e891 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05430---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96ac2d497fe39484ca03c483f021042e3e21ede95dd72c146f8f6d09cd2882b4 +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-05430---11700-in.json b/source/parts/detail/s/semroc-paper-ring-05430---11700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2eb650672ccb0b86564e8baec2eef1db7ad9b8d2 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05430---11700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0608282c60361a1212fc90051e8387e55492e756aefbf3b70dd641c59f6e0a20 +size 463 diff --git a/source/parts/detail/s/semroc-paper-ring-05430---13000-in.json b/source/parts/detail/s/semroc-paper-ring-05430---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..233e42c141e7b3795ae2297f3e7a76fc9abe2d33 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05430---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cad96273ddbf3a52f0218360ca1f8b251d6299fc6522da1d601b1a330def3596 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-05440---09500-in.json b/source/parts/detail/s/semroc-paper-ring-05440---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a10f103be4e7c2ec7f1510bb00e87d1c78aac549 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05440---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21b41c47e3580cf6727232fc7ebdac467c9cb413063eafdd276af7cfe1a35983 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-05440---10000-in.json b/source/parts/detail/s/semroc-paper-ring-05440---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e534353cfd2b0d29ad7c809e075e12a78fb056ba --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05440---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07851050efc242cabef4080ade205c5e36a4ce6fa29757b3473dfa98903fe591 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-05440---15900-in.json b/source/parts/detail/s/semroc-paper-ring-05440---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..60262fa29d452ec96c8746dbf505bcc039bf59d6 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05440---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e611953671d5f4d4b2706763f988247dbbe62104864abf04315659d144d7fcb1 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---07090-in.json b/source/parts/detail/s/semroc-paper-ring-05450---07090-in.json new file mode 100644 index 0000000000000000000000000000000000000000..70846c2766ddfb200fe7ae2546e38ee3d8557804 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---07090-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b4a92d0ee215303714ee32d789c62167786788fbc179901e7eb972d3ac3f5ba +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---07100-in.json b/source/parts/detail/s/semroc-paper-ring-05450---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c243f8f8e3ead48d9001fb3c63091436b828cbd3 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cde3e28188c337d7b78a9a7843b644c6b013c4032becf6078cd9e5f99b8408 +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---07150-in.json b/source/parts/detail/s/semroc-paper-ring-05450---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7498bd351f9a115db488a79fd2a0f056e81eca4 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48199ed86e3c84804d1058df65de53edc48b42565f101576be2f59a4f1609bc8 +size 462 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---07590-in.json b/source/parts/detail/s/semroc-paper-ring-05450---07590-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6de54b70042c081fd60d17ee4cc31c426b020cf0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---07590-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:499ab9be66c3f39f5da36d8d9299865610bf842ad268ad0573f0fe2951eff80d +size 462 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---08630-in.json b/source/parts/detail/s/semroc-paper-ring-05450---08630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9b377b55553f25ad95b1482f539cbdb4eea95aa0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---08630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:861fe0f115aec90d10ae1fc8c30bf92864cf9038848a709b8f45d096e02bfe6e +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---08650-in.json b/source/parts/detail/s/semroc-paper-ring-05450---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..420ade4c15ce2089049b22cc358b6da5fb7c65d0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570af932f84f9bd13fa449f3c7df9bde6042a4c7d18e2bfe4e983350a6ea61dd +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---09480-in.json b/source/parts/detail/s/semroc-paper-ring-05450---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df82b815277b94aebd07d6f8df4f6e643b7566b0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7d6bd1ffe3ba219f137c2c57610f955adce2f8d6729d40d8b6ac17e285bbf8 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---09980-in.json b/source/parts/detail/s/semroc-paper-ring-05450---09980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..42f1f050540f7ef1b3fab1bdbae48133862d5c37 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---09980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f4a85e4a4052e005a2fcaf6dae0694f16eacca76e9ca3e2b2c8f38ebf93e4bf +size 468 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---10000-in.json b/source/parts/detail/s/semroc-paper-ring-05450---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..952e890cd9421653b253bb5195e01e569a30712b --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8183ca9f0838615973785549b07464abef620e15a90cc3f03bc329a215bbfa80 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---10200-in.json b/source/parts/detail/s/semroc-paper-ring-05450---10200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..605e5e140b625ae613995729d9512dfb8eafd697 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---10200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc99100bac3297cb2ec97bc36e45f6eff11e05edff9e5c312abed8754f4a73d +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---12980-in.json b/source/parts/detail/s/semroc-paper-ring-05450---12980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ebdecbfe194610bff02781963a0d83301e683278 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---12980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f422959b2dc1650e94fc81e721f3f7a2cd5829258b861ae43f84f34c13546999 +size 463 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---13000-in.json b/source/parts/detail/s/semroc-paper-ring-05450---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5bdc734e621ca8fb1b38b78259a958834215670e --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3163fe9e77637c02000b1de373f7332c2931e9a3f43e1a4767a886c7a4c47942 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-05450---20000-in.json b/source/parts/detail/s/semroc-paper-ring-05450---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6eb57890db190f3b7067abe05099a135f396313b --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05450---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72e4f538cb26575bd5f168641d9c48efc0f3bcd0cfc193ba1a356fab0a25fa4 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-05750---07100-in.json b/source/parts/detail/s/semroc-paper-ring-05750---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9cf8c0301bbbd00d8ae1d69ae46c27ca2ad162b0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05750---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75fae9acb67983f88253f5649390d8f019a620a046b62df2bfaf6b04b2967af0 +size 451 diff --git a/source/parts/detail/s/semroc-paper-ring-05750---07130-in.json b/source/parts/detail/s/semroc-paper-ring-05750---07130-in.json new file mode 100644 index 0000000000000000000000000000000000000000..122f8008179fc69f0856af893ceef808472d667d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05750---07130-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9592e2a09efea1d4a4f5dac7b3ff18719a44cf9a2c2984350da3c0c13fd373 +size 451 diff --git a/source/parts/detail/s/semroc-paper-ring-05750---07150-in.json b/source/parts/detail/s/semroc-paper-ring-05750---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0c1e506f13764c79bcd1af0e0e7e6560720f6c5d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05750---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd75f35b087f4d47f950516e0e6bbe264414528b8c5b54db2ecae471d578a73d +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-05750---07200-in.json b/source/parts/detail/s/semroc-paper-ring-05750---07200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3a65f57e3b15dbdb731c3d8d2cb7d359f0327c87 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05750---07200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db648caac21397e191e8e307f52f29ec63bb04645db618ecee622f8c3c7e2b82 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-05750---07470-in.json b/source/parts/detail/s/semroc-paper-ring-05750---07470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e257b33b6e8c3aebf8ff345926ecb863f87535cb --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05750---07470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9f6fb1616dba467d186f19d69f56b1b25a005ddc207e56ebe9d758950e5a0b8 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-05750---09500-in.json b/source/parts/detail/s/semroc-paper-ring-05750---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f01ff28993b31e23698b7c05f9ddb19b4f769ba7 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05750---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa916a65541714d53dac0d230c472c8e6adb4570204310f1ab50556de48f5fb9 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-05750---10000-in.json b/source/parts/detail/s/semroc-paper-ring-05750---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b780064d0a63abebb7542ba49b0c4c14374a287f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05750---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fcd50742704f85334365228feba6cbe46492cda639951bdf32ada271aa61c25 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-05752---07150-in.json b/source/parts/detail/s/semroc-paper-ring-05752---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e58c8eeea4c2d0a39c7eaa8425cd694dcfdaf00 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-05752---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af2d628df810dc21bbf6d561cf801a79c90d704acd336f7ab79a4c37b69dd46 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-06200---07000-in.json b/source/parts/detail/s/semroc-paper-ring-06200---07000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..04ded2db90c9deaaf4ac448716a8a025dbc2fdfc --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-06200---07000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87cad2e2b0baebee8a49503c180005d5cc011c29ee3ddc6ae8bfc0f31ce8c60e +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-06299---07087-in.json b/source/parts/detail/s/semroc-paper-ring-06299---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33f77c4a64380e9db8bb6adc205b873ad1956e91 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-06299---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2618801bbeeb8444ae23d02428a205465d24508f270ea4816b6d49a914d9003 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-06360---16000-in.json b/source/parts/detail/s/semroc-paper-ring-06360---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a08c13e57e0d68a78d5530e95a8cc2b14e140b01 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-06360---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2c3e81e8d10f54f943ac280894d468a54b027cac86c052fff193c35a975bc8 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-06400---07100-in.json b/source/parts/detail/s/semroc-paper-ring-06400---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d00ba09eb6f5f597e0af33336794e5017cff9c1 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-06400---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0139621360482aa684ec7ac55cbdc721f3ffd288d37796d0f67943ee5f3dccd6 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-06496---07087-in.json b/source/parts/detail/s/semroc-paper-ring-06496---07087-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aa03d373c6edf591106abce780b2e8eccb91c1d3 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-06496---07087-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39ff0f12083ad05ff65966da2deadaefaae8ce6242d81cd6293d678d141b9ea +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-06496---07100-in.json b/source/parts/detail/s/semroc-paper-ring-06496---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a337ff947c4ad9d05cf03359c00dcf32acd1ed2e --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-06496---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43c66866b239a4e889e4ba765fe0d9d4d05fb2df12f771c4fb64ef261a139d0 +size 491 diff --git a/source/parts/detail/s/semroc-paper-ring-06730---07150-in.json b/source/parts/detail/s/semroc-paper-ring-06730---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..202289e7e795a37f43e8fcf8e563c213c6178bf3 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-06730---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8d077119affb1976226da310e91411fbaedbb551cf9626497dcc4721923d7c +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-06800---07100-in.json b/source/parts/detail/s/semroc-paper-ring-06800---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bb2004c16a2a5d6ad7b8a69770a02a23babc0334 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-06800---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb411187ef48c2ce2219d5108aae950b02daa7b0406026c2d07387830e139e0 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07087---11500-in.json b/source/parts/detail/s/semroc-paper-ring-07087---11500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e8978fe9f51e57b9732749e281acaf4856633d6 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07087---11500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584c19f36316815d42ab6617574671893495702a21909e4ca02de60958604c3b +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-07360---09480-in.json b/source/parts/detail/s/semroc-paper-ring-07360---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64c8bb257e1a87135b61a1a1963e37a3801473f0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07360---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4a92f71fa0bfc9e09cd6546a731be6ece3d2b790c793ec1cba85f876480ec74 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-07360---09500-in.json b/source/parts/detail/s/semroc-paper-ring-07360---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08cdb81f7ddb26a21a6448c712e2e7f72a639b1a --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07360---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b08d44f48a326c5c970190cf9565999752ffcc8c38188ebefc58c860474c381 +size 454 diff --git a/source/parts/detail/s/semroc-paper-ring-07360---12800-in.json b/source/parts/detail/s/semroc-paper-ring-07360---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e8399d4eb03d9d63a61b463edcd23e6e5947bc9 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07360---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feb4773b23f5660cab216b09bc50b45eb00a40887c85520e7e6750fee3230159 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-07360---12830-in.json b/source/parts/detail/s/semroc-paper-ring-07360---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fff18b4a332903434c195fdebdb966850470d4d6 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07360---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261b3d5a473f2dc3ca38696aab7368a8a8d54a7a10a9305f10088f349dbfaf28 +size 477 diff --git a/source/parts/detail/s/semroc-paper-ring-07360---15900-in.json b/source/parts/detail/s/semroc-paper-ring-07360---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..67c33fd46051338499fd3e7576fdf2927260db7c --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07360---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec28d531d6e6eed476f55d0f8eef0c09cc2aa73dab9df31a37813249e706914 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07400---21800-in.json b/source/parts/detail/s/semroc-paper-ring-07400---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5805f643d15fe1664b2c2dc0d947a13d8f819755 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07400---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:457592f482893780593f364969a634ffa3ff6817896c691228398fc7e3521f1c +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---08650-in.json b/source/parts/detail/s/semroc-paper-ring-07590---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fca97640f6d08032d917c888ad0a3b9f02dc81ba --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c19fa019e2983b1a57afd8a9c10910435486ecf9d6b245ad39b45876a7337f +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---10000-in.json b/source/parts/detail/s/semroc-paper-ring-07590---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b26062edff2e0edf574b8937c875f604d164d10f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7179645c1284b1847d2aea9f20647dc82aa91ec357b4ee8974a51b3a138b0716 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---10400-in.json b/source/parts/detail/s/semroc-paper-ring-07590---10400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..aff66c22e3a73175a3eefea0759ff46db37f6b3a --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---10400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabd88caa5f0dda7fa25c31989a87a9bd1c5311de9b764fb907996cc4cc9cef9 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---11300-in.json b/source/parts/detail/s/semroc-paper-ring-07590---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58b58dc10f0cd2a3bc65a48224dbe1c12b51409d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2c90079275f32d5b58b03e5e0e6e7417fcb1b28b70126e054fc33482c42f489 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---13000-in.json b/source/parts/detail/s/semroc-paper-ring-07590---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..44ba83145d099eaab3ceb62782b33761d24acc69 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:771158472442142e928d1bb25919c8d07eb0d725e2eeb64af9017d3d6f060388 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---16000-in.json b/source/parts/detail/s/semroc-paper-ring-07590---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..29a53fac572f132516aab6e157451ee5add554ab --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf9327fbe4b23ad2803e17e4b904442db16e70b04b19aa6d5166bfabd28456e +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---17500-in.json b/source/parts/detail/s/semroc-paper-ring-07590---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..75e39eb7fa2ac6388eec47a88f3cf1623ced2992 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:148b5d51ec4d332ab7e86eda6ff87983d1a83ff3e39320f97d3f59aa6b5e4b14 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---18000-in.json b/source/parts/detail/s/semroc-paper-ring-07590---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..925b75cee5ef0b66eaad173147c6b94836b3600d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01cb38bb9203246e7090c26856ca59fd6cd5241cebda6038787f1be97e2367bf +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07590---20000-in.json b/source/parts/detail/s/semroc-paper-ring-07590---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..764bcf0b94ad5c2885f0425d92194d2128263c54 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07590---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a571edcdbb8e3f04f284f42cb7de5f06b514a265a6e07e42294913b22d76eebd +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07591---20000-in.json b/source/parts/detail/s/semroc-paper-ring-07591---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..906e7927b3787ab3f5c45b0ac3d45ca335d5ac6f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07591---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1bdf5e1a291e5f5cfea83a5d9bdd1c33cffce0e5fc484c0054589c7f2adccc +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07600---08000-in.json b/source/parts/detail/s/semroc-paper-ring-07600---08000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c26c32fc8b9c8a3407bc3796a1355a7e10eecba --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07600---08000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:050ef3c2487d784c2ac744a28cd779852accd341b64128f4dede5c8b1d9a45ce +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-07600---08060-in.json b/source/parts/detail/s/semroc-paper-ring-07600---08060-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f49f2c64864f4d5bc12984cbba30fa8a4a8d0bd5 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07600---08060-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0334d60b313786ec7604260f10384db34fae9b04b180187c927948cae6725556 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07600---08650-in.json b/source/parts/detail/s/semroc-paper-ring-07600---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bfeddc1602d56bcde023271912591b964e7bbc34 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07600---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d41f6e919e463b0cea9a1f529ccf2d99ab305ba2677e2616b0e4bcc98d2510 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07600---09500-in.json b/source/parts/detail/s/semroc-paper-ring-07600---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0f428c10b1e857fb000fc970db3e5275ff1f3e5d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07600---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0cfa799b7fd4654102f7b33f16b47dbbcdd6d9fca8eaf3480ae9633bee859e8 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---07150-in.json b/source/parts/detail/s/semroc-paper-ring-07610---07150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8bd566a12286990d39027bedacc9e1887c36d974 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---07150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbe15dadd52a85f65b70f760e83a6365461fb375ad0599c8a616be5eee6db393 +size 447 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---08010-in.json b/source/parts/detail/s/semroc-paper-ring-07610---08010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fd1ee1cd487534d0f53f66c325fad35eec0996a9 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---08010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e9ecc9141653feddff7f0808bf4efdfab4015166182a9ddca3ad6f341cb5d2 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---08630-in.json b/source/parts/detail/s/semroc-paper-ring-07610---08630-in.json new file mode 100644 index 0000000000000000000000000000000000000000..edcb7198adcebf1c2e28447365b2bfb605ca247e --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---08630-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f64fb44c60856715e4681dbec2fe30a5ea6d7c2bf23571362634cc35f62968 +size 455 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---09480-in.json b/source/parts/detail/s/semroc-paper-ring-07610---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4962f66da35ef7558d110259840dff61c42b8f97 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801eb864816237c2b98e6419c8e3b71db3ecdf55b327ea0264500b60f89c64fb +size 483 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---09500-in.json b/source/parts/detail/s/semroc-paper-ring-07610---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b6a1a7d863457b8b909a23826fe7b0edbf7b00d2 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d24be6e7ae7cd8d5237860715fe91dbefde2a3e549c0770b2a1b2e76cc61d7e6 +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---09980-in.json b/source/parts/detail/s/semroc-paper-ring-07610---09980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad2a8c15d2b312e91853370ef71bcd493ce9f5fd --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---09980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986abafd78fa1c408dc3b880fd88a368c615b222aa7a0f53fa46b62294660406 +size 467 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---12850-in.json b/source/parts/detail/s/semroc-paper-ring-07610---12850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4df22a6da440a56e2256bd811777aec7ceb7426a --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---12850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce127c869cc16d4f652150f75d9236feaded6cd08ffbbae52da6ae0683d438a6 +size 454 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---12980-in.json b/source/parts/detail/s/semroc-paper-ring-07610---12980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..66d3a8351d8563d6048279f3e6333ddd2eeed013 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---12980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1311a652e82d0cded52c4ab7835c2564bd58d4072f81935ba12c7109658bd126 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---13000-in.json b/source/parts/detail/s/semroc-paper-ring-07610---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5fe8b81de40075fb2e267e87476b0b3f97f52b48 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20197ca0a375813f26734d503bbf5c3e2a71453af9620e326852aaf89721ee86 +size 455 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---15400-in.json b/source/parts/detail/s/semroc-paper-ring-07610---15400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..27cfb585bdd3e580b0e865e238175972017631e5 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---15400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c984626a089ae90dc248579988947f32d5f353e1c7592732b1bbb8a1922d5ef2 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---16000-in.json b/source/parts/detail/s/semroc-paper-ring-07610---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b4576e7bf33b1e043f40cb157951f49d6f69181c --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d37b2147ddb716220800bfd71c3d627bbfefc27c0a9041b40043b17ec8b7ed4 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07610---20000-in.json b/source/parts/detail/s/semroc-paper-ring-07610---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7a2eddde7a396e4042eb8a3d32d7c2bc8731fb22 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07610---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01bfbc8ddcbbd8ac6db1d8d47a0fd8eb7b93ac31ca1204d4ead1287c41c8ad2f +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07670---21750-in.json b/source/parts/detail/s/semroc-paper-ring-07670---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2abb6807b8d63b7887341c12ed75fd5dadb46878 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07670---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd031b3637b7615a7bb8ec7694b0bd68e8cf39a0c06e1aa46bb1a22f39e2cdf0 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-07870---09440-in.json b/source/parts/detail/s/semroc-paper-ring-07870---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90188d49d8e356b84a0aeee3e6b27c9cd167e687 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-07870---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2762721add64e0620315ab40a58856b445059f70fc2b74504e28339db9dada0a +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-08200---08650-in.json b/source/parts/detail/s/semroc-paper-ring-08200---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5fa471041fac0af6755c73a6a2ef70f001504bea --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-08200---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5621dd17d5223dc0556cbb25e320ed24e6df399c22061108b4f7f2161165cecd +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-08230---08650-in.json b/source/parts/detail/s/semroc-paper-ring-08230---08650-in.json new file mode 100644 index 0000000000000000000000000000000000000000..18c5699770c6f2b17179aff1fc3a893bd09a1e0d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-08230---08650-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e29b00d2cfa680c2f48c9f4f42c76f704303bdc16259db0b0d87d8c034ad69 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-08650---08850-in.json b/source/parts/detail/s/semroc-paper-ring-08650---08850-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a0c439aa3b1670a14f499b67f48eea1c0d47c5fb --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-08650---08850-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebcd8b82bb6d94011e66c072881fbeb99d84ce8d468198263156464490298f8e +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-08650---09500-in.json b/source/parts/detail/s/semroc-paper-ring-08650---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..246e71195c0f260f2400116db15664eb7779cdbc --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-08650---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e54cd386450d073bf5f200062cf15c92519f57136487794f28283dc42ef47f +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-09000---09500-in.json b/source/parts/detail/s/semroc-paper-ring-09000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..287cf690ec2d90b4c603724836fdb95c8a2f25db --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:783160243ada7f90d7e3b07726c06ca05fe13dc9186f44c5b9568e8c446df02b +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-09080---09500-in.json b/source/parts/detail/s/semroc-paper-ring-09080---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba84cff93f7b77d377315118079bae5ed103939f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09080---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd741accbe733ac69ae3a9317b3aab04d38316f1dd0557253a5171c4768d1d49 +size 468 diff --git a/source/parts/detail/s/semroc-paper-ring-09080---13000-in.json b/source/parts/detail/s/semroc-paper-ring-09080---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fdb8377e81e21ec91df1df9c3dcec77aa7b6a679 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09080---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6310a2ce640952fb8bfa9ae043645a55cc9103a04f42ea977b938e06235fcf95 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-09080---20000-in.json b/source/parts/detail/s/semroc-paper-ring-09080---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a03f351a5fab2b89dc324777311a9bcaa1ff32cf --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09080---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5745323fac12c5d7f95336ef14011ee5d20005c17956c64d29e309f5be7c085b +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-09240---09440-in.json b/source/parts/detail/s/semroc-paper-ring-09240---09440-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3e15b95cf3095b49cad2188e6a860afcd5d873fe --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09240---09440-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbc499d3dee1f0bffc2719bde4d31b5d46e8c7f75f0385708f860f755fdd4d02 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-09580---10000-in.json b/source/parts/detail/s/semroc-paper-ring-09580---10000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f61b8e51df698d7f5cf4d22925b914ecf98eda74 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09580---10000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97dc5da46213058f86d948dc0b7ba339e0776483475872ec87e7c7fda2bc29cb +size 468 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---11400-in.json b/source/parts/detail/s/semroc-paper-ring-09760---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c0a05a2ede7da8655f7df1e181862629825b0aa --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fbf92181a815479f4a50a714f60c21ebbf2f924bb904eb90b3f5470573a1732 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---12500-in.json b/source/parts/detail/s/semroc-paper-ring-09760---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1acc386c06d53e32355bd750ed2f67f1bfea89c5 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0387caf65985aa082e6c5d8253d41eb838114a2635730d2dd1ae402b894aa4 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---12830-in.json b/source/parts/detail/s/semroc-paper-ring-09760---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f776293b46a842446a28813cf2cc6e35594aeae --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:065eaac7fe48ce19684d4ef8d564aa7ff2b3ce7d1cc62ac5a4ebf68c32519765 +size 435 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---15900-in.json b/source/parts/detail/s/semroc-paper-ring-09760---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1a95b00e1e5313e3ac2710edd9c95b8aa24c124f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7fc8d2feec0bbcc6460809fc45bfd56aa07d4fb860614287f1e9a28b3dc132c +size 448 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---15950-in.json b/source/parts/detail/s/semroc-paper-ring-09760---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5a813a1a6c4274a5e861e04bfbc061e018bb5148 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3901c08c73d82137327788207c2736cfce6f2cc328bc28ad0bc99b90bed0c0f +size 446 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---17500-in.json b/source/parts/detail/s/semroc-paper-ring-09760---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..96a174fa77244e288491c1bfcca0ed5eab44b969 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4ee6d99d744dad3a3da7fd43ea338fcfa7158b03e6a1be3922d599419a18b82 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---20000-in.json b/source/parts/detail/s/semroc-paper-ring-09760---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4462a50f8c76dcf24fbc26df3199023f2ea24194 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc842abf1d223dcf06a98150ef3ff7ad8bb9152ad4ce87370af4715dd4658e7 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---25580-in.json b/source/parts/detail/s/semroc-paper-ring-09760---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2a0cf9e557fcaeeea69e7e0850de4c81935d2cd0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad72c213e48387d1b2e3a15234b5d854d9c415e2f5304dcf63cce365426f5c54 +size 438 diff --git a/source/parts/detail/s/semroc-paper-ring-09760---25900-in.json b/source/parts/detail/s/semroc-paper-ring-09760---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cefab1e8d463ef9b67b1cc6e3c12344491648d61 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09760---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2140d5dd1e48b535f400594b4bc680321243d760957398c6d67b342bfaa14e94 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-09780---21730-in.json b/source/parts/detail/s/semroc-paper-ring-09780---21730-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0d19aec5c62eba32759860a260114f9637da53e --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09780---21730-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:621c282c58a12094f9b9fe65a322f3d11bc6be10b2a38037f28f53c99145693a +size 490 diff --git a/source/parts/detail/s/semroc-paper-ring-09800---11400-in.json b/source/parts/detail/s/semroc-paper-ring-09800---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50486f6540eda40c0533b06d2765c81b40f428e4 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09800---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de666be4107d898257aa1f449c287839a9aee27a9999085263c1dd9b39cb9fb +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-09900---15950-in.json b/source/parts/detail/s/semroc-paper-ring-09900---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1b3945759aaab04cff0760f1e2bb3faf5a955f75 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09900---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec2a5e140f4801134ac8309cb1398a81555b36e2b89df4e0b2a5fa82441ab362 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-09980---11400-in.json b/source/parts/detail/s/semroc-paper-ring-09980---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..223dad76b79fdc2ccd97cde997653f423ea96b3d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09980---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14d296bc65e723761299487c5f59effde483a8380b5d3ecb42f573e0e33b21f3 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-09980---13000-in.json b/source/parts/detail/s/semroc-paper-ring-09980---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f4128e1d2e987a9a4bdebd3df0f2b9a8299f4a7 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09980---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412e888a3313c6c9ebb2b38071d008d7f4048c10747088a62467174088f34c25 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-09980---14980-in.json b/source/parts/detail/s/semroc-paper-ring-09980---14980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..389f35956ab742ec2d5f006a2b40f9f10514bcac --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09980---14980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54cbbcd22691c13324006dbb80ea15335287018d32e654bda1b0de383bd510f0 +size 454 diff --git a/source/parts/detail/s/semroc-paper-ring-09980---16000-in.json b/source/parts/detail/s/semroc-paper-ring-09980---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e5fb2286b45eadb236ad556c953806e7cbf2b57 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09980---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6f46c0787458b1d4c3237784298ba83ac4d2afc392e344eb9c500556c6c02b +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-09980---20000-in.json b/source/parts/detail/s/semroc-paper-ring-09980---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d7545588142395cffb0e718d89e43359a8fa7976 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09980---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa49aae0a19becb6dd23892939e5fc0a74482eeef1ea26a7d807f8f70b3f1ae +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-09980---22500-in.json b/source/parts/detail/s/semroc-paper-ring-09980---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..068d59a21c9c46bd0e6778c23ba5c4e87547d585 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-09980---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6649c8c07ad2461fc5362f8a3fbe67825e28213d69a63ff8a42a85b2187ba47 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-10000---11200-in.json b/source/parts/detail/s/semroc-paper-ring-10000---11200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..032f5de00c59bb4ee885ac7e7ef3c42a7a53d9d6 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10000---11200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb958da5c49b4df9880dcff7258c91697d10361ae613a2c9a146bfecdd05a946 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-10000---11400-in.json b/source/parts/detail/s/semroc-paper-ring-10000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cef888e9c316fd7ff9f7c0e107fd3f3fe7868949 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812aad45ca31c6a0d33f62cbf4c957819be3347c6749fd320218be5f4ced7a85 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-10000---11450-in.json b/source/parts/detail/s/semroc-paper-ring-10000---11450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..86be196b0b6aef3e46b5a76364b136687a1d13b5 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10000---11450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613909fa57067504ba2f5d5f5b9b3481d5680b33d28d81997a9b462340dca96d +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-10000---12500-in.json b/source/parts/detail/s/semroc-paper-ring-10000---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fa2255c472327b41f7a0f8ce86f24cec8bae297d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10000---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:471ee807a23894a43d50e461e3f232de1888a0d37fd4fab368011537290850a1 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-10000---13000-in.json b/source/parts/detail/s/semroc-paper-ring-10000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..142a5d7160b496fc83465e06bddfb294df134733 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f6a3ac9ab7936b7496f2146ef75610fedcf5ed526f29ebb155585b2eb9c8f24 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-10000---16000-in.json b/source/parts/detail/s/semroc-paper-ring-10000---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8da45ad7bb3bc37eb95050405ced49428f65247 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10000---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0889ad91028412391fd3ebaa5fc1f037ab3b21c4d4e7b3fd46d7758cb78451a3 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-10000---19300-in.json b/source/parts/detail/s/semroc-paper-ring-10000---19300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c206b37ab65813eeffd3902542e062855bb62b23 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10000---19300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6922043334822494c093eba7fcf624e1471fa2a3bcf99edfe6c568cf7101eb0 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-10000---20000-in.json b/source/parts/detail/s/semroc-paper-ring-10000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a368572f8ba3d2f1f8a949c77d055f9c4fdc524a --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560b97b99dde1246e779a3774190678f77da5a5bd6d9f3fc6dd271a0c19fc74c +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-10400---13000-in.json b/source/parts/detail/s/semroc-paper-ring-10400---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..788ba08acaba2633189747b32932008d0b73e7d5 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10400---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad22e045de9f8050464e4633996fb24e1408ecec431ad92f4bd3893518541d8 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-10400---14980-in.json b/source/parts/detail/s/semroc-paper-ring-10400---14980-in.json new file mode 100644 index 0000000000000000000000000000000000000000..80d0829217a395e3d058e40b4e1b97f98065a75c --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10400---14980-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0aabef4c6d3cae04bdfbb0205bdc809a57a7d8b73839255f398bd4b3c01d3584 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-10400---16000-in.json b/source/parts/detail/s/semroc-paper-ring-10400---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..96e32d9d0eb66d89d97e4be0193508ff4971d031 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10400---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dcb9e8d8d8c93b17512aa1ca68af7095a4cacf912e7b810be819d83e9f1b92a +size 457 diff --git a/source/parts/detail/s/semroc-paper-ring-10400---16400-in.json b/source/parts/detail/s/semroc-paper-ring-10400---16400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1cd1ff64ca293cde6737fa907e337d213ca4fb98 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10400---16400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee6c6acd74104bc4f8abc4d35256e9b2d413eef1e5ad62052c61de707c549e5f +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-10400---20000-in.json b/source/parts/detail/s/semroc-paper-ring-10400---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..baab4c38bc62d2ff88d854b4cc69f46ab22d99f0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10400---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff509aef97c2e8e89612efb0200959fc0d45a8f6b8b64062e0f78b6cc9e0999 +size 452 diff --git a/source/parts/detail/s/semroc-paper-ring-10400---21750-in.json b/source/parts/detail/s/semroc-paper-ring-10400---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..582af8de3ad726d750c41ee1c9670d40e4f4213c --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10400---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10520b8ba656864f91c3a723b5d363f2322f3ea05e04839209b2b3f55a1eb4e2 +size 458 diff --git a/source/parts/detail/s/semroc-paper-ring-10880---11300-in.json b/source/parts/detail/s/semroc-paper-ring-10880---11300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ee84079006757fba465c38e5635c7281e5e69e90 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-10880---11300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ce4f4b58678b33bd5024e352a7faba3455961c7c4c282b0c3c740733ff5fad +size 463 diff --git a/source/parts/detail/s/semroc-paper-ring-11700---11950-in.json b/source/parts/detail/s/semroc-paper-ring-11700---11950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08c1e0a32048f92116f0ea07c2b40707e0ee97bf --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-11700---11950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:967a24f2fc44a4c16dfa74b0e3e4ba3a9859b09e9659bd4e4c1a4d4fddf45d98 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-11950---12500-in.json b/source/parts/detail/s/semroc-paper-ring-11950---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ca96a02add0fd61fbfb1e468c29244f76d268676 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-11950---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22ef4892f4a3976adea50140c171eaeb49a5e9b30ac9e62371a6e262cf94dd4 +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-12200---15950-in.json b/source/parts/detail/s/semroc-paper-ring-12200---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3594351192747908fc64d70db3c48141a1febfa8 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12200---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a646fc58d77d87920b4ef6b77d372e377978e507e20da68daeb920d203c99b +size 454 diff --git a/source/parts/detail/s/semroc-paper-ring-12410---12830-in.json b/source/parts/detail/s/semroc-paper-ring-12410---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b80f61c809de86b886e0014c5a832f372b52d95e --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12410---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c80636c6a8a4e5924e2da17a3f5b8da81a4713ed5615aee54426500c69d96d4 +size 468 diff --git a/source/parts/detail/s/semroc-paper-ring-12480---13000-in.json b/source/parts/detail/s/semroc-paper-ring-12480---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d16217f75359252e7118c7711cb1d51019c5e98c --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12480---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:303a9cc6d95336307e07df2144790859f85a21bba1475528bb6581225be69e56 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-12500---13000-in.json b/source/parts/detail/s/semroc-paper-ring-12500---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4d0962ce1d1feebbdb41f441f91f1dc709ff12d7 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12500---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16410aa638b8bc0470f13f299f54b73fe3e7252c72778ef691fab6c383bfb8f8 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-12598---16000-in.json b/source/parts/detail/s/semroc-paper-ring-12598---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82b7c817a5f08c26504832f3c7189b49587841e1 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12598---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed099aa3a5f1730f3e073b2dbdd4770388f93c15ad13f78d0403cb0a9c39f793 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-12600---13000-in.json b/source/parts/detail/s/semroc-paper-ring-12600---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f5ca3066e774b5c354284b69414fc6466bcd22d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12600---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f84894d5e5f519d7cc8eccc2161954e481e0695d5f01059b7a7fb5fc86849f +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-12600---15900-in.json b/source/parts/detail/s/semroc-paper-ring-12600---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2d6d649a0e8d03c897c376451f63499c270b5d47 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12600---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae46fe5b38f0872d67d95d40e2e85e2455314600b392805be4f317812f496495 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-12600---16000-in.json b/source/parts/detail/s/semroc-paper-ring-12600---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cc2f38305cadc89318afb9e06d6b149ce1f535cc --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12600---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96cf6e19c932b3c07b9ece839e4eb2762c4852c2b5f673f9446b7204c80d9b4b +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-12960---13000-in.json b/source/parts/detail/s/semroc-paper-ring-12960---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f7533aeb45b788b63a41a280e265157c3600833 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-12960---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938a4e1b3ca09da831a1fe40524fbe1469b7002078d7e662acead17924d1bc30 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-13200---13400-in.json b/source/parts/detail/s/semroc-paper-ring-13200---13400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d652a2358b627b1b704ff6fd785feba4f1f648a8 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-13200---13400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b22deb9e13d2f5f7e02159298dd7ef67cdcfc07eeed1cdf9884dbe5c808ac88 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-13300---14800-in.json b/source/parts/detail/s/semroc-paper-ring-13300---14800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8d3dfc77d674a1584957b7edbb3bd79dc74aaead --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-13300---14800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66082434d57e959526826685d4f29ea701ab74c286a59477f3bb646a27d41f35 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-13400---16000-in.json b/source/parts/detail/s/semroc-paper-ring-13400---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2395caf0ad049d541a15f587713912e09cfd087f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-13400---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3263adbc2554a8b3983d6adcd3dc13f51989056de65f870d38f0f20d54b229d +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-13400---17500-in.json b/source/parts/detail/s/semroc-paper-ring-13400---17500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..26882d8df61eb134fe57073072af41fc5ddbede9 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-13400---17500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:619e33da31a8259ebd4ccb50e6d6fd199158bee988d6f038d9a3dcd691d5acae +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-13400---22500-in.json b/source/parts/detail/s/semroc-paper-ring-13400---22500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..389b9dd9bda11d41181215a88ec0535e31af1ee0 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-13400---22500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba8069353b23b86dc636b09d19c414efded5de13a625379eb54b4aeae96fac5c +size 416 diff --git a/source/parts/detail/s/semroc-paper-ring-13400---37500-in.json b/source/parts/detail/s/semroc-paper-ring-13400---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..34821f3a852501561225de2d1d600c54a5a67ccf --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-13400---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cde9e15c9aeb85ee7e0e92b40be7f5b5e23740d59cbefca71324b57c9aa46dd +size 429 diff --git a/source/parts/detail/s/semroc-paper-ring-13400---38960-in.json b/source/parts/detail/s/semroc-paper-ring-13400---38960-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d14e7ed82256807261925bb54e7453070c2d8782 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-13400---38960-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af55a887e49adcc665a8406b1d1e8827cac8322174147a7f28baf7a2584ed515 +size 429 diff --git a/source/parts/detail/s/semroc-paper-ring-14500---15000-in.json b/source/parts/detail/s/semroc-paper-ring-14500---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..98a972cc236e3121709ed7ed4e8d501265c09697 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-14500---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0c7502749063102b489cc5f4ed054c2c9046702d62fcc841c7554eb906b870 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-15500---16000-in.json b/source/parts/detail/s/semroc-paper-ring-15500---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad71c1c7c7fa0f33bffc8481d06c1a479200a6d8 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-15500---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5389033050e08c962b7a0dd1dc083c7d03c17d7ede7e58c4c777a54be7cf251f +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-15580---16000-in.json b/source/parts/detail/s/semroc-paper-ring-15580---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5d805fb23d86f6316edd39bb5f579fd69260a491 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-15580---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2da9b7e3c7359c237a6f9808066d27b3b71dabf587b64bdd339496587cfe940b +size 463 diff --git a/source/parts/detail/s/semroc-paper-ring-15600---16000-in.json b/source/parts/detail/s/semroc-paper-ring-15600---16000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f3eca09f587e28d6b47dd372dafa8e910d1bfe62 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-15600---16000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc576fbe4a18b78b2061e6015c7ad4ea4e978319a3974a43586c46d6f66773fd +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-17600---18000-in.json b/source/parts/detail/s/semroc-paper-ring-17600---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..17db84268e5b7df318ec04392c9bf212ba88208f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-17600---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ff8bd5a19d1ea3c11cb934c61592674b21f04d83311cbf460842449efdb45a +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-19500---20000-in.json b/source/parts/detail/s/semroc-paper-ring-19500---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e7410426dbc2fb924be6fbd2980ed8c60221cfac --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-19500---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a6e65f7a97b76d8b6e6509c1127773bd1b540364a8cbd68beb28dbc422cc456 +size 450 diff --git a/source/parts/detail/s/semroc-paper-ring-21750---38460-in.json b/source/parts/detail/s/semroc-paper-ring-21750---38460-in.json new file mode 100644 index 0000000000000000000000000000000000000000..90373dc9dbe6ba23da4c0f5e0d88bf043925c71e --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-21750---38460-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f589a6ac5af4e2e7bc04fd1a63199b3d46005ebdef41eb613d90788062225b0e +size 429 diff --git a/source/parts/detail/s/semroc-paper-ring-21750---38750-in.json b/source/parts/detail/s/semroc-paper-ring-21750---38750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..20bf3538868c98b988e58af986acb1efc3177a1f --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-21750---38750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:532653e81dfa61b424c2a2aef94bc59ed833509d69ee39f7853821f0cb11a32b +size 429 diff --git a/source/parts/detail/s/semroc-paper-ring-25140---25560-in.json b/source/parts/detail/s/semroc-paper-ring-25140---25560-in.json new file mode 100644 index 0000000000000000000000000000000000000000..91b5d1f048f37a9cacfd6833292a8c09b78e019b --- /dev/null +++ b/source/parts/detail/s/semroc-paper-ring-25140---25560-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a30ce787ad7e107ed920f42bd57b0da673fbd59f9d572073a2c0268ee96eddfe +size 449 diff --git a/source/parts/detail/s/semroc-paper-streamer-00010-in.json b/source/parts/detail/s/semroc-paper-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..40a24acf6e2b08117c68aae99b956459105482f1 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:831279827e9c82b400fe2ee67481ab5fe03a00e43ab46a7b600037f5e0973a64 +size 397 diff --git a/source/parts/detail/s/semroc-paper-streamer-00020-in.json b/source/parts/detail/s/semroc-paper-streamer-00020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b1cae3e573ddb690275eecb2e5703d3f2bedca9 --- /dev/null +++ b/source/parts/detail/s/semroc-paper-streamer-00020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:228e8ab533ca4953f9e08556a6d4dbd4170367e8c6717a0e04467263c20d6a03 +size 402 diff --git a/source/parts/detail/s/semroc-paper-streamer-00030-in.json b/source/parts/detail/s/semroc-paper-streamer-00030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e2aebc64b8af87d5e0d610e35c9cbb10511716d --- /dev/null +++ b/source/parts/detail/s/semroc-paper-streamer-00030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfbc74f485ae2085dc7c06cbe04d414e589ab2062450f29a7a9307eaa19143a +size 397 diff --git a/source/parts/detail/s/semroc-parabolic-transition.json b/source/parts/detail/s/semroc-parabolic-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..3e769c6dfcf665f423032890ccbfaefdf2a4dde4 --- /dev/null +++ b/source/parts/detail/s/semroc-parabolic-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fc491c3b651387169b1338f731d5708a62e1b5ec7c6be251851bf07227ae276 +size 586 diff --git a/source/parts/detail/s/semroc-parabolicseries-transition.json b/source/parts/detail/s/semroc-parabolicseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..e62dd5e0fcd2d62f4ea36b66416018154ad406a3 --- /dev/null +++ b/source/parts/detail/s/semroc-parabolicseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88de78693ab422fce84b1466313962c219cc0c5aaef284df1e97410a9cf496df +size 607 diff --git a/source/parts/detail/s/semroc-pb-75-plywood-block.json b/source/parts/detail/s/semroc-pb-75-plywood-block.json new file mode 100644 index 0000000000000000000000000000000000000000..56f5a3ca0e3073addab6895ba55b1171acc4dbaa --- /dev/null +++ b/source/parts/detail/s/semroc-pb-75-plywood-block.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed5d4ad686558af8f1c3a1bea4f36bf14c385f48634c3eb0e5feeebdbbc7fd5b +size 373 diff --git a/source/parts/detail/s/semroc-polyethylene-ldpe-streamer-00010-in.json b/source/parts/detail/s/semroc-polyethylene-ldpe-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1e5d4156cb8255129e3fc360bbaf17036482d441 --- /dev/null +++ b/source/parts/detail/s/semroc-polyethylene-ldpe-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da55d4073339f1ea43a89aba46538045161de4de84a06c2745336b9eb9af9e2d +size 418 diff --git a/source/parts/detail/s/semroc-polyethylene-ldpe-streamer-00030-in.json b/source/parts/detail/s/semroc-polyethylene-ldpe-streamer-00030-in.json new file mode 100644 index 0000000000000000000000000000000000000000..624f107fa116c3b5525df7ed02f4e7c8f4021500 --- /dev/null +++ b/source/parts/detail/s/semroc-polyethylene-ldpe-streamer-00030-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c0f880944e5737ff936f3206bf4f20f4a3f39a763777bacb76c73247a271ef6 +size 418 diff --git a/source/parts/detail/s/semroc-polystyrene-ps-ring-01850---02550-in.json b/source/parts/detail/s/semroc-polystyrene-ps-ring-01850---02550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..490baa2ecfd6afbc43ecf1195aefc6ea8f1e669f --- /dev/null +++ b/source/parts/detail/s/semroc-polystyrene-ps-ring-01850---02550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6ab4eccc7108a30151e4489968fb94e23ed31c503bdf52458c932dabfa37c0 +size 443 diff --git a/source/parts/detail/s/semroc-posterboard-ring-36700---37000-in.json b/source/parts/detail/s/semroc-posterboard-ring-36700---37000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ce26af30eb40adacba1185cf878153765c00d8a0 --- /dev/null +++ b/source/parts/detail/s/semroc-posterboard-ring-36700---37000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89adfa82ee803403b9624e21506271754102fca9e546216d9b6a68919bac6ef2 +size 468 diff --git a/source/parts/detail/s/semroc-powerseries-transition.json b/source/parts/detail/s/semroc-powerseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..49d870244df6365cf6eeed205522c315808d1803 --- /dev/null +++ b/source/parts/detail/s/semroc-powerseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eed8dcf3b65bda4ddb1424cbb2772647465e062699fda8b3823590cff1f20f59 +size 596 diff --git a/source/parts/detail/s/semroc-sck-18-kevlar-thread-100-18l.json b/source/parts/detail/s/semroc-sck-18-kevlar-thread-100-18l.json new file mode 100644 index 0000000000000000000000000000000000000000..0b87ea1bba7714b770b54d9f5e8d7e23c6001c9e --- /dev/null +++ b/source/parts/detail/s/semroc-sck-18-kevlar-thread-100-18l.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c17daf002f7080fe3607dffd76c32116835321eb72cc6645e65647117a5c9aa +size 415 diff --git a/source/parts/detail/s/semroc-sck-18-kevlar-thread.json b/source/parts/detail/s/semroc-sck-18-kevlar-thread.json new file mode 100644 index 0000000000000000000000000000000000000000..398d3a4e96bbe696e0df09d6faad7714c08c9646 --- /dev/null +++ b/source/parts/detail/s/semroc-sck-18-kevlar-thread.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1053f52284259fe4e09f85b9ca8c5342832a2d89a1127c546ffa92940cf7aff +size 377 diff --git a/source/parts/detail/s/semroc-sck-24-kevlar-thread-100-24.json b/source/parts/detail/s/semroc-sck-24-kevlar-thread-100-24.json new file mode 100644 index 0000000000000000000000000000000000000000..87a6f12fb03481feab82750c04ead6be808a7aea --- /dev/null +++ b/source/parts/detail/s/semroc-sck-24-kevlar-thread-100-24.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b63f9aed0e507f264406820690d86dec9901eca6b443efafcd1d84af321b8595 +size 411 diff --git a/source/parts/detail/s/semroc-sck-24-kevlar-thread.json b/source/parts/detail/s/semroc-sck-24-kevlar-thread.json new file mode 100644 index 0000000000000000000000000000000000000000..9f8952926e93b1a04b57d79ed9a055703b0b828e --- /dev/null +++ b/source/parts/detail/s/semroc-sck-24-kevlar-thread.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abf2e29b42e9ddf45d30b774a7f31ae3003eff5fd3b5942f6b8a42529703662 +size 377 diff --git a/source/parts/detail/s/semroc-sck-30-kevlar-thread-100-30.json b/source/parts/detail/s/semroc-sck-30-kevlar-thread-100-30.json new file mode 100644 index 0000000000000000000000000000000000000000..de425651d44a4f273359cdac0ce47d9013c62a19 --- /dev/null +++ b/source/parts/detail/s/semroc-sck-30-kevlar-thread-100-30.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe594d8f29350dbcfe1297af4a954572f445bbf958c9ea53179e60311c1126f3 +size 411 diff --git a/source/parts/detail/s/semroc-sck-9-kevlar-shock-line.json b/source/parts/detail/s/semroc-sck-9-kevlar-shock-line.json new file mode 100644 index 0000000000000000000000000000000000000000..34db0d4bc4e7710a6e6a244b056079a471d87ee2 --- /dev/null +++ b/source/parts/detail/s/semroc-sck-9-kevlar-shock-line.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3d237620ee741c365af89db6ed20e0a0878423b439e311f757279ac15fa414 +size 389 diff --git a/source/parts/detail/s/semroc-se-1--se-10-screw-eye-1in-1-inx25-in.json b/source/parts/detail/s/semroc-se-1--se-10-screw-eye-1in-1-inx25-in.json new file mode 100644 index 0000000000000000000000000000000000000000..298af75456f6bba7006f371859c2475566e170ba --- /dev/null +++ b/source/parts/detail/s/semroc-se-1--se-10-screw-eye-1in-1-inx25-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb025f54114c5a81cdb4b88c9e577602f1b4c036da85b3eeac977e6a830fda49 +size 453 diff --git a/source/parts/detail/s/semroc-se-1-screw-eye.json b/source/parts/detail/s/semroc-se-1-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..4eff4474a8b0d4aa2884270bab469f82a6046189 --- /dev/null +++ b/source/parts/detail/s/semroc-se-1-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bfb04bd825d80dc9434ae0599ed4c807369f43a2b9250dda123e5265751bb74 +size 353 diff --git a/source/parts/detail/s/semroc-se-10-screw-eye-1.json b/source/parts/detail/s/semroc-se-10-screw-eye-1.json new file mode 100644 index 0000000000000000000000000000000000000000..654a661c5f947483af061be288ca66a0e5be98f9 --- /dev/null +++ b/source/parts/detail/s/semroc-se-10-screw-eye-1.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb9636cddf8556091fb8befb9b5f746cf5b2f58f67e22ebe4bc1720c1bd38b01 +size 369 diff --git a/source/parts/detail/s/semroc-se-10-screw-eye-large.json b/source/parts/detail/s/semroc-se-10-screw-eye-large.json new file mode 100644 index 0000000000000000000000000000000000000000..0aa5f7196833c46b7b5a7afd007b44b92ea6853a --- /dev/null +++ b/source/parts/detail/s/semroc-se-10-screw-eye-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4151e7c82cf27d11b6034131c146f75680e0080fa85a662a5be01fe3703877c +size 381 diff --git a/source/parts/detail/s/semroc-se-10-screw-eye.json b/source/parts/detail/s/semroc-se-10-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..e0d1a173a56a9e95091eae45bdba0c371ee9167f --- /dev/null +++ b/source/parts/detail/s/semroc-se-10-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11ed0baa7aef72abb96b3255e357e84ac84039e3c5d878f4a50675afd69f8ff7 +size 405 diff --git a/source/parts/detail/s/semroc-se-12-screw-eye-125in--1125-inx28-in.json b/source/parts/detail/s/semroc-se-12-screw-eye-125in--1125-inx28-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8bf40925f8311a87c306dd9298499eb69001061e --- /dev/null +++ b/source/parts/detail/s/semroc-se-12-screw-eye-125in--1125-inx28-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a158120a720bedb60815f28734f1491fb2b068d06d42494fd0602ef8f5f52ef +size 345 diff --git a/source/parts/detail/s/semroc-se-12-screw-eye-large.json b/source/parts/detail/s/semroc-se-12-screw-eye-large.json new file mode 100644 index 0000000000000000000000000000000000000000..8eeac8ed1e08e07581e111f258d8344881fa006b --- /dev/null +++ b/source/parts/detail/s/semroc-se-12-screw-eye-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbee34a1b2e706f18bd34fa8bdfb57a963dfa0ba247fdf5fcba25779f82df965 +size 381 diff --git a/source/parts/detail/s/semroc-se-12-screw-eye.json b/source/parts/detail/s/semroc-se-12-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..353d6c3deae3f41d112c8d397a8cfb470783d835 --- /dev/null +++ b/source/parts/detail/s/semroc-se-12-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:025bfcc72c0ba62480af2f70c5d9d42cd95cbb64a095febca8f789c14fc663bc +size 357 diff --git a/source/parts/detail/s/semroc-se-14-screw-eye-1375in--1375-inx23-in.json b/source/parts/detail/s/semroc-se-14-screw-eye-1375in--1375-inx23-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6cc6dcd3443b4eac34e619697c58cc266f84fd80 --- /dev/null +++ b/source/parts/detail/s/semroc-se-14-screw-eye-1375in--1375-inx23-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b778a60c60433f60bbb339d3ad1223b200f78da889a05ce943eb2100e51f781 +size 459 diff --git a/source/parts/detail/s/semroc-se-14-screw-eye-extra-large.json b/source/parts/detail/s/semroc-se-14-screw-eye-extra-large.json new file mode 100644 index 0000000000000000000000000000000000000000..ba63868c6bc76b9affc2651c264b62d96943d37b --- /dev/null +++ b/source/parts/detail/s/semroc-se-14-screw-eye-extra-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c22fd1dd405d4bfb0d592a2d3df7cba7b8c9a920cbfcfcda70635585dd6b90e0 +size 405 diff --git a/source/parts/detail/s/semroc-se-14-screw-eye-large.json b/source/parts/detail/s/semroc-se-14-screw-eye-large.json new file mode 100644 index 0000000000000000000000000000000000000000..def5095b38cb6fc89453b9886f1fefcd6fae385c --- /dev/null +++ b/source/parts/detail/s/semroc-se-14-screw-eye-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af2a08aa6931da9a2ee4050f857c0d856155aca719d326f85c6b252af766c66 +size 406 diff --git a/source/parts/detail/s/semroc-se-14-screw-eye.json b/source/parts/detail/s/semroc-se-14-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..4389cf88fac81ba4b8715bf0af6d8b5b5ab795ec --- /dev/null +++ b/source/parts/detail/s/semroc-se-14-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e656a125ab4cb804c50e0ff145f81d670835d2df5e0582fce4ba981e1cf1c27a +size 357 diff --git a/source/parts/detail/s/semroc-se-2-screw-eye-34.json b/source/parts/detail/s/semroc-se-2-screw-eye-34.json new file mode 100644 index 0000000000000000000000000000000000000000..ddaf07bd164243c3e3c2cb38fe773936be2a8b86 --- /dev/null +++ b/source/parts/detail/s/semroc-se-2-screw-eye-34.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2604dc0733c42f5d657f0b194a29a5bd704097501afc7ef0895e6cc4ef35ecfb +size 371 diff --git a/source/parts/detail/s/semroc-se-2-screw-eye-34in-34inx14-in.json b/source/parts/detail/s/semroc-se-2-screw-eye-34in-34inx14-in.json new file mode 100644 index 0000000000000000000000000000000000000000..968aaa198def0b0cbd4642c00147726723702ba4 --- /dev/null +++ b/source/parts/detail/s/semroc-se-2-screw-eye-34in-34inx14-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:821b1b5457a40417df2f5b961d53a25db9e47d7ac280128deb54df9b536cfc4a +size 431 diff --git a/source/parts/detail/s/semroc-se-2-screw-eye.json b/source/parts/detail/s/semroc-se-2-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..733434ed9d2fce3f159514e4a904c1d230f98ecb --- /dev/null +++ b/source/parts/detail/s/semroc-se-2-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95aa62c6c2e9c73772da9c872ee0499802af982ee854746907dff43efc1be34e +size 353 diff --git a/source/parts/detail/s/semroc-se-3-screw-eye-38in-38inx18in.json b/source/parts/detail/s/semroc-se-3-screw-eye-38in-38inx18in.json new file mode 100644 index 0000000000000000000000000000000000000000..b5acdc8195998d4a3d3f626dd53a17bd16c70771 --- /dev/null +++ b/source/parts/detail/s/semroc-se-3-screw-eye-38in-38inx18in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e742af47512f29ebf684bfb32e9905bfecce9cbf042343f1cd60368dd3f5b09 +size 413 diff --git a/source/parts/detail/s/semroc-shock-cord-ec-118-elastick-cord.json b/source/parts/detail/s/semroc-shock-cord-ec-118-elastick-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..1c952be929921da8cd800b7ab9675ca4e77d018f --- /dev/null +++ b/source/parts/detail/s/semroc-shock-cord-ec-118-elastick-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2219073a07f7562156e37c736e8acded7781e86615f3aeece41d3f0e44780a22 +size 421 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-05750---09500-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-05750---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5827214c6f9f078d304ecac33fb3ee557ca29e25 --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-05750---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26578dada3520c0a8d541aacfb892882bf25341d0fea1d724b10d0a9ddc60d44 +size 474 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-07600---09450-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-07600---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82d73dffb39660ec03a7f1216d708dfeae92e3db --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-07600---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d689f7fe2302aeb2c259a76c7ae1de26b57af927cef249ea7d87dd11b9bc5081 +size 476 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-07610---08010-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-07610---08010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ed3e40a821e67e8ccedadff2a6db8fd3723d08d4 --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-07610---08010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d70c22538b6a59de26c9240d92404c7ce723a5ce3be61cf4cef37cfce29b9c +size 478 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-08650---09480-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-08650---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fe973a3cac31e4bd9a5a9b051ce5b1cf5bbf8452 --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-08650---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e917e757239841954bffe043963ebb82ecf66e46f93ed2bb4c0e7df7acd6ffe +size 434 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-08650---09500-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-08650---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f42a1ef37e57a654c5054708e4b00768e85c6e94 --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-08650---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06bd7fc1e535378416c45777f22923d6dba9597b62be791610348459a7127c76 +size 474 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-09000---09500-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-09000---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7f6a3fb08516190e6feba7a8b33b474fa2b42fd1 --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-09000---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c093f1d1a2735107f155bf77d6f549f100aee4428ca3fd2a4b20f3d3769eaf +size 474 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-10000---11400-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-10000---11400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5cb69e90e709bcefdf11ec32523a5ca7143f8c53 --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-10000---11400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:799ef12259d8478a0edc6c39253b200a991e15acd36a1b93d93ed7d5b0a3f6f2 +size 478 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-10000---11417-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-10000---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28c591cc1814b7a2005ae914a05631e0490a549e --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-10000---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d890225d922dbe09ed34210b1e5dd1a9bba6e6a5468fe2d3f268d0c386a5f11a +size 478 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-10000---12500-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-10000---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8c74db346b3d4bb7eb7f42206333ef1338cc865e --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-10000---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3182636ae0a7ffbd3bb762f01faa1912779ea0628e427c41095fdac9c6b52bfb +size 478 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-10000---13000-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-10000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f286b4ae30729bb8fdae854458f055d491a6654 --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-10000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e47dfee871bb9fd990b1feb03a0e7ad9961fc1687c086ac26f4878283d54a841 +size 478 diff --git a/source/parts/detail/s/semroc-spiralglassine-ring-21750---22470-in.json b/source/parts/detail/s/semroc-spiralglassine-ring-21750---22470-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f2000843bd467eb9a4057146d557e3209f97ae8 --- /dev/null +++ b/source/parts/detail/s/semroc-spiralglassine-ring-21750---22470-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd9f56204bc8b8a02c8b00db4d9909f579c089c0c92aba0063fd36963a2dca12 +size 478 diff --git a/source/parts/detail/s/semroc-wc-5-weight-clay.json b/source/parts/detail/s/semroc-wc-5-weight-clay.json new file mode 100644 index 0000000000000000000000000000000000000000..794800729342c0492660a371c7d83658252a33c7 --- /dev/null +++ b/source/parts/detail/s/semroc-wc-5-weight-clay.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a80eef08bd52ae88a3e9cb147d10d68f4d57d109f7c7bf19cdef7213edbcf3 +size 361 diff --git a/source/parts/detail/s/semroc-wl-7-washer-weight-7.json b/source/parts/detail/s/semroc-wl-7-washer-weight-7.json new file mode 100644 index 0000000000000000000000000000000000000000..77069f50ed3c0085ca87530fc1dd026d0a10e57b --- /dev/null +++ b/source/parts/detail/s/semroc-wl-7-washer-weight-7.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e51bbe25ee0e4f5f55a2a1b870ffec60c81ff729ebb34ab364b163fb07dcad +size 379 diff --git a/source/parts/detail/s/semroc-ww-7-nose-weight.json b/source/parts/detail/s/semroc-ww-7-nose-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..2309909a76e7bfdf0577c23398cf634d63212ca1 --- /dev/null +++ b/source/parts/detail/s/semroc-ww-7-nose-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:931c9385212447d3cee5bdd5cd65b27a65edc4a2e09b1a09ecde3038162d32fb +size 361 diff --git a/source/parts/detail/s/semroc-ww-7a-washer-wieght-7.json b/source/parts/detail/s/semroc-ww-7a-washer-wieght-7.json new file mode 100644 index 0000000000000000000000000000000000000000..2dd3ae4565d8d5de614d7652b2815e665fad39f7 --- /dev/null +++ b/source/parts/detail/s/semroc-ww-7a-washer-wieght-7.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4c612205b503f70036400f3ff8f646a4b95c8a403a586f1fbabe91e164f520 +size 383 diff --git a/source/parts/detail/s/semroc-ww-7a.json b/source/parts/detail/s/semroc-ww-7a.json new file mode 100644 index 0000000000000000000000000000000000000000..90a7ec344bc30bfbb82732632b9b8d5b53aae339 --- /dev/null +++ b/source/parts/detail/s/semroc-ww-7a.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15f45d8a299eae10d134cce6cdc9fdd3319026efae40927f357094b9b47c4973 +size 297 diff --git a/source/parts/detail/s/semroc-ww-8-washer-weight.json b/source/parts/detail/s/semroc-ww-8-washer-weight.json new file mode 100644 index 0000000000000000000000000000000000000000..3ebed468d36b6d3b066e9108d65d4ff1919cf580 --- /dev/null +++ b/source/parts/detail/s/semroc-ww-8-washer-weight.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6815a792661bfe8c5a606cbc16a73210fb4fa5301975b1c9a85455d4975b7f +size 369 diff --git a/source/parts/detail/s/semroc-ww-8-washer-wieght-8-38-hole.json b/source/parts/detail/s/semroc-ww-8-washer-wieght-8-38-hole.json new file mode 100644 index 0000000000000000000000000000000000000000..bf56d9af8f9cad1e395a3bd5cc32300831e4ca93 --- /dev/null +++ b/source/parts/detail/s/semroc-ww-8-washer-wieght-8-38-hole.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cfdd981f0fde7fb66ea5170268542265b0c9ea7a072e21d2028b5780ea78a2e +size 421 diff --git a/source/parts/detail/s/semroc-ww-8-weight-washer-for-8.json b/source/parts/detail/s/semroc-ww-8-weight-washer-for-8.json new file mode 100644 index 0000000000000000000000000000000000000000..b04808dbc486ab0830a871d3d1783c5686ad5a14 --- /dev/null +++ b/source/parts/detail/s/semroc-ww-8-weight-washer-for-8.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa991a8778ed538d727b053c677961d12f4b68f47766a0472e96a424355be6e3 +size 395 diff --git a/source/parts/detail/s/semroc.json b/source/parts/detail/s/semroc.json new file mode 100644 index 0000000000000000000000000000000000000000..136bc252a26cbca5c12053111f3a5ebcd4062ae0 --- /dev/null +++ b/source/parts/detail/s/semroc.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baed46d92bf7a49c183df4f46844d602d6e1c0663a3afa990d09bec99c1afef +size 258 diff --git a/source/parts/detail/s/shadow-40mm-ct.json b/source/parts/detail/s/shadow-40mm-ct.json new file mode 100644 index 0000000000000000000000000000000000000000..b0c9844b76b5819ea0d42b7d244793ad556ff514 --- /dev/null +++ b/source/parts/detail/s/shadow-40mm-ct.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56b6e71adf13dacd01ccd351ead3bb6f0e9e4a86c383988b2652a20b06d4057b +size 325 diff --git a/source/parts/detail/s/simpkins-314159b-lead-bbs.json b/source/parts/detail/s/simpkins-314159b-lead-bbs.json new file mode 100644 index 0000000000000000000000000000000000000000..1ef29e0e9c3f19dff1b0fef43de7853a77331019 --- /dev/null +++ b/source/parts/detail/s/simpkins-314159b-lead-bbs.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ead4d18ad1a75e4e5ed951b18443adb4521fe235f06f92b0f0ccba3b0fbff1 +size 371 diff --git a/source/parts/detail/s/siriius-rocketry-cardboard-ring-09800---12800-in.json b/source/parts/detail/s/siriius-rocketry-cardboard-ring-09800---12800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..eac80ae8d8a3dabda924fcbd89e017b6fb071e11 --- /dev/null +++ b/source/parts/detail/s/siriius-rocketry-cardboard-ring-09800---12800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317445788a63adba33b9177ae84aea47dac04c2e66c662a23e90b0ee2b487953 +size 468 diff --git a/source/parts/detail/s/sirius-rocketry-paper-ring-07610---09480-in.json b/source/parts/detail/s/sirius-rocketry-paper-ring-07610---09480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d2173c1e149492f237e7653812b4d62147dad1d0 --- /dev/null +++ b/source/parts/detail/s/sirius-rocketry-paper-ring-07610---09480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92a1275bf7a18619a468bd1d4df34483be7479b83435a38a13849ff7649922d4 +size 482 diff --git a/source/parts/detail/s/sirius-rocketry-powerseries-transition.json b/source/parts/detail/s/sirius-rocketry-powerseries-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..7d81cb82c9ba35f74305b21dec4512fa8e6b7266 --- /dev/null +++ b/source/parts/detail/s/sirius-rocketry-powerseries-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae3e024bba4ab5f710516d2a603b0041cc24a47e266a2b739c5038c21932ffb +size 627 diff --git a/source/parts/detail/s/smokin-rockets-aircraft-plywood-birch-ring-40240---60000-in.json b/source/parts/detail/s/smokin-rockets-aircraft-plywood-birch-ring-40240---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e73200779d5c9048f923c28ed69d8dee9203ef58 --- /dev/null +++ b/source/parts/detail/s/smokin-rockets-aircraft-plywood-birch-ring-40240---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9c59aab495bf8505a37f7bda70402b714193748794a068338accc64bc804af +size 503 diff --git a/source/parts/detail/s/squirrel-works-aircraft-plywood-birch-ring-07159---20000-in.json b/source/parts/detail/s/squirrel-works-aircraft-plywood-birch-ring-07159---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..619926329bd81d0589e546e20e61a98e6ab36d9f --- /dev/null +++ b/source/parts/detail/s/squirrel-works-aircraft-plywood-birch-ring-07159---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c059a3e3842b2969773bd6c221c459fc51e74cd51e925acb492ef8785bee1fad +size 501 diff --git a/source/parts/detail/s/squirrel-works-cardboard-ring-10000---13000-in.json b/source/parts/detail/s/squirrel-works-cardboard-ring-10000---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2dc10f0973bf953204423e00aa04d5b2d5a7e364 --- /dev/null +++ b/source/parts/detail/s/squirrel-works-cardboard-ring-10000---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b58f631f9c29c8c1e413cbca8a0dbcb71fab9be237712297e103b75c31f1c550 +size 460 diff --git a/source/parts/detail/s/squirrel-works-mylar-streamer-00010-in.json b/source/parts/detail/s/squirrel-works-mylar-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..81726dd302930a7efe0593cf74e579f0154f4a06 --- /dev/null +++ b/source/parts/detail/s/squirrel-works-mylar-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26cd4d8bd5d8859a9630795caff3cb551971081be791f663e8be22f769f93459 +size 428 diff --git a/source/parts/detail/s/squirrel-works-paper-ring-07610---09500-in.json b/source/parts/detail/s/squirrel-works-paper-ring-07610---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..45200ba743d49ec95c2b798c29f56c00c20af905 --- /dev/null +++ b/source/parts/detail/s/squirrel-works-paper-ring-07610---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c153f110b3d93e0fb06849cba7ffdbca5354ac2e09459a93315d78382765fb31 +size 478 diff --git a/source/parts/detail/s/squirrel-works-paper-ring-12100---13000-in.json b/source/parts/detail/s/squirrel-works-paper-ring-12100---13000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e1eb3054135c63764b1a81c25b32d761f016ed31 --- /dev/null +++ b/source/parts/detail/s/squirrel-works-paper-ring-12100---13000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa866430b08dc59a0c482e5383e44bf9b86f890b7b00d352a930a2c92b5b762 +size 448 diff --git a/source/parts/detail/s/squirrel-works-sc-250-14-in-elastic-shock-cord.json b/source/parts/detail/s/squirrel-works-sc-250-14-in-elastic-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..a58c9f3e18a3a599e5726d6018ef426c1f60773a --- /dev/null +++ b/source/parts/detail/s/squirrel-works-sc-250-14-in-elastic-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec412caffabb2f19d0d2f08f22631b5b30d367101e2b53cd5134bf648fa3903e +size 455 diff --git a/source/parts/detail/s/squirrel-works-se-12-screw-eye-large.json b/source/parts/detail/s/squirrel-works-se-12-screw-eye-large.json new file mode 100644 index 0000000000000000000000000000000000000000..043286a3ed2f66bff41ced5f54dfe19b066fb3fb --- /dev/null +++ b/source/parts/detail/s/squirrel-works-se-12-screw-eye-large.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:715052974d99e5233db34b10bd49f7fb91ea6456b568c26476b5e60dea025aee +size 413 diff --git a/source/parts/detail/s/starlight-mylar-streamer-00039-in.json b/source/parts/detail/s/starlight-mylar-streamer-00039-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ae7e4cbc825a2aa84d42edfe55e67cb32863e89 --- /dev/null +++ b/source/parts/detail/s/starlight-mylar-streamer-00039-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c5e8c1d59052774e0768d2ae79bf37b22aa8daf72258f7535f220662959586 +size 411 diff --git a/source/parts/detail/s/sunward-aerospace-05-070-18-shock-cord.json b/source/parts/detail/s/sunward-aerospace-05-070-18-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..b6809a7464f6a077f622966f92da18637bcde4df --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-05-070-18-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3750a8c1ba8b5859bf1e09ac6438b7df11bb7f0f08da6e101e9f000b53d90ab7 +size 417 diff --git a/source/parts/detail/s/sunward-aerospace-05-700-engine-hook-standard-2-34.json b/source/parts/detail/s/sunward-aerospace-05-700-engine-hook-standard-2-34.json new file mode 100644 index 0000000000000000000000000000000000000000..8cd7102dd7fc02eb6453baca04994b1fddf78936 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-05-700-engine-hook-standard-2-34.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23873fe7cf1ac2a53be812696cc169a602da5221532a3b2016dd9437240d49d3 +size 465 diff --git a/source/parts/detail/s/sunward-aerospace-18-aircraft-plywood-ring-00000---15950-in.json b/source/parts/detail/s/sunward-aerospace-18-aircraft-plywood-ring-00000---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1244797c85b556df7e2322d745033b3a52324300 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-18-aircraft-plywood-ring-00000---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af87a6e12cf53f9920a85cc6aef0aa3e7449d81705f0004fe58e810bb9ec3ce7 +size 555 diff --git a/source/parts/detail/s/sunward-aerospace-18-aircraft-plywood-ring-09780---21780-in.json b/source/parts/detail/s/sunward-aerospace-18-aircraft-plywood-ring-09780---21780-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7028ea4c7e1fa2055b1a14b42d36dead8f63cb88 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-18-aircraft-plywood-ring-09780---21780-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da9d2702b689f1fcbed36cd6c6aabcc31b99be7ce5e112929ae60ec6c99f357 +size 541 diff --git a/source/parts/detail/s/sunward-aerospace-29312-24-x-24-chute-protector-65---80-in-body-tube.json b/source/parts/detail/s/sunward-aerospace-29312-24-x-24-chute-protector-65---80-in-body-tube.json new file mode 100644 index 0000000000000000000000000000000000000000..d969c683cf1c5e6abbd4aac08ebf83cb075519eb --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-29312-24-x-24-chute-protector-65---80-in-body-tube.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20063b581d33166c02755ff96700e457bffa3575ab094ffa0027c15de091ec8d +size 535 diff --git a/source/parts/detail/s/sunward-aerospace-balsa-ring-00000---15900-in.json b/source/parts/detail/s/sunward-aerospace-balsa-ring-00000---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7d55ba406ea53d300c7b2a8e0eb30c1937f3eb18 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-balsa-ring-00000---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e5091e5a979cbc68613d877a1e1999720ea8aaef89ac1f4b335143af7aa482e +size 489 diff --git a/source/parts/detail/s/sunward-aerospace-paper-ring-00000---25900-in.json b/source/parts/detail/s/sunward-aerospace-paper-ring-00000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..415f5cc56162fb786b9e7d7642b22bdea07fc0d7 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-paper-ring-00000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2e99f1dd58446a9be0d55a2967161d892675e38e3367a82ff97aa0b8ab4850a +size 450 diff --git a/source/parts/detail/s/sunward-aerospace-paper-ring-04530---07040-in.json b/source/parts/detail/s/sunward-aerospace-paper-ring-04530---07040-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c2cfa8df891b235a80dafcc6144a47401bdbbd83 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-paper-ring-04530---07040-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b6d94c30eb30324ce51ff1860563d1edfca6ff2a91519ce063ac73b9a22498 +size 484 diff --git a/source/parts/detail/s/sunward-aerospace-paper-ring-06508---07100-in.json b/source/parts/detail/s/sunward-aerospace-paper-ring-06508---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a8a66e06cf80db54d50d5fe67c0c883c1e47764b --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-paper-ring-06508---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fc0306548b7a3799307c96a3f800b81eae46cae573fd017164a3c104c3e68a5 +size 484 diff --git a/source/parts/detail/s/sunward-aerospace-paper-ring-07400---09450-in.json b/source/parts/detail/s/sunward-aerospace-paper-ring-07400---09450-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9a837822dbfab7d52dcf0df30a6284ea7025bd6f --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-paper-ring-07400---09450-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bffecd043ae03292d84501cec26c6da2883b5ecdd72aef77b8293411f1decea0 +size 484 diff --git a/source/parts/detail/s/sunward-aerospace-paper-ring-10000---25900-in.json b/source/parts/detail/s/sunward-aerospace-paper-ring-10000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..41f58ed58d2d3ced5baffef9d3e96658a7414423 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-paper-ring-10000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94050d14f53b1e612a0ac06395947e564cf87e9b35cedf93dfca2be9133fc0e +size 450 diff --git a/source/parts/detail/s/sunward-aerospace-paper-ring-12250---12670-in.json b/source/parts/detail/s/sunward-aerospace-paper-ring-12250---12670-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4d04be49810243ab69d4d015f8f46aeeddc52488 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-paper-ring-12250---12670-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3f6bef01ed2de6cb42682433a3bcfc27ae3d341c578c9d9c540a8324abce6f +size 484 diff --git a/source/parts/detail/s/sunward-aerospace-paper-ring-15240---15900-in.json b/source/parts/detail/s/sunward-aerospace-paper-ring-15240---15900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c33cc0d523975ed434772488d9ae028a03cc15a5 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-paper-ring-15240---15900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a73d0386190635d926081594bb8c06a858a8ef2c52c60209947935b6eae5231 +size 484 diff --git a/source/parts/detail/s/sunward-aerospace-paper-ring-20900---21800-in.json b/source/parts/detail/s/sunward-aerospace-paper-ring-20900---21800-in.json new file mode 100644 index 0000000000000000000000000000000000000000..dab3db1cff71092c11570214b81f2f1a569f9c6c --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-paper-ring-20900---21800-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab5a0cea803484e8ce9b1f495275fa39bb9ebe32fd620367f0c36d39089d67f +size 484 diff --git a/source/parts/detail/s/sunward-aerospace-polyethylene-ldpe-streamer-00010-in.json b/source/parts/detail/s/sunward-aerospace-polyethylene-ldpe-streamer-00010-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c1dbef3e96d9ca8f1f2044e756779670fa048f7b --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-polyethylene-ldpe-streamer-00010-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:269e330b3fa60559e2422d7f3df661ffc1005aaa387e8a869bf13b6feadd5ca7 +size 496 diff --git a/source/parts/detail/s/sunward-aerospace-screw-eye-screw-eye.json b/source/parts/detail/s/sunward-aerospace-screw-eye-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..2adacfc530b0f16b3bd66227b2fcd80557465d86 --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-screw-eye-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ddef3a92a866dd5729c0a50770ce0453f0dd1090ab529d7a2e2fd939fa4b662 +size 407 diff --git a/source/parts/detail/s/sunward-aerospace-sku-405703-38-u-bolt.json b/source/parts/detail/s/sunward-aerospace-sku-405703-38-u-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..c87f5aa8deda8e8f8afd807cfa82fea44c4e86bf --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace-sku-405703-38-u-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3082d74b9406d6a8b8186e534697aab10a3378b4f7906dc7c456b464cc6097 +size 427 diff --git a/source/parts/detail/s/sunward-aerospace.json b/source/parts/detail/s/sunward-aerospace.json new file mode 100644 index 0000000000000000000000000000000000000000..5a1f39e9272fd7ebc4c9f69088be881144e7affd --- /dev/null +++ b/source/parts/detail/s/sunward-aerospace.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77102c277e15c4a7a71636a3fd35550d0e09ec6de4b94fc26611c049ed8b6afa +size 292 diff --git a/source/parts/detail/s/sunward-group-ltd-rip-stop-nylon-streamer-00012-in.json b/source/parts/detail/s/sunward-group-ltd-rip-stop-nylon-streamer-00012-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3b38edad9008d68b377084f9c43b2db95a728fd4 --- /dev/null +++ b/source/parts/detail/s/sunward-group-ltd-rip-stop-nylon-streamer-00012-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0964b8f43d0f7be8cfc3f728113ef1040c2d1aa4bde58923b7e65e38503205a5 +size 476 diff --git a/source/parts/detail/t/tail-cone---spl-conical-transition.json b/source/parts/detail/t/tail-cone---spl-conical-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..b3a05bff343a249446dc86611776f801c65db9e5 --- /dev/null +++ b/source/parts/detail/t/tail-cone---spl-conical-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4586286c38806977b57ea2edec5d058b3677da0477c18abe5794d9d6b67b3fa +size 609 diff --git a/source/parts/detail/t/the-launch-pad-cardboard-ring-25010---25480-in.json b/source/parts/detail/t/the-launch-pad-cardboard-ring-25010---25480-in.json new file mode 100644 index 0000000000000000000000000000000000000000..514cf09e1cd30a1797f4004ef1834cfcb281102e --- /dev/null +++ b/source/parts/detail/t/the-launch-pad-cardboard-ring-25010---25480-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c84de80fe06c4f51922475287939180e5e227c3732b5bf6ee3bfd450fdfe614c +size 494 diff --git a/source/parts/detail/t/the-launch-pad-cardboard-ring-25010---25500-in.json b/source/parts/detail/t/the-launch-pad-cardboard-ring-25010---25500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e00700eacc7bfe9ac26051b00a01a1ec3a9d4a7e --- /dev/null +++ b/source/parts/detail/t/the-launch-pad-cardboard-ring-25010---25500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca3fe8d1f890b4c79981a68dff04557767162cb95659add8f801c04e64bf7afd +size 494 diff --git a/source/parts/detail/t/the-launch-pad-polycarbonate-ring-10000---25900-in.json b/source/parts/detail/t/the-launch-pad-polycarbonate-ring-10000---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bf53dd74afd2e039d5142897b58d89a2d529426c --- /dev/null +++ b/source/parts/detail/t/the-launch-pad-polycarbonate-ring-10000---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090874041a54651442d62b00d1b88906ad2bb6e18d0998494fdd0b64c22c8de8 +size 498 diff --git a/source/parts/detail/t/the-launch-pad-polycarbonate-ring-22500---25900-in.json b/source/parts/detail/t/the-launch-pad-polycarbonate-ring-22500---25900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c7a496b6527f3ce5a4fd23d61992da90d57ce8f2 --- /dev/null +++ b/source/parts/detail/t/the-launch-pad-polycarbonate-ring-22500---25900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10052897a4258041e917502c272c3effa85acec9a2b8aa991bd76e8f3403a615 +size 512 diff --git a/source/parts/detail/t/thrustline-aerospace-paper-ring-05441---07100-in.json b/source/parts/detail/t/thrustline-aerospace-paper-ring-05441---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f291cfb15c26a350d2a972b9a609d32125f9ce63 --- /dev/null +++ b/source/parts/detail/t/thrustline-aerospace-paper-ring-05441---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64084adcfe01b38d69d0a9e06f0de8a5dea602db20300d6ba5455f8c35a5d632 +size 472 diff --git a/source/parts/detail/t/thunderpower-tp1350-1spp25-2s-li-po.json b/source/parts/detail/t/thunderpower-tp1350-1spp25-2s-li-po.json new file mode 100644 index 0000000000000000000000000000000000000000..d9c5b0067c1d76b5993d81d238161451fecff46c --- /dev/null +++ b/source/parts/detail/t/thunderpower-tp1350-1spp25-2s-li-po.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:025c353917648f40b2709015e97415b8b3edafada27457621ae013946ba18f9b +size 409 diff --git a/source/parts/detail/t/thunderpower-tp350-1spl25-1s-li-po.json b/source/parts/detail/t/thunderpower-tp350-1spl25-1s-li-po.json new file mode 100644 index 0000000000000000000000000000000000000000..763c067dfe3d089d14cd014b6c33513a3dfe6c61 --- /dev/null +++ b/source/parts/detail/t/thunderpower-tp350-1spl25-1s-li-po.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dd1fc8726b2908c6a619111e0005d01f4e5486b8f6f56d1f3c6eb15c0e5c54b +size 405 diff --git a/source/parts/detail/t/titanium-ring-14370---19531-in.json b/source/parts/detail/t/titanium-ring-14370---19531-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bbae8ac4e79bd8334e3dc35a288196e1c0d46806 --- /dev/null +++ b/source/parts/detail/t/titanium-ring-14370---19531-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e46632a1e0c0f2eec7e891d798c85a61f71a70d2fe5d76cdfdb514c4fae0afc +size 393 diff --git a/source/parts/detail/t/top-flight-6x6-nomex-blanket.json b/source/parts/detail/t/top-flight-6x6-nomex-blanket.json new file mode 100644 index 0000000000000000000000000000000000000000..c96ad34b5adf5e93d3b939253ca16df8fdbc673c --- /dev/null +++ b/source/parts/detail/t/top-flight-6x6-nomex-blanket.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10127bb1b128469f665bc9cfef726c18f627dba7984129a96f9cdd3c71f9c6b0 +size 381 diff --git a/source/parts/detail/t/top-flight-nomex-12x12.json b/source/parts/detail/t/top-flight-nomex-12x12.json new file mode 100644 index 0000000000000000000000000000000000000000..e70ef2b898d3eda53af9790bebfb7176b7126206 --- /dev/null +++ b/source/parts/detail/t/top-flight-nomex-12x12.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beee0405c9e93a557e05111c96d0cce62a930659cc3874b24313ad9ba551e418 +size 357 diff --git a/source/parts/detail/t/top-flight-recovery-mylar-streamer-00004-in.json b/source/parts/detail/t/top-flight-recovery-mylar-streamer-00004-in.json new file mode 100644 index 0000000000000000000000000000000000000000..de9c45d0d857a8da87eec8dd3f4a4eaa0428971b --- /dev/null +++ b/source/parts/detail/t/top-flight-recovery-mylar-streamer-00004-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:466ce6cc70dc36c127cc404d1a20a462e524425d772eeb62e1bcd6a2004d8d3e +size 422 diff --git a/source/parts/detail/t/top-flight-recovery-nomex-shield-9x9-nomex-shield-9x9.json b/source/parts/detail/t/top-flight-recovery-nomex-shield-9x9-nomex-shield-9x9.json new file mode 100644 index 0000000000000000000000000000000000000000..94288fef36614f86e28afd283bc39297104b725b --- /dev/null +++ b/source/parts/detail/t/top-flight-recovery-nomex-shield-9x9-nomex-shield-9x9.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084d9b22b28fef334dbfe6da64bfcd6c7a94a008592d9c291d98c973b6d250a9 +size 481 diff --git a/source/parts/detail/t/top-flight-recovery-tuk-14-in-kevlar-cord-tubular-3600lb-14inx12in.json b/source/parts/detail/t/top-flight-recovery-tuk-14-in-kevlar-cord-tubular-3600lb-14inx12in.json new file mode 100644 index 0000000000000000000000000000000000000000..d5f476e5ed30230888603a9e7132d35222747664 --- /dev/null +++ b/source/parts/detail/t/top-flight-recovery-tuk-14-in-kevlar-cord-tubular-3600lb-14inx12in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee7919ce0763292f4d4e3d75995e03873ecdc14477a0a8faa83403aee718d2e9 +size 541 diff --git a/source/parts/detail/t/top-flight-recovery-tuk-18-in-kevlar-cord-tubular-1200lb-18inx12in.json b/source/parts/detail/t/top-flight-recovery-tuk-18-in-kevlar-cord-tubular-1200lb-18inx12in.json new file mode 100644 index 0000000000000000000000000000000000000000..e3974120efc8b4c579ac0cda5e3dcaa3fee61576 --- /dev/null +++ b/source/parts/detail/t/top-flight-recovery-tuk-18-in-kevlar-cord-tubular-1200lb-18inx12in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caf82b6a6fcc255848cd48d910a3b860a513fed89169e2fb403943c78caa68b3 +size 541 diff --git a/source/parts/detail/t/top-flight-recovery-tunsc-916in-x-15ft-nylon-cord-tubular-2300lb-916inx12in.json b/source/parts/detail/t/top-flight-recovery-tunsc-916in-x-15ft-nylon-cord-tubular-2300lb-916inx12in.json new file mode 100644 index 0000000000000000000000000000000000000000..22ea1d69c4dc2137a8059d0fd027298326871bff --- /dev/null +++ b/source/parts/detail/t/top-flight-recovery-tunsc-916in-x-15ft-nylon-cord-tubular-2300lb-916inx12in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8bdce16d606d3d6b6c331a9eed963ada3eb4aa8b3feab66ed235614804d64a2 +size 577 diff --git a/source/parts/detail/t/top-flight-recovery-yuk-12-in-kevlar-cord-tubular-7200lb-12inx12in.json b/source/parts/detail/t/top-flight-recovery-yuk-12-in-kevlar-cord-tubular-7200lb-12inx12in.json new file mode 100644 index 0000000000000000000000000000000000000000..38a3ebd415b204d3aa7f995c70d7a6d7323b17b5 --- /dev/null +++ b/source/parts/detail/t/top-flight-recovery-yuk-12-in-kevlar-cord-tubular-7200lb-12inx12in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a76823fc8fc20f58092c0a80692d471fc9cb8143d884a6c613f1e0724c9c06 +size 541 diff --git a/source/parts/detail/t/totally-tubular-balsa-ring-00000---02200-in.json b/source/parts/detail/t/totally-tubular-balsa-ring-00000---02200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7fc0c2f75e53ddcc9964581c55c678206b23a3c1 --- /dev/null +++ b/source/parts/detail/t/totally-tubular-balsa-ring-00000---02200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e9e3fa2d957bfd37f0fa5116dc1722b839bf015c67e87a3cc39b2bc5ef1f71 +size 478 diff --git a/source/parts/detail/t/totally-tubular-paper-ring-03760---04200-in.json b/source/parts/detail/t/totally-tubular-paper-ring-03760---04200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f7ce09f30a69b9538b20ce4c63a4aa2a6dacacd --- /dev/null +++ b/source/parts/detail/t/totally-tubular-paper-ring-03760---04200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09ab51ce3df82f89338ffa002bd7b22ca356cbe5e603842cbea7bf04647d9a43 +size 478 diff --git a/source/parts/detail/t/totally-tubular-paper-ring-06660---07080-in.json b/source/parts/detail/t/totally-tubular-paper-ring-06660---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..942af59b0534adf32df83dcaca2d6774487c94e6 --- /dev/null +++ b/source/parts/detail/t/totally-tubular-paper-ring-06660---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d88d2b0f032c764433e3871a47391524c6e5b719eeaf3d47303fd2190a8fe0d5 +size 495 diff --git a/source/parts/detail/t/totally-tubular-paper-ring-06660---07100-in.json b/source/parts/detail/t/totally-tubular-paper-ring-06660---07100-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ee469540bbba5616748b320aeb34b8c3341f3ca --- /dev/null +++ b/source/parts/detail/t/totally-tubular-paper-ring-06660---07100-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4ff2e00b75ef88ab9020d672c649537e6c1aa57510b50ab6dc3b989edc36ae +size 478 diff --git a/source/parts/detail/t/totally-tubular-paper-ring-08800---09500-in.json b/source/parts/detail/t/totally-tubular-paper-ring-08800---09500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1c4c3f7d64518f8f2aa9c90f6f0e320c45734f47 --- /dev/null +++ b/source/parts/detail/t/totally-tubular-paper-ring-08800---09500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:434c7f3f8f1843f91539ee385a9ba741be983c11542e7e5d9cd63014eac5ffbe +size 478 diff --git a/source/parts/detail/t/totally-tubular-paper-ring-12150---12830-in.json b/source/parts/detail/t/totally-tubular-paper-ring-12150---12830-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2173f35c5705366aa19a7c127efb0781c2ba62e1 --- /dev/null +++ b/source/parts/detail/t/totally-tubular-paper-ring-12150---12830-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24807b5d727b15604de4726c2162802b86f9a55ebccc6f9f1302dc95f02318b1 +size 478 diff --git a/source/parts/detail/t/totally-tubular-paper-ring-19300---20000-in.json b/source/parts/detail/t/totally-tubular-paper-ring-19300---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..025fb0fbc2ae3f74fef5b50d61d0e3bed1cedfc8 --- /dev/null +++ b/source/parts/detail/t/totally-tubular-paper-ring-19300---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24838acc5b4d8629c2dbe357b78828237f27b81c69541b3f053bd9132d0bc1d2 +size 478 diff --git a/source/parts/detail/t/totally-tubular-paper-ring-21100---21750-in.json b/source/parts/detail/t/totally-tubular-paper-ring-21100---21750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ceec5dfdfe028ccd1ba98ad99876332924df917 --- /dev/null +++ b/source/parts/detail/t/totally-tubular-paper-ring-21100---21750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f569ce6fd3f8ff02e91c668897e39ec6ed7466619d20059b90f140308a462b8b +size 478 diff --git a/source/parts/detail/t/transolve-but-1-back-up-timer.json b/source/parts/detail/t/transolve-but-1-back-up-timer.json new file mode 100644 index 0000000000000000000000000000000000000000..62a6da46a547a3a94b36a1e3f4021ce4b6830706 --- /dev/null +++ b/source/parts/detail/t/transolve-but-1-back-up-timer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69fa8f5bb51dfde846bdf4081274f1c14b3400fd4c5a14adac28524bf6e69718 +size 385 diff --git a/source/parts/detail/t/transolve-electronics-p5-transolve-p5-altimeter.json b/source/parts/detail/t/transolve-electronics-p5-transolve-p5-altimeter.json new file mode 100644 index 0000000000000000000000000000000000000000..08a261be2aefa196564ebd4609608dcf6daf78c0 --- /dev/null +++ b/source/parts/detail/t/transolve-electronics-p5-transolve-p5-altimeter.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f583146e86a0c238b1d64b82d74a4d6532943876623a49a81532ddcebe40d86e +size 457 diff --git a/source/parts/detail/u/u-bolt-stock-u-bolt-516-diax-1-38inw-x25inl-wnuts.json b/source/parts/detail/u/u-bolt-stock-u-bolt-516-diax-1-38inw-x25inl-wnuts.json new file mode 100644 index 0000000000000000000000000000000000000000..2f1cbf78697fa7edab9328823481ef51a37840a2 --- /dev/null +++ b/source/parts/detail/u/u-bolt-stock-u-bolt-516-diax-1-38inw-x25inl-wnuts.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54598117c42af3da06b46197f40531dd7f307d318ae0da96cddd865cf449d2cc +size 475 diff --git a/source/parts/detail/u/umrs-cardboard-ring-05420---07080-in.json b/source/parts/detail/u/umrs-cardboard-ring-05420---07080-in.json new file mode 100644 index 0000000000000000000000000000000000000000..00e9a9c54ebdd12840224e18179c6c6386e12e4c --- /dev/null +++ b/source/parts/detail/u/umrs-cardboard-ring-05420---07080-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da46f357903527d28b8185e609ee89b0ae9359b11b41fb65200017ee551995f +size 452 diff --git a/source/parts/detail/u/uri-rw-01-recovery-wading.json b/source/parts/detail/u/uri-rw-01-recovery-wading.json new file mode 100644 index 0000000000000000000000000000000000000000..dfb364f9921387f98f7cc1812164002b04d96b1c --- /dev/null +++ b/source/parts/detail/u/uri-rw-01-recovery-wading.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92cb403e3631fa508f4ae72682306cf33637e1956853a69b22d873f7a8218f02 +size 369 diff --git a/source/parts/detail/u/us-rockets-birch-ring-00000---22700-in.json b/source/parts/detail/u/us-rockets-birch-ring-00000---22700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..692ef7c0b37a1cc7ced6f9b47f42f72182648802 --- /dev/null +++ b/source/parts/detail/u/us-rockets-birch-ring-00000---22700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9678ef8e70c5cc937c79e4af2abd0929f1e6d928a72912a3c640620f167e70cc +size 459 diff --git a/source/parts/detail/u/us-rockets-g10-fiberglass-ring-20100---20900-in.json b/source/parts/detail/u/us-rockets-g10-fiberglass-ring-20100---20900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1121279f93f214f2f511bdfb8930e66a92858244 --- /dev/null +++ b/source/parts/detail/u/us-rockets-g10-fiberglass-ring-20100---20900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93e8f942c54aacf7afc220bb5f780f2d4c5855f490dc5b09e89ffa695e86d4c +size 486 diff --git a/source/parts/detail/u/us-rockets-polyethylene-ldpe-streamer-00050-in.json b/source/parts/detail/u/us-rockets-polyethylene-ldpe-streamer-00050-in.json new file mode 100644 index 0000000000000000000000000000000000000000..62f0fa0d227c223dce0aae22f5e7e842010bbc03 --- /dev/null +++ b/source/parts/detail/u/us-rockets-polyethylene-ldpe-streamer-00050-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34f08cc921b2ba75e6da1c0b92e90f5b6568fb21430a425e83ff0716e1e0567 +size 463 diff --git a/source/parts/detail/u/us-rockets-polyethylene-ldpe-streamer-00098-in.json b/source/parts/detail/u/us-rockets-polyethylene-ldpe-streamer-00098-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ea6b9135085358b1a610d9a64d2027b7e07d15e0 --- /dev/null +++ b/source/parts/detail/u/us-rockets-polyethylene-ldpe-streamer-00098-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:531511fc56e564128f21b9ee0b7c7243422c2f2530a6094ea556b6d000338f41 +size 463 diff --git a/source/parts/detail/u/us-rockets-sa-1-screw-eye-anchor.json b/source/parts/detail/u/us-rockets-sa-1-screw-eye-anchor.json new file mode 100644 index 0000000000000000000000000000000000000000..1957652d830fa75e861ab20403dbd075beedb413 --- /dev/null +++ b/source/parts/detail/u/us-rockets-sa-1-screw-eye-anchor.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49292fee2f55cb68c1b825b514a9a87e0d991a2aeba761659e30a33ab6eacd0b +size 392 diff --git a/source/parts/detail/u/us-rockets-sc-12-1x144-shock-cord.json b/source/parts/detail/u/us-rockets-sc-12-1x144-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..accbc0474c80fcae430e491f5c3264b2a4c6ad5a --- /dev/null +++ b/source/parts/detail/u/us-rockets-sc-12-1x144-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36e0c4b6d5175e08314f64f39e224127ef2066fd587509b5348f4d604b511b0 +size 404 diff --git a/source/parts/detail/u/us-rockets-sc-3-14-x-36-shock-cord.json b/source/parts/detail/u/us-rockets-sc-3-14-x-36-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..7e45ac86c45615db152997720522037b79606486 --- /dev/null +++ b/source/parts/detail/u/us-rockets-sc-3-14-x-36-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f279fe13c3ce0a0e7a32ff4189d95125099e10b5faf4345965239198dc8cd4c +size 410 diff --git a/source/parts/detail/u/us-rockets-sc-7-12x36-shock-cord.json b/source/parts/detail/u/us-rockets-sc-7-12x36-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..ba65a8301d4f86307c7add68858f360034b5984c --- /dev/null +++ b/source/parts/detail/u/us-rockets-sc-7-12x36-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:228759102afda8edf7167367d69932105fd4d78622e77995244e0cc9afe51008 +size 402 diff --git a/source/parts/detail/u/us-rockets-sc-9-12x48-shock-cord.json b/source/parts/detail/u/us-rockets-sc-9-12x48-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..78816e2c345c88c6bbb861e36114e8322b958ef6 --- /dev/null +++ b/source/parts/detail/u/us-rockets-sc-9-12x48-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576c46da6b0fdc8597227c497aa9918249f302f6b007fef8d7d7199b11043e50 +size 402 diff --git a/source/parts/detail/u/us-rockets-scm-1-shock-cord-mount.json b/source/parts/detail/u/us-rockets-scm-1-shock-cord-mount.json new file mode 100644 index 0000000000000000000000000000000000000000..cca570c6a2b814578b192febeed913d33e88b6c7 --- /dev/null +++ b/source/parts/detail/u/us-rockets-scm-1-shock-cord-mount.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4449ac4e46e48faf74f928ca485cb6de0cde1c0e04fe9d1be4f6f8d5f72f5a +size 396 diff --git a/source/parts/detail/u/us-rockets-scm-2-shock-cord-mount.json b/source/parts/detail/u/us-rockets-scm-2-shock-cord-mount.json new file mode 100644 index 0000000000000000000000000000000000000000..9cd0ca5cb04bb36d7fcebf51c27733399a609c2c --- /dev/null +++ b/source/parts/detail/u/us-rockets-scm-2-shock-cord-mount.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdac9f0546ac0dc5ed2d884de3031932abab4af50f9c2841762892fdf5a2df77 +size 396 diff --git a/source/parts/detail/u/us-rockets-se-1-screw-eye.json b/source/parts/detail/u/us-rockets-se-1-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..fbfa3675d4801bf0ce1c538c93d89c3d1d23f416 --- /dev/null +++ b/source/parts/detail/u/us-rockets-se-1-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b370c2719d653fc4d9195f4dccbf1b92ad442c4bd6b63f8ed1db30ec9304280 +size 364 diff --git a/source/parts/detail/u/us-rockets-sl-12-1x144-shock-cord.json b/source/parts/detail/u/us-rockets-sl-12-1x144-shock-cord.json new file mode 100644 index 0000000000000000000000000000000000000000..6021c7a3eff82a5b96473b791f55a3748d1ad249 --- /dev/null +++ b/source/parts/detail/u/us-rockets-sl-12-1x144-shock-cord.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4157ad790b330496539937d281dc6989b237bc46361e5308eecdfee672da07f3 +size 404 diff --git a/source/parts/detail/v/vac-form-plastic-ring-26000---27000-in.json b/source/parts/detail/v/vac-form-plastic-ring-26000---27000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..50bcb8a917128046a3a55511af7cedcfa2d078a9 --- /dev/null +++ b/source/parts/detail/v/vac-form-plastic-ring-26000---27000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:206948cca436b2a8be33ebf93a953428cc1e0243e8f96ea3adc47b762935bb78 +size 419 diff --git a/source/parts/detail/v/vac-form-plastic-ring-39380---40380-in.json b/source/parts/detail/v/vac-form-plastic-ring-39380---40380-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6cc6add86b7454f4189d88dfb8a404b2583aab38 --- /dev/null +++ b/source/parts/detail/v/vac-form-plastic-ring-39380---40380-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62db0c3c37d34ac5aed0d9cd8a2ffe971cdb269e54f3cfe0fc83d8f372f02883 +size 419 diff --git a/source/parts/detail/v/various-eye-hook-125-oz-eye-hook-125-oz.json b/source/parts/detail/v/various-eye-hook-125-oz-eye-hook-125-oz.json new file mode 100644 index 0000000000000000000000000000000000000000..ecc1ff9ec32eff207194b70f66caf9a3dc0583b7 --- /dev/null +++ b/source/parts/detail/v/various-eye-hook-125-oz-eye-hook-125-oz.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ee88a30e497bff9d3e487091be583443a01f660c961b4596d10be8512d299ea +size 429 diff --git a/source/parts/detail/v/various-quicklink-10-oz-quicklink.json b/source/parts/detail/v/various-quicklink-10-oz-quicklink.json new file mode 100644 index 0000000000000000000000000000000000000000..ff30d2a34ec1f6d669411ee7a4d6a333ddb572bb --- /dev/null +++ b/source/parts/detail/v/various-quicklink-10-oz-quicklink.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88d978547de5835c87f3a65850d574fe65552c75762c5edcb05ea24921d0914d +size 405 diff --git a/source/parts/detail/v/various-various-paint-glue-mass-errors.json b/source/parts/detail/v/various-various-paint-glue-mass-errors.json new file mode 100644 index 0000000000000000000000000000000000000000..4e0c8b6ec876702bf55e6524a9883666f3a7e8ac --- /dev/null +++ b/source/parts/detail/v/various-various-paint-glue-mass-errors.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac51a2532f146136986730d56bd15f51f1e07680ef307b35cfe952ad16c9056 +size 421 diff --git a/source/parts/detail/v/vaughn-brothers-carbon-fiber-ring-20000---21500-in.json b/source/parts/detail/v/vaughn-brothers-carbon-fiber-ring-20000---21500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a25ec684ee7cfb47323168326c8a78c165016a32 --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-carbon-fiber-ring-20000---21500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a7d879b50cb09b0fe2e3641077407dc2c1926bef714d2c030be1c42a4a79af0 +size 470 diff --git a/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-10200---11417-in.json b/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-10200---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d0617d145da523316be1fec1c2a78ca7a5b296da --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-10200---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:146c70e783091f7751fe89738a775ea199f0b734955a3c78436ed658de7218d5 +size 512 diff --git a/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-17000---18000-in.json b/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-17000---18000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..df247443405ddf9e9ad37028865187d92c8782b5 --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-17000---18000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d9020c6f2ff869827576f10c9af414b075632b869ad651eca07e5153d6d8bc +size 512 diff --git a/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-24900---25580-in.json b/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-24900---25580-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4c6882b5624950abf861119d342f826b0320491 --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-kraft-phenolic-ring-24900---25580-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d4224ac553cd7d203233191c59b18e4870c3a95edccbad2d701c1e58a5fece +size 516 diff --git a/source/parts/detail/v/vaughn-brothers-paper-ring-13800---15250-in.json b/source/parts/detail/v/vaughn-brothers-paper-ring-13800---15250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8e8c4933d323cd7cd43045b1da9c40bad0d912de --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-paper-ring-13800---15250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5af0ce3ecb412fdb6f1e2a610aa3080d3fcf58f04f0389e6c6c1dd3de0e2227 +size 485 diff --git a/source/parts/detail/v/vaughn-brothers-paper-ring-20180---21400-in.json b/source/parts/detail/v/vaughn-brothers-paper-ring-20180---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ba6fe6820a9253468640d897ad6ed3bbc32716da --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-paper-ring-20180---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6accc8ef39a1bcc419ad07e0132ca3a46bfd902a2ce2701f7cda7f3a774c71e8 +size 485 diff --git a/source/parts/detail/v/vaughn-brothers-paper-ring-20180---21520-in.json b/source/parts/detail/v/vaughn-brothers-paper-ring-20180---21520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c88b39ce8953bffe6f996b30271355d8892e15bc --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-paper-ring-20180---21520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc0d5192f2dc76ef61ab4f376091e8ae4a66d3640734debf0a9a945a099702a0 +size 485 diff --git a/source/parts/detail/v/vaughn-brothers-paper-ring-24580---25400-in.json b/source/parts/detail/v/vaughn-brothers-paper-ring-24580---25400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..3f803ccb2e546ac5c70c59133f8f87079f358b05 --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-paper-ring-24580---25400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:faddb255517fecf0b44ee8272f61538a8800c41fa549b93a0e511fdb17e476b6 +size 485 diff --git a/source/parts/detail/v/vaughn-brothers-paper-ring-24580---25550-in.json b/source/parts/detail/v/vaughn-brothers-paper-ring-24580---25550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..482e4d9e81eb8b604eb3ee6231980e859bec1fba --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-paper-ring-24580---25550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c70212418c7f607b7a4ac90087d264191dec6841ddb44a98e42d4870a503703f +size 485 diff --git a/source/parts/detail/v/vaughn-brothers-paper-ring-37780---39000-in.json b/source/parts/detail/v/vaughn-brothers-paper-ring-37780---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..045ac76313b13419e422f9516ebb473d2d857824 --- /dev/null +++ b/source/parts/detail/v/vaughn-brothers-paper-ring-37780---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c905fb81fdc8dbf989193514192cb462f5fc6ec21b47d709d684e538336131 +size 485 diff --git a/source/parts/detail/w/waddell-basswood-ring-00000---12500-in.json b/source/parts/detail/w/waddell-basswood-ring-00000---12500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..33e5a2ad53a32b760b1cec928ec0c4e4629b41c3 --- /dev/null +++ b/source/parts/detail/w/waddell-basswood-ring-00000---12500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24562557568cf1fe0c0df1e859bd64513668a29b83ba9af4610af702f5c9004b +size 510 diff --git a/source/parts/detail/w/waddell-pine-white-northern-ring-00000---12520-in.json b/source/parts/detail/w/waddell-pine-white-northern-ring-00000---12520-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a1e646b8d6cf6ea69d04e24f0594e9cd1201c7ce --- /dev/null +++ b/source/parts/detail/w/waddell-pine-white-northern-ring-00000---12520-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3905790f0834bb0d7d9309530410f60759eb57c0df4e57e63cbbae2b9ea4087 +size 545 diff --git a/source/parts/detail/w/walmart-se34-eyelet--steel-34.json b/source/parts/detail/w/walmart-se34-eyelet--steel-34.json new file mode 100644 index 0000000000000000000000000000000000000000..9f414144f4db69e620256c51aaa40fa5fa82fadb --- /dev/null +++ b/source/parts/detail/w/walmart-se34-eyelet--steel-34.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e201cd5c838544dc24384c322728b70ff60848cd51f6dab9024c0c532e1a4c61 +size 393 diff --git a/source/parts/detail/w/washer-stock-washer-for-516in.json b/source/parts/detail/w/washer-stock-washer-for-516in.json new file mode 100644 index 0000000000000000000000000000000000000000..4d201641c2404e15d943be514f31606be6a7ce38 --- /dev/null +++ b/source/parts/detail/w/washer-stock-washer-for-516in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d02d4f5370ae81139871eaf0544e6a7aeaf696d9781524b2796981c798a2e039 +size 387 diff --git a/source/parts/detail/w/wildman-rocketry--1-inch-tublar-nylon.json b/source/parts/detail/w/wildman-rocketry--1-inch-tublar-nylon.json new file mode 100644 index 0000000000000000000000000000000000000000..d14711b38f4048ba8222b0ef45a43fb056f02962 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry--1-inch-tublar-nylon.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:887687f12e8a42e9b8757c96803b7eff9d97b8fb1dd3e94575c3c9367fbf34d6 +size 386 diff --git a/source/parts/detail/w/wildman-rocketry--18-quick-link.json b/source/parts/detail/w/wildman-rocketry--18-quick-link.json new file mode 100644 index 0000000000000000000000000000000000000000..147b197cd10f35620b7c3891fa5c3a21e0d9a98d --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry--18-quick-link.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb8dfb2e78dd657383496729544f0468e2b263af61421d4a811685912373c8a8 +size 368 diff --git a/source/parts/detail/w/wildman-rocketry--screw-eye.json b/source/parts/detail/w/wildman-rocketry--screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..b7c670b1398ad4db87cee905c48a30953b3008fb --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry--screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216a55d5eb8c40b5cd921311b0a54fd46a960e303a748ec32c33a4e25faca4e7 +size 346 diff --git a/source/parts/detail/w/wildman-rocketry--welded-eye-bolt.json b/source/parts/detail/w/wildman-rocketry--welded-eye-bolt.json new file mode 100644 index 0000000000000000000000000000000000000000..4a5997890c78313c88fd51a7114cbcfd459cc15d --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry--welded-eye-bolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c972d18ca448e9871f6aa67fa97a63292ef742f45a8720f036d0484b547ddc3 +size 370 diff --git a/source/parts/detail/w/wildman-rocketry--welded-screw-eye.json b/source/parts/detail/w/wildman-rocketry--welded-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..f172f3bce4072a96bc2ed62aa0d80fb83e25de59 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry--welded-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132321e193b813266486f42b5c6044717968e8df310632c300a528418b4988bd +size 374 diff --git a/source/parts/detail/w/wildman-rocketry-1-inch-tublar-nylon-1-inch--20ft-tublar-nylon.json b/source/parts/detail/w/wildman-rocketry-1-inch-tublar-nylon-1-inch--20ft-tublar-nylon.json new file mode 100644 index 0000000000000000000000000000000000000000..8087c1f1c10b731c21f1a3e0f7d19d7d8d6d0cec --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-1-inch-tublar-nylon-1-inch--20ft-tublar-nylon.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a8525de2c10747e28ad8ee148c9aa31c9c2b1e08e2100b45bec5bf35c67696 +size 508 diff --git a/source/parts/detail/w/wildman-rocketry-14-aircraft-plywood-ring-22760---38976-in.json b/source/parts/detail/w/wildman-rocketry-14-aircraft-plywood-ring-22760---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93ecea0f3fd380a2da8ab3f016083b1154d1d9cc --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-14-aircraft-plywood-ring-22760---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e846db09304f3ade210fd7591bb484e63f14134dd46c8e56657c7bb367a4528b +size 560 diff --git a/source/parts/detail/w/wildman-rocketry-14-aircraft-plywood-ring-31496---38976-in.json b/source/parts/detail/w/wildman-rocketry-14-aircraft-plywood-ring-31496---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..425038acc30c1262fcd6eafa189e8e2b83e600d0 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-14-aircraft-plywood-ring-31496---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7d1e70b4c711c3bb6c4775cae09191b87246517d32f61b444c939837394bb64 +size 560 diff --git a/source/parts/detail/w/wildman-rocketry-14-welded-eyebolt-14-welded-eyebolt.json b/source/parts/detail/w/wildman-rocketry-14-welded-eyebolt-14-welded-eyebolt.json new file mode 100644 index 0000000000000000000000000000000000000000..31565acb6f93aa1d7a617e048360f98ac9e45bad --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-14-welded-eyebolt-14-welded-eyebolt.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64ffe4327d071ef659a64664496afa9d810cdf039727d04ced0f107a6fcf40b9 +size 480 diff --git a/source/parts/detail/w/wildman-rocketry-14x20-tubular-kevlar-14x20-tubular-kevlar.json b/source/parts/detail/w/wildman-rocketry-14x20-tubular-kevlar-14x20-tubular-kevlar.json new file mode 100644 index 0000000000000000000000000000000000000000..3d45d4d588f3fae9c6f8807072ea454d3a6fbb4d --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-14x20-tubular-kevlar-14x20-tubular-kevlar.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c9bd11bddfd201abe058e7c7e6588e35fc898c2dd94276987b02ea95f6aa15 +size 508 diff --git a/source/parts/detail/w/wildman-rocketry-18-quicklink-18-quicklink.json b/source/parts/detail/w/wildman-rocketry-18-quicklink-18-quicklink.json new file mode 100644 index 0000000000000000000000000000000000000000..2451caf884d60d008af4b1988f17367bfd9fcb8d --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-18-quicklink-18-quicklink.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fae8f8a01da6aff93beed820c3b3e499e26c718cc11210cfb4fa3834eefe5f2 +size 440 diff --git a/source/parts/detail/w/wildman-rocketry-18-tubular-kevlar-18-18-tubular-kevlar-18.json b/source/parts/detail/w/wildman-rocketry-18-tubular-kevlar-18-18-tubular-kevlar-18.json new file mode 100644 index 0000000000000000000000000000000000000000..4b4757ed003cc43a7eea7a54850005e6916c115e --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-18-tubular-kevlar-18-18-tubular-kevlar-18.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1005e04c7580f3b6d1ad0506926aceff800709ffe377b5bd9fda547d5eea6c36 +size 508 diff --git a/source/parts/detail/w/wildman-rocketry-916x30-nylon-harness-916x30-nylon-harness.json b/source/parts/detail/w/wildman-rocketry-916x30-nylon-harness-916x30-nylon-harness.json new file mode 100644 index 0000000000000000000000000000000000000000..26930d0fbe70a39882425e4e16f67075baf9c513 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-916x30-nylon-harness-916x30-nylon-harness.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fb90b602898cc1a939e474c48e2ddcb8a375827f3feed00248ecbf980e10a5f +size 508 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-16100---21250-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-16100---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..24b4a6ba55150df127e5d5b0b12a56841b13139d --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-16100---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4e2b6904bc11136d7ae71f63593ff607c83a4eb25f6a6289bad8e94cd320cde +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-16250---21400-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-16250---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..04ae6206ba5c94483e0d64283b699cf2d39cebd3 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-16250---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f629f700d9b065c8095eaf5b7b8934e145c149366973873da79b05a576173c +size 578 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22500---30000-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22500---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ad073e5edbdc04fc89f0946c16317a889c6f22df --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22500---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f714fda22bf39b7d4ce3595d06d37ebf92cca1169e2bdd370878f624690f8f7d +size 514 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22760---38976-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22760---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..ac977409bb6ad4dc328aeae68f89293ad2ea000b --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22760---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b48a98986b0b2f4d8e104ad1c52cf910c3c4c83cf011d07c05bf97dcbe1ccdd +size 570 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22770---39000-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22770---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4e0d724848652ee02bbeb42722eb644b30ab8848 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22770---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef558a58dee2a0c2075b785f7e34a2695bd6f5b8fe3bb298b405c64dd3d7076e +size 579 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22800---30000-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22800---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a738ae0865e8c2caa01c5af97ca772a041edb090 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22800---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d14679d35e968ebcb9684f034658f049e193e9166e1aa37215896722abbf9a44 +size 494 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22800---38976-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22800---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..21931178ae2224e8886b1565877c108de486d02e --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-22800---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97992b96d6d2582b432503eb375de9e2f1dd0047dc385216d89487c097bfd523 +size 579 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-31000---39000-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-31000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..91fd67a07691f5e7fc3137fcfc2834eff4458cbd --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-31000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8ede42d31e74b7ce9174bed2c2f80abfedc11b8fe8f96a9b921e3daf643b837 +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-31250---39000-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-31250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..455410a43460be2ea3a96d5cdba0df9d35693e2e --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-31250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4799b229e30545e117f6594d9c795e3c806aa1aec5b3e01741d162cd0c563d8f +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-39600---39700-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-39600---39700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d291374e1790acf2cee7a35491100e1f83b5da09 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-39600---39700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3519fa38c620810c6b2f3915a00b2dada180216b988ac1538ea2366e80f2b649 +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-39800---39900-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-39800---39900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..93579a0a21ed81119b682e065c3a28d3e8d62d1f --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-39800---39900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6221bf4bc8e973016744dc99383bf164c9501ccc6e14a13555a3867894044bb5 +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---50000-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..58dfb625b0b73c757616456de7e467af43fab1ff --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cdd5c491698bab5d566b73181ce8a252e4183b9bd97c0e2e7723a5b7873dd00 +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---60000-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..efe97d9888222eb7531961bef70c657eb8806fe8 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e02e4a061c6ccc1f3ec6ea2c9f35968ec9d2ab6a70fdc56016a43d9b40f3531c +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---76250-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---76250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..917f80008de9e0b1159cdd33231f34fa66fab3fb --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---76250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bfae8c17e4ef6a4c1c450a29ee1a50e5a9ad5869292fa2e0723b7c4c54f5a4d +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---78150-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1ff607156968eda5f5aebb1df6333b3a1847cb53 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40250---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247257f8fb18cb876c2271703494c8d8083ee0cb23181d4fb42ce2a64150ea1d +size 509 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40625---60000-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40625---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..48911911824068e4499c11dc47f6cc0125b295cd --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-birch-ring-40625---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:791c12d24f6e4d3f35275a0059a6e2b608a2078daff1d3528dfc227e6180b168 +size 584 diff --git a/source/parts/detail/w/wildman-rocketry-aircraft-plywood-loc-ring-00000---111500-in.json b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-loc-ring-00000---111500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2f9f2a0ea7b3450ff00165a13f4f4f3fea49a7e7 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aircraft-plywood-loc-ring-00000---111500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7832861d28a0e292fc057d5371e518c70b8b209b21163612742755add8cec433 +size 498 diff --git a/source/parts/detail/w/wildman-rocketry-aluminum-al-ring-00000---114000-in.json b/source/parts/detail/w/wildman-rocketry-aluminum-al-ring-00000---114000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..e890ce6342c7772c052f866f633377c0d304c3eb --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aluminum-al-ring-00000---114000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e32be935c19baa658e40dd59823b446497c62d2b4b661df83526b5dd731964d +size 471 diff --git a/source/parts/detail/w/wildman-rocketry-aluminum-ring-00000---39000-in.json b/source/parts/detail/w/wildman-rocketry-aluminum-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b87037d9c26a07d8555c798d469c5fe4b7d465d3 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-aluminum-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b9df78a9205e7f0bdb9a4599005c361fab3ae16c8f28b57f088f9aecb4e229 +size 465 diff --git a/source/parts/detail/w/wildman-rocketry-carbon-fiber-ring-09843---11417-in.json b/source/parts/detail/w/wildman-rocketry-carbon-fiber-ring-09843---11417-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8fbe2922ce26e1239ce2de5b2171d69983aa1388 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-carbon-fiber-ring-09843---11417-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6853ba73cbcd117910508392199b8901874ba4fd92b37a96aeba19223b26e67d +size 454 diff --git a/source/parts/detail/w/wildman-rocketry-fiberglass-ring-00000---60000-in.json b/source/parts/detail/w/wildman-rocketry-fiberglass-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5f4d500c8e38edd50cf935bf375796be1815916b --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fiberglass-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af7eb7a7157eb92009d482d5c92c805b43b20a8c042ea9c5ab93907a5dc7f9c +size 534 diff --git a/source/parts/detail/w/wildman-rocketry-fiberglass-ring-20079---21260-in.json b/source/parts/detail/w/wildman-rocketry-fiberglass-ring-20079---21260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c5173684654d2d702001683c02db21a03c73e084 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fiberglass-ring-20079---21260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6480a4524e18bb535550d38d4385f47b7c5bcb250250e8971fd6550b4093e4f2 +size 462 diff --git a/source/parts/detail/w/wildman-rocketry-fiberglass-ring-28750---29900-in.json b/source/parts/detail/w/wildman-rocketry-fiberglass-ring-28750---29900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9e729147d0418df1666bebd3cae1a784edb65833 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fiberglass-ring-28750---29900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4d69240bd3bc95758bed9f6c5fb1f168ff57187df403489f73847b939ed69e +size 514 diff --git a/source/parts/detail/w/wildman-rocketry-fiberglass-ring-48750---50000-in.json b/source/parts/detail/w/wildman-rocketry-fiberglass-ring-48750---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c8cc475288965fc3a1bdcdd5fa9c53eba7aafee0 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fiberglass-ring-48750---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c455d7219023d9088fba4ad055afccf72b3c3a107b0c4054558752e96e818c3d +size 514 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-12500---15000-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-12500---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..91dcebcf6ca4065b209af60e5663fb2d40ecab64 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-12500---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375aa51cdaa8ed8d17dad845db11f7df2c594306d7fcc0f2f7f4f6baedc7b1fc +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-20000---21250-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-20000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..319dc559385a12afde01cb5ad7e3f2152f981ff4 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-20000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8fb706a9f9f8212641084f6dcf753a2ebaca66754a964d12211395934b128c +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-22600---39000-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-22600---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cdb7ff6c3e844a87b084c5f78cf65e56a6d49ce2 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-22600---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469d43239ed880a59af6f26eed2097e66c2d25a2f31f1ed4218d6a672561aa50 +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-28750---30000-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-28750---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6b02b49a4cc0cf0b41b2fe34678fc11216d90e16 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-28750---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a85a25188b3540433130901b0efa71848d02faf405e40ac326d09f76fffe24 +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-31250---39000-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-31250---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..82a5031e4291c46b0f4ef739e070857053a28f30 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-31250---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c228d4df0689a937679ca24835a1a00cd1d720410a8dd2d405281a43809281e +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-37750---39000-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-37750---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..fc9f9ff1ecc005fd2ccd72c253ea36def5ce74cc --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-37750---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056ceb98b65b82f3e3097ed445b0580f326af57110c07a9f58fcd2b4a7ea02cd +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-48500---50000-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-48500---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..28617f7a507ecbfd62e25dc540d5e71bccf90f42 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-48500---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6fcd43d4bbedfe40df958d9b40b770fca8fbc8d8631ce3273bd55a0b9d7227 +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-58300---60000-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-58300---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..35f140b97c124bbda52473e29cc46c8912d3eba3 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-58300---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae764eb60cbc8c08826d7b9f503e70b592977e917944287ba0152feeb6efe2f9 +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-fwfg-ring-76250---78150-in.json b/source/parts/detail/w/wildman-rocketry-fwfg-ring-76250---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bce192ac6021a7a6410b52a72992412f0a81b96d --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-fwfg-ring-76250---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e69e3e8455328fbf090df9dec408d6a2b5cc4832a8fb88b2e748699107e7897 +size 453 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-13700---15180-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-13700---15180-in.json new file mode 100644 index 0000000000000000000000000000000000000000..5639f87bcb2abfe3e56942f9ca6326c7d6fbcd2e --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-13700---15180-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:375010cca574b2deebde689ccdac06b6b56007447071da7475016b6ec6a569f6 +size 600 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-20472---21260-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-20472---21260-in.json new file mode 100644 index 0000000000000000000000000000000000000000..96d7d54f73b10d280a5612ee2f3831cd92935603 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-20472---21260-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71cd5eb686814099bc3eb739780201665e4b11c2b3b99ed8783394aef753189e +size 528 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-28550---30000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-28550---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a6c6b1c122f59f99dd06bd80638578a2c60370ff --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-filament-wound-tu-ring-28550---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d8fa97ee813c420876429ab1413d3d2b19476c87cd9cc9c3085064e943668d +size 526 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---13700-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---13700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..077586958d2cbdb48c06a7346da3ea390d6b354c --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---13700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4eaa501e1373cd254b8789dcc133ea4e3d6a7df80e1f676cf11b11a401b0390 +size 545 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---13750-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---13750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f1c0010d99d0028b5ecef3f80b3ee9c865d28743 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---13750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9420a3030729bc992e8ad8e4fda1395231808eb51d94ba4e1b2f4c5445ca8f +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---15000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---15000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..d741d6554b9b670fd86b2af06e923391effb1b10 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---15000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83eeeba3c5941fb4318619a6a2d22c257618695098cc4bd1595726f923092bd5 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---15200-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---15200-in.json new file mode 100644 index 0000000000000000000000000000000000000000..808353709fc0d570ae6f96517394686a91574df9 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---15200-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e32d86d3ab907ebc07ac77c703d29248a5a7485a00a692010d312768a23ab46 +size 530 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---20000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..175dc6060e31c580de7ac0bec136cc98d01f6115 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a9a372b49491083473140b57c73a53671c60a657a64f26851c6659ae1e87618 +size 553 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---21250-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---21250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c243aaf257d23a025811a498c63e4c88ce8d9559 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---21250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb30b01aef22b80e25a4ab7c9f7e8580b3e09abb43092b1d28d9126ba5e24d7 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---21400-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..64669f04a54704b5185a796bc835411601891747 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c1f9a16bc44a224cd13741dbfa228ed8a49f100c1b0de3db23dcaa0be21a8d +size 544 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---28550-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---28550-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bef1bd5976a8aeeefa62892a1ed2db91735a65dd --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---28550-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2315a92f7679e6d1134135742784203afbcf7c93803e95667074a74cbccd809c +size 473 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---28750-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---28750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c14304fea8748c672c189785b46684e5ed2610a5 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---28750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56b23fe7f2bc065627934ec02eb0139fb37a8163ddd4b94dd129da55602e695 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---29000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---29000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..9893b73aefcd6067d417c5417ed890f54a757091 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---29000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d66656e27411e797ec25ed87479cae29851e61b1a1378b7b86851f98b94bacd +size 540 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---30000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6ee95b8f83eaed76e7b2f11acd3a376665813e2a --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d5c9da0a5ab64ec5cbef8469da251c80d5320ee4fca08e9591fcabdc32c383 +size 484 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37402-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37402-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6c3d1208c404e57e0515655fa5b50a8500bb85d9 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37402-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d90ddb387377ff70114ae950c46947bfc4a3e5ea6365d988c0d6365f68504c1 +size 553 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37500-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4064ac7a09466591436a678ab00f5eeaa5adf6d6 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e8bc494b0de50e3a1dc124a5ecd333f41437de754ac250b9e81fba330b65bb5 +size 474 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37700-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37700-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0b788a170f70edb7b53c9c4114827ebf9c8a4bdf --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37700-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211fc35ba258efea2cd43e832b72c57eac0e784f9d125a3937b3294c363616d9 +size 550 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37750-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37750-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2b202826b08cdd93ae96c4061262e80e5b5ad865 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---37750-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9db3b00887dfd83116e761568fa7cc2423f940b0b21281c79b9f76317b03b137 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---38900-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---38900-in.json new file mode 100644 index 0000000000000000000000000000000000000000..53be924fd3d2a770d5851455eb936f5e759283ce --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---38900-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5955e64742bfefccde00052d8ca278ab5de028ec30dcd50dcccbd7bff937560 +size 474 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---38976-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b2a4614cc51cf5fd905b610e15b3d6ec61bbad75 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea3d72e6a2715f5576e8f89172a18260e25bdcaacdf17d98d08b3a4b1466bfa5 +size 556 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---39000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..321c72c751245f8cb1e9968803967aab2b0d204a --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd11552bfb37ca8d43087a8d8df798708d9d75be03cad979ddfef88675e4a33 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---48500-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---48500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..2991d7f65abbec38c77f7aed5d5b9553bf0f76d5 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---48500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7c4954e57bd3a7e89319e57d02aebaf420c8b7a664f87329349fe1c04d756c +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---50000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..639b7d7033bb3e41ea0e090c32315cf1e2f4d918 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77fd13110eef0474ad32cb1af0103cc6ab6128863e44b61e3a3e685e8492b295 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---57500-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---57500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..08b27478da549b054a1c59730311503d0c9c7edd --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---57500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c83572e8d85a72b839103c9e4f92c36fa08490bf57fbb93f2710da785a7eb6f +size 544 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---58300-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---58300-in.json new file mode 100644 index 0000000000000000000000000000000000000000..333029f24304528428eeb14e198e1df49e75475d --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---58300-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df858956e1fb66284e2e8843f9bfddb747152c73b68f600c5def642db89d2838 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---60000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..f9f43de6a7931fbe0b0313efb13e30162b10b15b --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0228a83f409d8d175f606f606898b41b0b22693cbad8b5c22b7ddd98bfc952a6 +size 546 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---76250-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---76250-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b7ab035e5e99258ce06910733d7abcf2e0859708 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---76250-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b826585cf6359fd5d0b52123dbab26883abb5666ff713738872a8520649e25b6 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---78150-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---78150-in.json new file mode 100644 index 0000000000000000000000000000000000000000..da7e2ecf52ba839c44ada7089f8346ed73032292 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-00000---78150-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bffbae289fce76b37c9a6649c0eeb445527d1cea27367cd639b79043fb6ba88 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---20000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---20000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..7120f6d746d8ce54634206913d7e3d7d0719ceb4 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---20000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa44a09f5f940af085f7f9fa307a2a339fb27166853390ec2989265dff17642d +size 554 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---27500-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---27500-in.json new file mode 100644 index 0000000000000000000000000000000000000000..94d28ad585c2037fe4ec796fdc3384d0d686e20d --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---27500-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689f10152a4d1dcaa852b7cd3fcaa44d3e7d4f1de62e33eef00c3531d5c18c43 +size 484 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---37000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---37000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6157eeb286a856830323ac59ca7954947f985a57 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-02500---37000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e869086b58a758a253db7beb5d201b9a9a537788faf001e8ae19a3b7eb406425 +size 552 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-20000---21400-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-20000---21400-in.json new file mode 100644 index 0000000000000000000000000000000000000000..4ad726d1ac3884c8e0895fe093a46bab090b0362 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-20000---21400-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2226f8726db272ede8e5ecf94daba0b46cd5a878c98e8d5c1bd558f7a85a5e62 +size 528 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-22500---39000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-22500---39000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..bc54c503848704680e3717b0e2fdf41b7380f0f2 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-22500---39000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e55c8de555bb5263e955ca61d714a13b5b8c54eec96ade5e90a245c2b906d364 +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-22500---50000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-22500---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..0ca5f6c067a49342778a035536fa1d1d6fc28751 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-22500---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b84da6c6c16864f5256dd31a89ad0281f7e36523183604ca2ffe5f2710a539ba +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-29000---30000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-29000---30000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..cded6847c2ad111389274b40fe96283bcc63c237 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-29000---30000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd1a8bcabffc3b37c573792b674aec0960cb8e0984617b413f467a4a8f5af25c +size 528 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-31400---50000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-31400---50000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..757152c3ccb1df3d495708ab3fefff1b35c243fe --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-31400---50000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beff4dc8fcf1695c7f3ca017d0f90ba424562cf2d28b9d114264f5a56090fb7e +size 483 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-37700---38976-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-37700---38976-in.json new file mode 100644 index 0000000000000000000000000000000000000000..8f73dcf0f4f5b4431b5af1d42d5da904cf00f7a9 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-37700---38976-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d298c4116689e983077c8607966f89bb2a927f0c4eef5914b35e2e5685d8d7 +size 528 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-40625---60000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-40625---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..c4636543b06fdb03b532b5b10d858a909bff0b09 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-40625---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db29afa9b821a23a2afd2a5b6cfd650ae3e40823c152dd94e09ec5f4ed1d75d1 +size 566 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-57500---60000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-57500---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..84845c2375f5532486914c67cf355b0cd540fa0e --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-57500---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:deb6d804a6a57bfaa0eaefe5e516a5ad3b51ed19933c08059f611e18ce7a39f8 +size 526 diff --git a/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-59000---60000-in.json b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-59000---60000-in.json new file mode 100644 index 0000000000000000000000000000000000000000..a2dfd63747552e5e24273f369eba607ae4830990 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-g10-fiberglass-ring-59000---60000-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e554acf13dd2d06017237b2f2942dc4886ed2772c4b4ab09fe39a942606e718a +size 474 diff --git a/source/parts/detail/w/wildman-rocketry-kelvar-1-inch.json b/source/parts/detail/w/wildman-rocketry-kelvar-1-inch.json new file mode 100644 index 0000000000000000000000000000000000000000..b616cfbdb709320106d30ea4d02b84c46a21e951 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-kelvar-1-inch.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f69aa9b14f2fbbe3243c0c3ee9cfc16cf1f77d7c0410e9e28f11b04681b15d +size 360 diff --git a/source/parts/detail/w/wildman-rocketry-none-welded-screw-eye.json b/source/parts/detail/w/wildman-rocketry-none-welded-screw-eye.json new file mode 100644 index 0000000000000000000000000000000000000000..e5fdef74ae6cb5ad9a6d72a49bfa17add8e3010b --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-none-welded-screw-eye.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c50f6d56d4074f7ef94f8ac0c889cd41852fee280942ba56e8b642acad91670 +size 412 diff --git a/source/parts/detail/w/wildman-rocketry-ogive-transition.json b/source/parts/detail/w/wildman-rocketry-ogive-transition.json new file mode 100644 index 0000000000000000000000000000000000000000..aceea2dc30874d5690cbc3f1876ff1aec100b6fb --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry-ogive-transition.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ffcfcd8c806c4201617ad7b00746562f916e52c2235a4a9f46156e8b01dd45e +size 655 diff --git a/source/parts/detail/w/wildman-rocketry.json b/source/parts/detail/w/wildman-rocketry.json new file mode 100644 index 0000000000000000000000000000000000000000..5b0abfc4dadedb82b288b782539e59266916b2c6 --- /dev/null +++ b/source/parts/detail/w/wildman-rocketry.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150be1b6a7286618a447b25f32f9adb66a6d49b02905249b9bcd36c89dde3b1a +size 298 diff --git a/source/parts/detail/w/wolverine-aircraft-plywood-birch-ring-12283---15950-in.json b/source/parts/detail/w/wolverine-aircraft-plywood-birch-ring-12283---15950-in.json new file mode 100644 index 0000000000000000000000000000000000000000..1d2db9e8cb9ca201bc39ad791b5da4c066c0004c --- /dev/null +++ b/source/parts/detail/w/wolverine-aircraft-plywood-birch-ring-12283---15950-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15aaa3bfbd046bb36320e0b625f664c579cf26b5502136caa1e54e9b9ba49bce +size 521 diff --git a/source/parts/detail/y/yank-kraft-phenolic-ring-29400---30020-in.json b/source/parts/detail/y/yank-kraft-phenolic-ring-29400---30020-in.json new file mode 100644 index 0000000000000000000000000000000000000000..b8af487445536420aee3784320f9e1cb7645c2d6 --- /dev/null +++ b/source/parts/detail/y/yank-kraft-phenolic-ring-29400---30020-in.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585c57e56cebf2579d519ec43b9092f62f7001f113d2fd81d4066b4ad144974d +size 469