A parity and smoke harness for AV1, mirroring the H.264 and H.265 legs that proved those rungs bit-identical to libavcodec on four drivers before either ran on glass. This was the milestone's largest test gap: the adversarial review found four blocking defects in the AV1 conversion — flags unset on 274 frames of 274, a units error in LoopRestorationSize, per-reference info describing the wrong picture, film-grain fields left zero — and every one of them would have shown on frame 1 of a parity run, while clippy and 164 green unit tests said nothing at all. The golden is 250 per-frame SHA-256s in DISPLAY order, not 274. The vector carries 274 coded frames in 250 temporal units; the 24 extras are hidden ALTREFs, decoded and referenced but never shown, and the rung delivers what dpb.outputs names. The count is re-derived from the planner rather than assumed. Cross-checked between ffmpeg 8.1.1 on macOS arm64 and 8.0.1 on Linux x86_64, whose raw outputs are byte-identical — and then against a third party neither build knows about: the vendored vector ships upstream's own per-frame MD5s, and re-running those reproduces all 250. The golden agrees with a decode nobody in this program performed. I reproduced both independently before committing. 8-bit NV12, traced from the sequence header rather than presumed (seq_profile 0, high_bitdepth 0, mono_chrome 0), so the P010 scar does not apply here — and the header says which check to make if a Main 10 golden is ever added. film_grain_params_present is 0, which is load-bearing: grain synthesis is part of the Vulkan decode profile, so this golden is only comparable against a grain-less profile key. Anti-vacuity is the point of the exercise, so it is structural. The golden guard asserts the exact count, that every line is a bare digest, and that all entries are DISTINCT — 250 copies of one digest would let a decoder frozen on a single frame pass parity. The parity body asserts the golden set and the access-unit count before it touches hardware, so an IVF reader returning nothing cannot become "0 frames compared, pass". The agent verified the guards fire by mutating the golden three ways. assert_bit_identical now names the FIRST divergent frame, which is what localises a defect; that improves all six legs, not just AV1. AV1 has no four-byte-start-code twin, deliberately: OBUs are length-delimited, so there is no prefix for a driver to mis-skip. Documented where a reader would otherwise see an omission. Nothing here has run on a GPU. The harness exists precisely so the four review defects can be answered by measurement instead of argument.
305 lines
19 KiB
Plaintext
305 lines
19 KiB
Plaintext
# SHA-256 per DELIVERED frame of test-25fps.ivf.av1, DISPLAY order — 250 frames.
|
|
#
|
|
# Each frame is the 320x240 render region as tightly packed NV12:
|
|
# Y plane 320*240 bytes, then interleaved UV 320*120 bytes = 115200 bytes/frame.
|
|
#
|
|
# EIGHT-BIT NV12, not P010. The vector's sequence header carries
|
|
# `high_bitdepth = 0` / `mono_chrome = 0` / `seq_profile = 0`, i.e. Main 4:2:0
|
|
# 8-bit, so the Vulkan pool is VK_FORMAT_G8_B8R8_2PLANE_420_UNORM and one byte
|
|
# per sample is the whole story here. (The ten-bit scar the sibling
|
|
# data/test-main10.p010.sha256 header records — P010's ten bits sit in the HIGH
|
|
# end of each 16-bit word, NOT yuv420p10le's low end — does not arise for this
|
|
# vector, but it is the first thing to check if an AV1 Main-10 golden is ever
|
|
# added beside this one.)
|
|
#
|
|
# NO FILM GRAIN. `film_grain_params_present = 0` in the sequence header, so the
|
|
# golden is grain-free and the Vulkan decode profile this is compared against is
|
|
# the film-grain-DISABLED one (`Av1ProfileKey::film_grain == false`; grain
|
|
# synthesis is part of the Vulkan decode PROFILE, not a per-frame toggle). A
|
|
# vector that gained grain would need its own golden AND a device that offers the
|
|
# grain-enabled profile — it would not merely change these hashes.
|
|
#
|
|
# 250, NOT 274. The vector is 250 temporal units carrying 274 coded frames: 24
|
|
# units carry two frames each, and those 24 extras are HIDDEN frames (decoded,
|
|
# referenced later, never shown — the vector contains no `show_existing_frame` at
|
|
# all, so they are never displayed by any route). The rung delivers DISPLAYED
|
|
# frames, one per `dpb.outputs` id, so the golden is 250 entries in display order
|
|
# and NOT one per coded frame. pf-bitstream's
|
|
# `the_whole_vendored_vector_plans_and_the_frame_count_is_the_parsers` pins all
|
|
# four numbers (250 / 274 / 24 / 250) on CPU, and `gpu_parity.rs`'s
|
|
# `av1_goldens_and_the_ivf_split_agree_with_the_planner` re-derives the 250 from
|
|
# the planner beside this file's line count so the two can never drift apart
|
|
# silently.
|
|
#
|
|
# Generated 2026-08-06 from libavcodec's SOFTWARE decoder (AV1 decoding is exactly
|
|
# specified — every conformant decoder is bit-identical), and CROSS-CHECKED between
|
|
# two independent builds on two architectures whose 28,800,000-byte raw outputs are
|
|
# byte-identical (not merely equal per frame):
|
|
# ffmpeg 8.1.1 (Homebrew, macOS arm64, libdav1d)
|
|
# ffmpeg 8.0.1-3ubuntu2 (Ubuntu x86_64 in the pf-lxcheck2 image via
|
|
# `apt-get install -y ffmpeg`, libdav1d)
|
|
#
|
|
# ffmpeg -i crates/pf-bitstream/vendor/cros-codecs/src/codec/av1/test_data/test-25fps.ivf.av1 \
|
|
# -f rawvideo -pix_fmt nv12 -fps_mode passthrough ref.yuv
|
|
# # then split ref.yuv into 115200-byte frames and sha256 each
|
|
#
|
|
# THIRD, INDEPENDENT CORROBORATION: the vendored vector ships upstream per-frame
|
|
# MD5s beside it (test-25fps.ivf.av1.md5, generated by cros-codecs' own gen_crcs.sh
|
|
# with `-pix_fmt nv12 -f framehash`), produced on other machines by another
|
|
# toolchain at another time. Re-running that command on BOTH builds above
|
|
# reproduces all 250 of those MD5s exactly, so this golden is not just two builds
|
|
# of one opinion — it agrees with a decode nobody here performed.
|
|
#
|
|
# Sibling of data/test-25fps.nv12.sha256 (H.264) and data/test-25fps-h265.nv12.sha256
|
|
# (H.265) and consumed the same way, by the AV1 parity leg in tests/gpu_parity.rs.
|
|
04a9916b634632172d1e21d1bf1f083305e847225d361784a1d4fb46c49d7b1f
|
|
51172eeef06a23063aa881bc6652e43e319c86f954eb21f3cf80d31c3832f365
|
|
9db9cc170509db22fad2436de8afea4bc3601cd645706f21a9a786491ffa4714
|
|
f589376bb225817e337da827ff08d55aec024148691c16589ef135dc74f364d2
|
|
c0ae27f37ccea7405e5508c768c95a96ab44f1e916625f000410f1d82a43912e
|
|
a8cc856dd4c2b4d558871d26fb5501385ce900a9eab4f66efbc7be8f8597912b
|
|
155a58840b546a6c65ae6bdc16523e723dcf50788b92baf813186026e7b39fb3
|
|
48b6c37599f073ad7f6d61f65756d85d82b5b35a1fecc22cd1491f4c3366bffe
|
|
99846bf7c69f3c709621f3c6bbbdf7d385dc5a3736c1702933ea30441c5a2352
|
|
a2f970fc8d340e6978b327f89366660635aec6782b2845c4a5f9319cee79d340
|
|
a3245f047ebff7cacba1baeee09f9eb34977dd578f4a4ef3e4fe40c3601c56be
|
|
39ebba702c84e7a342792a85ff922130335d724597fd48e41f32a471fa76333d
|
|
8540fe45480763d891673ecf99b0dc4ff23fa1f7b1f8e25c7532805141b6ed85
|
|
88a37ad837a0778ec7465405416e06487e2aeebb1307d550a07e5f66498a0721
|
|
9678d42aca9aaf32d7aad049988ba6ec530babfcd547da545b9d8be4a5e2763f
|
|
1f608b7af5d30bdb8e1786af9549b27f216656cb34175f3ab1538c07fe32a91e
|
|
29341aeeac9d91760a3e1aa45a0a91b69a8505a125e236d35476e438b2d8b5f3
|
|
18254332b0d8455bff2edff3c6421beabdebe45ef45a1e4da6155190ffdd8c37
|
|
e731deed91bb66157e2c51eb2ca351801205397922fe99936defe6fe53252daa
|
|
e52cef7ee6f7cb335350743ef4acb5eb2f1e5a1bf5db030f58afd827499be877
|
|
f46832050dec356423266289871b6e1e48e1a8551ab03e879548f7b05f679f1c
|
|
a9505b4fad6f60176131196b37d8d435bb079090e24402b33e96d0ad18676abb
|
|
d41c9853a927e9c215c795050a4eb017fdecf8aee3da5e92ec8a09328ebeff4a
|
|
73dc659f8c749f92acddf83df17deb23c55b81bdaaefe5efe3444de4eab5d6d0
|
|
51728e28c25190da1812d15bd3652a6ff6f07eb1ebffc80a15819913446d7b5c
|
|
861cb38a660b83663dc12da2d806e00a97ea9a17d637285c6f1b66ad66fad16e
|
|
8f05f727c2d601fee4c46230ddea131b06d252acdadb6985ec85665e4452b6ec
|
|
cbb46e9c3ebb5de26151c90c094bf903c1b0e64827610480e891e0857454be86
|
|
16102b7bb0a6188c5a81ca165d160086a7e1235bda2a318bab0492119aa8c494
|
|
bfc34108b13be73ac0d8ffac1414076f5dd79bd4de686b457a95023bbb14f8ed
|
|
6142990f104c14f0f3095f291c9566eeedf650070d722e6da143f594b80931ec
|
|
3b7e155c3862dfa85c2326f643617578094fcc2b9dfb2d655e8cc6b014a4da63
|
|
66e2f3d97f3ece05e56ca37159d9586f08c7034a291fc4b003bfd4195c404fef
|
|
e1cd61fb1b9b0378027a737ab4affaa590830d71fda2c6d8e93e82af7f0e3d19
|
|
c141b82b6f7b20b4928f715819da5c6c4576d7228202a331a1953676295498bc
|
|
28c2b7f4b9fc9653e4ab10cf40b270b14d92e7725370cd3203f92b5ce5531458
|
|
bb4015bd6cf672cd51eb5d30095419b2f4c37de4e299daaec423b5c4c6d3bb92
|
|
bd898e002d41d1539510cdf0820f6757506a781db541e90f793010ca61e633be
|
|
7a2e6dafcc16aab285e11f763871f8d06f653aa437d5a874347fa4f3e2902036
|
|
52389449d67fc312137ab62db2ebfd3a6550eab707bd03c04754b2b69ea0c68a
|
|
c9e44fd4cc038e9ebaad163effdd7e1fa1fb564a7226680418744266eb7beb13
|
|
cc66d3cc8a0ac53b360695ea9f3851a218f659a2bac5a75569c65fb663a2963a
|
|
32bc728bd387325bfc383ff5266e790f59d10cd79f1379da7292e4b5313fac26
|
|
50901e7012c4549cea01c9039568a002b26f0d4861acdda6e1353363fc907b2e
|
|
d7d1c8c9f3d8533119164292583ef7f06490ebfc42f39bfa04100eb13f8dc572
|
|
e861a7eec4472574229a22819f4c5312570eb671babf394b5d71250fbebbd963
|
|
ae4f62b2cb9454d16729cc475fc77717d7863dde2b90295983ee83b7c23945dc
|
|
cc1f95cba3fdf71afe9f4a17f185aea83059091cfeb217dcd83764a02537c98e
|
|
2f01b1a190556fec2760c1bc6b9abd94839e332b6b229178aa8caaad809a76a9
|
|
e7214ac73576798426c38f27936f5222a8f12ff046e4bef4fd7db56765b5cc1b
|
|
cf6c88ec0eac4461d28a3544af15271a960ccc19573ef6cb300cfb9800112f88
|
|
559d96b0d160a10581969136b4abc0d653a39ee45b03fbe1dcb04b5a98d245d8
|
|
15631d150c3215a1fabcf3bf0035314d898a546a2b6a4b2255957202c55bca71
|
|
44bfe0041bf7b233e2c9f39023d617b85ffd227b1922d06eee3e3d158db94426
|
|
c520a61755e0f5e0fd78d2791431b220e131a8b7a095b5a29fed2ff66bf3ef4e
|
|
c9b176c0d8fb92056f6d29e64a0e6f899b646bc5ea397ca09bffde796314d790
|
|
feb41aaa9c0afa2cd36ae45318b70118aec59ac8ef694bef014d224fd4d9970f
|
|
9f00fb66da1f277f88ba31610203e78d9cecdc750bfaf4f773b29a36c3d156b5
|
|
225728f96f584f7a019d2a47b4cc104332d92892ae1f0ff1db2a384f11f8e6e3
|
|
ffaccd50aaed93791506e4db411673303804e3bffd6dce69f1ab0ac9527c26fa
|
|
dd889709e85b4f655365111efb007fe05564548898cbdb4c9328c24508a82eb0
|
|
00c2f8613d319adb52e3fcc59014de4204aac015f549e01013c40f6a74b3af9c
|
|
84f4f2a6b403a2c255979368d0e5ba4840e1647e3bc20c57f88506701c3adab7
|
|
27bd83a287a03570572f1d70f823841802dccac6e92a718dd29d321b36bf4882
|
|
5829642335c09a3d86f280a674e7d559957f40a9327917e5864f8dba5a30819f
|
|
235aa9abe1c41aca79f4a052821a20b3687c6aad26a8921bee251d84645be5bc
|
|
83ea45720f61cd77e6998465929e338a5bba0d94b188441570d76d8b5cd7fc42
|
|
612d69a24cd95badafdc4315e1992f08170a212e1a8d20dbe0f54e73142d64aa
|
|
5130f8cd836552a00e5f296b03bfe511dc3469ec8484b23fe31f787b445aaad0
|
|
b8e25ead0212886654eb57e4949f3e00c3995360019a8270448031648949f7a2
|
|
b370f67f98a36a98b0080beabdac6b0503646e6971f02c971e1de506d414a4c9
|
|
af95d0cd2bb7191275681e284fb85003831b10884c610e84c55860a2497169d2
|
|
f4a1db148944256991a51531620fb107637f2e6ef298ef100a2dde3694c7c7c2
|
|
a1717c8df1ece7821c7202afafa951c184c097f4c0231105a1380ff9cffd3d72
|
|
695261e9aadc259d2a05926b8591235c35939ef89ec4de0e9dcc858988ff7d95
|
|
cdbbc29d212ce0f66ad991615b2fb01d7d3c9c2caa761a9e11f744ed2a4c0115
|
|
e29fa67c173cbc04bf0a3a6d6fbfb2a6c6208fd71f386b8fca5c6adc0adea614
|
|
481b12556e2a0c019a3dae5cece32af4089e077106cd672ceb79630c76f5190d
|
|
848f032dd30b84a12383381a2e689c034377630458651d27f5d3ab946d632389
|
|
7a9a535f138d5a966edb4f27d59faabfbe39d33d92e19c99d1ce58d3b0391d95
|
|
7ccc23f5ee19dbac8be8c6a49145fac7b03d6f3dd19496a4236961098ded7920
|
|
bb4c430d52662df7f2ffaef738c067d489073231834d40b819d58e38c6a44cb4
|
|
0204f817e8e6891657bfcec7b830c244dc9dc028ed753529cc021709a6ac49c7
|
|
4484238b52c1775e3a5436976b00d83f5398e8be0d019c491b383f169e343754
|
|
f78c775cf0da2138af3174b9e36335bdf689af55288002ef64fc5a0cfdce05ea
|
|
ad2934c43eb8e088c1f5f51518fa0254e418b941d1c7218f4611246e0981023c
|
|
d83c3eefe9437fdebdb111401a3622ca6c33a36490079b7a77dea14e04cb01fa
|
|
0b3a39e42415f1181f47f6a9df7e2083a234499a0eecdeb7a073a1421beda8a3
|
|
1ba58406e0e81a9d283b414f3e0cf4c143d2d2b0dbccd6378d1973af864cfedc
|
|
2097812bf91b0cad050ddf2a62cae3eb6713f191bed44d52c1ec594706365268
|
|
90bb9b77ad84af847c7915702755b2e28805f1597d65bb04aac805a7135f4468
|
|
c3a7b4d956edce520afaca9510f206982380617f1328f7b37e94aeb3f6827a5c
|
|
ccc19ee8a386a1fdadf674a87ce519ed490d98b6dd071810f3286a91cf97fd61
|
|
a0dfdd093e1bebc1c3735bd166b9f63bb52373aae85e3ed7cef0207826ed4dfb
|
|
0319dc031150b2f2773743291ca5d9a91f756e0f6224dd6e4da7eb4d88c1bd40
|
|
0c2edd8861e6d3397983c3bdff9dc13d2cae4522197db10401379a8d13898f38
|
|
3393e5f4b352df95d11ad00b70dfd96802c25ea23b9d710623c175a40ad54afc
|
|
1c2e35c9db9c862ba64ff1c7b5086b7178e347c5c68e39c916ddad03c55b9418
|
|
95bbab9230052ba329b42fc4ab2bbd4db437e9cd65bb137b0ef604ec196335f4
|
|
b00716a8f666a443345c03b302a90b6f56cbeac378c03c9b70d92c15f038b4f7
|
|
c9f818bf8f49e67945410573eade3b7efb66cbda16eee10d678ff7cb9bce4b0c
|
|
28aed1c9e7b11922920b407f5b2cf2c7df363e9f793b3961a0142691cb5a20d1
|
|
8dd178787e662d7aade20307db2b089c09f930788ae1a0bf53ff085060c5e8d2
|
|
48336f5699128d39f91dd9de306ebbdf05ff9f8c0e5ed94692fb75454940b388
|
|
6c67cf9ac541919e8330f736922738f38c63adae4b19f3049f76c724bf5acfbe
|
|
56b3569f6c2e7b52b3d87633e1295dd1ea18907e536875643ac07cb262434de0
|
|
316979d5edd9f59ae6d46e75f527a099686ce8e7474009b2962c514479ea8c58
|
|
c24ec25ab6b37e3115ce9e529f6e696270fea37971565543eb93e780da09d905
|
|
9c42b6ef210397982cf52cd2915a687d39e99495cf1276643f270644d2bff2ed
|
|
99135c0c59e8e12487b77325af4151be2cc37a77f06b7912ec3d20bc5526ddb3
|
|
82eff222c286981bf376b18ea879cbf48db197d2fc5e5c2143b8cd6c1122c001
|
|
19bf0af707de5933b49d84595e6e9d0c312ef2479f8eda74cf838099328de201
|
|
bbc769d24c42c68fe33d0a3d0cca2ded31091f9430434f66f74d731a8740ecd6
|
|
f7fafac3d6f77b639528bc29222a3ef495ffa2281ff83071edd6978849138e00
|
|
0f3fda4e040e6ea9431eb659cfb31780afe6b59606dd839e6a1ba42e63e90ccd
|
|
822d68d0a791832aab0cf32ee5db1681d6061bff00ead8803c1cb3beb38b47e2
|
|
3861804dd6152ebf876be7e24868b7e8f38ae4c4f8a35de9cc4db2caff680ade
|
|
fc0827486353b291004ef921f859fed4e158b570dda3c00006f3f654a9c94d46
|
|
88c08db2b7aac161c53c53e10b1a7955c9f34ff7fdb63bdaa018231638d53c80
|
|
e652c08d1ef97bfc4036d24013079e4536b0ab897ce71fee9cdd1aacf873cfe7
|
|
9aa766897bd50812c5ad944f1cbbf85abef921dc177bcbbdb8d5af395729ebbd
|
|
d5aa42f129cf03c4404f63875d6500dae74f142b53f90c493f65f4ea6cd52e29
|
|
f046d91a8520f79b82b6c8127eccc10bdfa8dc33c23de610cb88e685a46dcc9d
|
|
2e5795b34aaca15982aa068acfbf61d6a91adec487e8e58579d04c03504df010
|
|
1feb946111faaf40be12cec1e8d9e3749241a529978fb16d84a024f8363f14a0
|
|
58a18c5b6c68cd7e966404622e9176c6ba03d7a2b351327dd32114d24eedab6c
|
|
a6b592f74134be10420ee0d26a80ce61d6a22b8c858b1f03551f127d469eeb35
|
|
f0aeb9eff65e9a45937d6089ece2d75e2cf08d9723869dd629a85b83f1daf858
|
|
3311498180e377211ebd282c3daea28675d8616c560d233aeb2990f4df3a3157
|
|
bad41313546387ae30b83aad7aedc854fa2761fb18db2f62b8b4f060c84a6bac
|
|
444ef76a1b0fc74a410b5bce137d05e073a4461ca10f29406ae47bdcbd6f0b9d
|
|
9b45c7c24a19132a9fb2f9833801319ec6fca92dab61c18ca6c8eb6c52b5cbb5
|
|
88f4546ddedf5363d5d267db4a5659986f59c0f559563b11b164fb2e67156467
|
|
a3597d945ee641d1016f42b02db41f93e12a41d49008103119a479fc1a1d64d3
|
|
79c3e3c8aed31550eb0d2fb8762aa0350f7aaeb107fe5c2eac577b39c2cd8d72
|
|
ff483d3e8ba9af42c26233ef67e4d755d64245a68d580c2c1903cbbb9746dfb5
|
|
8572121897bd614f3efa03ef6767f3e21695f2cf48b2476560dfaea16c281762
|
|
fbd251b057a3156b32d9d5565da046dadc8ac51892d9c77b74851b31c7c08053
|
|
f34de916154676ceda653796b53fb2fe9f892094759dd3939279b4c7d512f9a0
|
|
eaccd92e77fcc29f32f202d93e7dae85382397098377e23051f9e0dbba31b34d
|
|
fe83002ddfdaedc72986f35f7703cff06a67a4ffa034b7aedddd394b731dccfc
|
|
cd23524ffe622557dc33e36b40af70d8726e124bcfe2e26d54d4e2c3b3b19417
|
|
5a858bbe9916be0e0c5e1460ed6e7bb227a6c4a939005dba78a0f6f3a4029215
|
|
e04e68822bc3a196507df77f4a206918438eddef2404e608cfa5c7ee8922c57b
|
|
c3c8f51b5b2b2374316c9b2ac39c0d9464f01a220c5d8c5ff6b455aaaf45ccde
|
|
146cd43a435e663d6eaf36975e5bb2ea5019891aeaaa762fffada09df61c848b
|
|
d2d4b3246c184c3b219abfbd48634107aa0aa426fb190c23aae3f088867371e6
|
|
be86426ad5e44ab73ed6f058625ab920836b532b9634aca82a4a1343342372b2
|
|
34114cecdd6017b74adb6701f9622bc7fba27aa3410c2373479ba5e0540d267d
|
|
35017238c99551d827d7dacbef35ed6076630049b165ae83180eb71d81e7823e
|
|
058069a3afb141b4158815205f6a74ff1c94318cd4177abbe0c540e5ce70653d
|
|
d6b3d6d433ed65df97f9c33a761a31507e5d98db07c632c052518efc1956a099
|
|
e3c8746bbf9ae6f2c620bbcfb07e854d6e75741350df8cf37b57699c000c687c
|
|
73d5cf36367ba4e506e2ad34891202da22fe77980ebc4b5d4a4f081f5616726c
|
|
abdf3028d25ba750b9295bd1aea2686a15c8f8ba464eb60710b40053279e1bb6
|
|
bc324cc77981f01c72f620c5cc1dd85334f781eafdb8a89b012d8e08216b62a4
|
|
5108ff93f95752c540859a23c31822107398a38f7629f9805cde7d0e826471d6
|
|
0b82dc51c686bd6c062ee38ba028d2abb5d7bd3fe66611294d281b3a2afe581e
|
|
efad4f5d6f244eeabaaef316640b123b591297bbc84c3b3fade3fc18d8a35df9
|
|
b034a1c107559c8f444e1791dc5e3c73664d9f05c945b3ed0e237c94fee5cabd
|
|
f6423105f012a404af935e7a7385095579fe417a27b932372bc357d01bd0ec5e
|
|
ef421cd426de02948ff7cf456e9a69f3665e6be7d1a3f0ea42821e62a3faa44d
|
|
8c5f37b28e980057d5f168514f4031283c1bc45e0f5d28ef97640507156e4999
|
|
a40ffe4ad42e22f4e79ab1d4565848957bb4526d8dd68016796c86eb7006c4a4
|
|
7c193d2d343bfdc36dae5e3f49b2f73b1c77d9b41a1493fb88d1df5a8ed2f95c
|
|
7b316fb7c9be2138fd04cc55ed2ecd4158e46239062f2890d3262dbb73996f86
|
|
511cc99acfd3c66096d01e1225d3eab1f9ff1a14fcc84a5e8606813da3a4d5bb
|
|
2f3799815a546dced31bdf70749462fdc81642142b393f893856afe40f1ca764
|
|
1bb241bcbd388fe6ca5c6d6070d0526dac14abb6569dec2eb036cfe3bba694bd
|
|
4267b825cb3a692eda0d1bd75d48f6d1f74de5c256434192c9ae27220d552ab8
|
|
294a8e9277ae256c7e519515deaef45a2c41ce223864c9468db54c8e44233045
|
|
ce0842add29867140313f607508076ae9fd4b7f3ed7117a0c969cdfdcda47aca
|
|
15b4e0600d0cef8591e53681c92aedaaec419b202094533935cf52fd3419282d
|
|
2a2f74a4d066a09c26677867345d64edf41dc5f419e0fec3b2f4618708164585
|
|
9852a0524833dc3e60d68924558ad424b9d6fd498351b926db7c3b9501b79e97
|
|
6fd26a7b2c5fded3688130e003560a8ddd58d0f9bc2906ec1b679842d1cf16c5
|
|
7bf43d1d54f813057713c66ed1ac69060c26ee9dbfa10de7bee70f1272e4c4cd
|
|
ae3dd2cfb8d7ebf28fbee064b9ee95e8ebc555e479c48a6b64e1e453f4951bf7
|
|
93850ae80180f782c311c182d21207991df3db3b17d9f76af910ac655ae5c1fa
|
|
e8dc4065580d4e764de7efc30498824cd2e1a3bc32db46211c8f8128182d41d7
|
|
d154299c13772040f936fc48ac1c84001baad3ba97f42c935f34e49eb5f647c1
|
|
daf8fe6bb8f25a1c4e07829fd7bd282ece7ac184c4671465036c102814c03ddf
|
|
fc73ca6be0515992d070467b0f099c075f733d85d3d2202e333c20dcde11e5cf
|
|
f1d624e05f1d4bbd19595e52d33c6ee9cf655bd7a830078a5d989f88d5e7fcff
|
|
9457a3d05a76811600fae446c1391963aa411ac2ce4e53784af7b5a688625fdc
|
|
b153bd9cccfd998ca9bfe291fe12f3c234fdfa342e4124c3575d1e35443ea669
|
|
274f46071fda32c474cddbd234b837a0aacb3c57638eb6d5079cf1ffbea1651c
|
|
874d47f84440c15fdd0c37d2c20d471e1675de27671208e007c8507ea0d7a313
|
|
77c47246000c7168b87adeca3b5c5d80e8a5e9d723086a73ed99a14d01ac272c
|
|
ec77435e3a8469c287bffecfac6c0e08505a467da7f4b6d09ab3248f1c1d47a8
|
|
013c86ff9eed9007d8d44fd15fd4b050958e7737a65add691c126cbba7ad10f7
|
|
b7adacbe6bbb4a33f0346215f67566fe4e6adcd43c221bcdf6cc112b07323396
|
|
d37d05cebb4b4145b1934555a064069659c8a6c91854c5e207ff4e065c4df4ce
|
|
6c377b3e07d0b16a73ff58ea7cb50fc50c49aa38cccc7dba6f8c14db16139655
|
|
1988b08348836747be71e0828dd0ef306c437043eda757eb5baa0cf3af860dc0
|
|
f49648f9d652552863ac10227bbfe5c29d43c8c7e2dd436d30cca8adcdcaa40f
|
|
c8e47679b7d12b5335e24f86ee4f4a37d9bfae6ff70c99b92cba16960169fe82
|
|
e1c353d3fd564e699359b4d5046b26a5e26323192a7a9b43be685ffbc60959ef
|
|
c87c2abb582a2969f68b46a98815f4e0bc8d003fc2fec32a529126fb07e63be0
|
|
d88be32ee96a5b0eb436042b3ad8017c48abf3d1fdf8cda290fb3ba3fcae5618
|
|
cab86bce00ce96e259056298408e2bf51026801b3985be7187b927ba1433e5b1
|
|
93b729c6995d3576c286de166850681592876dfa30bd7d2cd979aa510de00964
|
|
cd610cb405436263464bf116632a2dd71ae379efe1f38d66238308c82941a8e9
|
|
1925666c067fada0dc9dcb9019198829071229aa7ffadd6aca98c1b918a88a3c
|
|
c975916319c5b80581908e88483d301c977f2b463a71f2554597bcb0e133924d
|
|
2f28cc1210626c92c5720c9013ad4e610383911f5a8f8786dd7ae85e70ae11db
|
|
9c826990635030face0b4016d139bab00be992debbf2cc5ae17d55ba6c3c2bc8
|
|
7710fdb6e25f11880b021afe45244f128df67b750f634598e3902edb184dd2f7
|
|
59d739493f8d60822d323b4236dc38073e3c231b5c1ce90ef2b2744afe503c3d
|
|
e8b7bcf58d95f3d7ff5b26ea7c5bf82583f4cfe752569ae97904c668dd2880cc
|
|
b537e54d9368c2a70ae6bd37c16d7d55476c1aa25247b191db34c03723d7cc89
|
|
9d5b75f00298e2d088f4a47b8422c31f793e3c7be0093ba696c9234e213b1f45
|
|
70cab03ae1fb6d1d8d4f090dab142ed3bb8079b924564513cd65ad2d1ff50ebe
|
|
2699bb193449fb1b85afc49e0504cd84cab903b4329a15fd3cb423ec27eca250
|
|
5f23520761f8ac1b09e9da8dd3cc85753f12921320b76e3bb534e8f375d71e17
|
|
746f5bd533e793d2604bebd0e1514bec7865e92c58ea1abe554e30b27abdaf0f
|
|
d9bd51b37c524ef653c108be5a4c5e38c4bf16da7328a0e3f88a520298975bf5
|
|
45a7ea96e52ab5344bb5b9b69088123861b4f29d94b918b3fc895280a258022b
|
|
29c2b08cae2f068b818792e27b5ec01e2fded550a531ecbc9385db925e9269b6
|
|
7b6169487d371b695f2e3837cc2a2e4d6fe52a6bc6f6949ee9ee36212de897c3
|
|
021b8dd7a86360029f7028571c9e3226057a61909b67b1471610d354eb49e270
|
|
18c55b4d764148e3052f1232d068a542697b30f0b522d5e544ffd6e41fb62314
|
|
f374d94bb22cf9cfdb7ace086f4e9c4e9e30bdcfab544eaefa2d23c1a39995d4
|
|
ddb1802bc2645c54f916ba144fd96141f1705fab084ff645e11ecdabe4788d48
|
|
5cde86b5f8a25c323774e8ba27a5cb4158f1bad5da8b75d9a530f476ddd9cb72
|
|
197389c50e97878feaf583df1d5ef5b0f48154207c40dba89c6a72f9ed367924
|
|
5459967d1c6b9f1dfa95e7b4564907fa1e9f42a31d77856402fb0af27c81e5aa
|
|
647006388c6fa8f6a69b432172b31ee56835b53ba9a4d2a8d7646eba8d699424
|
|
6d4e9ef701148328c0ba14ac0a62b41ae96babe384542731ff8b7c5ef46fe63c
|
|
b6d3de098262e4d24011095345bf3bac97433401a1d96f0233b79c7e48ba55a7
|
|
f4a81172ff9454e221b669c822ab3b5f76cdd8e62d3fa923e42eaaa58e60e6b2
|
|
053ee6f10d5d37d451656c6e25c33110296f02bd5e2461ea710cd049006b224b
|
|
b2ac14a086577e381e80865a66cce66300b72e961a1d7b8a817b9f4f5189d71d
|
|
ceebdccc9606c9d6d59f0b8b27b8f7da95107d27864e9e1fef6d4d5379039e7a
|
|
431569f73856c9478390635049ef07fc73a7b9ad2f0e58e71b806068e93fd844
|
|
be4474bcf98e5112f903d54799dec8f6e8b738a6e9d901e6cbe2c1e99f886c7a
|
|
9be9d34ab68928b3fccb05e1863fcd2a8302400b748f3d4de0411c614fca0673
|
|
de433edf968140c2f32a4ad3cedb5153cc4e65a7d846cee1d621ef7cd5e1ce25
|
|
1fc5889fa4fc6aa5111cb3c816a75feea5fd7159a0090d950a50935045cb2de2
|
|
df8ad0344cc492f244ef63288517116db1404f5bac56f362ee214ff41062f6ba
|
|
4c7a7ad1a5ebe5c7fa2c075a95b13e67418ddd3ee95c72fbca66b36150daeb63
|
|
07c6d9e6128d4844d7665e3a12d8d9d67a104cc4bb0a7a14a34c8355aebaa486
|
|
5583161f61a665f7d03ceca5b878621942659303c856245887bca36adab7f834
|
|
59687559c0c38a27cc79c6d72e77d238569427a040d992d28c22a70d34dd918b
|
|
a3485384bb20822e4b0e67f95764cd765884912149c2cd3b89d5072023044b08
|
|
21b3d28c3324e7c2e97106e8459eb8bc56946a326fd584049e8ff93007efc368
|
|
207bba7349318b67dc97af31762acb76a8718ef4749dbbbe51240abea6d03c72
|
|
c60a83c60c28e3b173a6a2e4548ce11e4760f99ea740b1900697d946136d86bd
|
|
36c83d820c97b467810e84727782fbc64b355a0692acac00621bb8817dd08080
|
|
2917e0ad1745f53b79359df1be6886138d54219e01ddcca28525d6187ef7cf40
|