From 613021b37f62ea5d059745ece2167bddd37c6dcb Mon Sep 17 00:00:00 2001 From: Seppo Ingalsuo Date: Mon, 2 Oct 2023 11:51:31 +0300 Subject: [PATCH] Tools: Topology2: Add widget class TDFB This patch adds the class for the Time domain fixed beamformer (TDFB) and example blobs for line arrays. Signed-off-by: Seppo Ingalsuo --- .../topology2/include/components/tdfb.conf | 175 +++ .../tdfb/line2_50mm_azm90_90_13_16khz.conf | 362 +++++ .../tdfb/line2_50mm_azm90_90_13_48khz.conf | 518 +++++++ .../tdfb/line2_50mm_pm0_30_90deg_16khz.conf | 258 ++++ .../tdfb/line2_50mm_pm0_30_90deg_48khz.conf | 258 ++++ .../tdfb/line2_50mm_pm90deg_16khz.conf | 93 ++ .../tdfb/line2_50mm_pm90deg_48khz.conf | 93 ++ .../include/components/tdfb/line2_pass.conf | 14 + .../tdfb/line4_28mm_azm90_90_13_16khz.conf | 698 ++++++++++ .../tdfb/line4_28mm_azm90_90_13_48khz.conf | 1218 +++++++++++++++++ .../tdfb/line4_28mm_pm90deg_16khz.conf | 172 +++ .../tdfb/line4_28mm_pm90deg_48khz.conf | 172 +++ .../include/components/tdfb/line4_pass.conf | 16 + 13 files changed, 4047 insertions(+) create mode 100644 tools/topology/topology2/include/components/tdfb.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line2_50mm_azm90_90_13_16khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line2_50mm_azm90_90_13_48khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line2_50mm_pm0_30_90deg_16khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line2_50mm_pm0_30_90deg_48khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line2_50mm_pm90deg_16khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line2_50mm_pm90deg_48khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line2_pass.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line4_28mm_azm90_90_13_16khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line4_28mm_azm90_90_13_48khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line4_28mm_pm90deg_16khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line4_28mm_pm90deg_48khz.conf create mode 100644 tools/topology/topology2/include/components/tdfb/line4_pass.conf diff --git a/tools/topology/topology2/include/components/tdfb.conf b/tools/topology/topology2/include/components/tdfb.conf new file mode 100644 index 000000000000..aa8a39a82b3c --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb.conf @@ -0,0 +1,175 @@ +# +# +# A generic Time Domain Fixed Beamformer (TDFB) component. All attributes +# defined herein are namespaced by alsatplg to +# "Object.Widget.tdfb.attribute_name" +# +# Usage: this component can be used by declaring in the parent object. i.e. +# +# Object.Widget.tdfb."N" { +# index 1 +# } +# } + +# +# Where M is pipeline ID and N is a unique integer in the parent object. + + + + +Class.Widget."tdfb" { + # + # Pipeline ID + # + DefineAttribute."index" { + type "integer" + } + + # + # Unique instance for TDFB widget + # + DefineAttribute."instance" { + type "integer" + } + + # Include common widget attributes definition + + + attributes { + !constructor [ + "index" + "instance" + ] + !mandatory [ + "num_input_pins" + "num_output_pins" + "num_input_audio_formats" + "num_output_audio_formats" + ] + + !immutable [ + "uuid" + "type" + ] + !deprecated [ + "preload_count" + ] + unique "instance" + } + + # + # tdfb widget switch control + # + Object.Control { + # Switch controls + mixer."1" { + Object.Base.channel.1 { + name "fc" + shift 0 + } + Object.Base.ops.1 { + name "ctl" + info "volsw" + #259 binds the mixer control to switch get/put handlers + get 259 + put 259 + } + max 1 + } + mixer."2" { + Object.Base.channel.1 { + name "fc" + shift 0 + } + Object.Base.ops.1 { + name "ctl" + info "volsw" + #259 binds the mixer control to switch get/put handlers + get 259 + put 259 + } + max 1 + } + + # Enum controls + enum."1" { + Object.Base { + channel.1 { + name "fc" + reg 3 + shift 0 + } + text.0 { + name "tdfb_enum_plus_minus_90_text" + !values [ + "-90" + "-75" + "-60" + "-45" + "-30" + "-15" + "0" + "15" + "30" + "45" + "60" + "75" + "90" + ] + } + ops.1 { + name "ctl" + info "enum" + #257 binds the mixer control to enum get/put handlers + get 257 + put 257 + } + } + } + enum."2" { + Object.Base { + channel.1 { + name "fc" + reg 3 + shift 0 + } + text.0 { + name "mytext" + !values [ + "-90" + "-75" + "-60" + "-45" + "-30" + "-15" + "0" + "15" + "30" + "45" + "60" + "75" + "90" + ] + } + ops.1 { + name "ctl" + info "enum" + #257 binds the mixer control to enum get/put handlers + get 257 + put 257 + } + } + } + } + + # + # Default attributes for tdfb + # + + # dd511749-d9fa-455c-b3a7-13585693f1af + uuid "49:17:51:dd:fa:d9:5c:45:b3:a7:13:58:56:93:f1:af" + type "effect" + no_pm "true" + num_input_pins 1 + num_output_pins 1 +} diff --git a/tools/topology/topology2/include/components/tdfb/line2_50mm_azm90_90_13_16khz.conf b/tools/topology/topology2/include/components/tdfb/line2_50mm_azm90_90_13_16khz.conf new file mode 100644 index 000000000000..45b7f92588a8 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line2_50mm_azm90_90_13_16khz.conf @@ -0,0 +1,362 @@ +# Created with script example_line_array.m 23-Oct-2023 +# cd tools/tune/tdfb; octave --no-window-system example_line_array.m +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0x04,0x0b,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x0b,0x00,0x00,0x02,0x00,0x02,0x00, + 0x01,0x00,0x02,0x00,0x0d,0x00,0x01,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x0a,0x00,0x42,0x00,0x59,0x00, + 0x12,0x01,0xef,0x00,0x6b,0x02,0xa9,0x01, + 0x1c,0x04,0x02,0x03,0xa7,0x08,0x38,0x04, + 0x30,0x0b,0x40,0x03,0x58,0x0b,0x31,0xfb, + 0x52,0x0f,0x92,0xed,0xe6,0x34,0x51,0x69, + 0x07,0xe4,0x0b,0x0c,0x08,0xf2,0xc7,0x02, + 0x01,0xf2,0x51,0xfb,0xe9,0xf3,0x75,0xfa, + 0xc7,0xf6,0x63,0xfd,0xdb,0xfa,0xee,0xfd, + 0xce,0xfc,0xb5,0xfe,0x61,0xfe,0x68,0xff, + 0x70,0xff,0xdb,0xff,0xf1,0xff,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf4,0xff,0xcd,0xff,0x8e,0xff,0x2d,0xff, + 0xbd,0xfe,0x24,0xfe,0x99,0xfd,0xd3,0xfc, + 0x61,0xfc,0x29,0xfb,0x9b,0xf8,0xda,0xf7, + 0x9b,0xf7,0xe7,0xf6,0x19,0xf9,0xf1,0xfb, + 0x5e,0xfc,0xad,0xfd,0xbb,0xfe,0xcb,0x7f, + 0x41,0x01,0x43,0x02,0x7e,0x03,0xd9,0x03, + 0x71,0x06,0x5c,0x08,0x95,0x07,0x38,0x07, + 0x69,0x06,0x17,0x04,0xf9,0x02,0x83,0x02, + 0xd1,0x01,0x53,0x01,0xd3,0x00,0x79,0x00, + 0x33,0x00,0x0d,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x0a,0x00,0x3e,0x00,0x5c,0x00, + 0x02,0x01,0xfa,0x00,0x47,0x02,0xc4,0x01, + 0xdc,0x03,0xf2,0x02,0x2a,0x08,0xb0,0x04, + 0x73,0x0a,0x16,0x04,0x24,0x0a,0xde,0xfc, + 0xec,0x0c,0xf9,0xf1,0x4e,0x27,0x6c,0x72, + 0x53,0xe7,0x10,0x0a,0xa3,0xf3,0xec,0x01, + 0xa0,0xf3,0x9e,0xfa,0xb2,0xf4,0x13,0xfa, + 0x4b,0xf7,0x29,0xfd,0x2b,0xfb,0xce,0xfd, + 0xfc,0xfc,0xa6,0xfe,0x78,0xfe,0x63,0xff, + 0x78,0xff,0xda,0xff,0xf2,0xff,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf4,0xff,0xcf,0xff,0x90,0xff,0x32,0xff, + 0xc3,0xfe,0x2f,0xfe,0xa2,0xfd,0xe7,0xfc, + 0x68,0xfc,0x63,0xfb,0xcb,0xf8,0xea,0xf7, + 0xb9,0xf7,0xff,0xf6,0x81,0xf9,0xf9,0xfb, + 0x6b,0xfc,0xb2,0xfd,0xbf,0xfe,0xcb,0x7f, + 0x3d,0x01,0x3e,0x02,0x71,0x03,0xd1,0x03, + 0x11,0x06,0x46,0x08,0x79,0x07,0x2a,0x07, + 0x40,0x06,0xe7,0x03,0xf3,0x02,0x74,0x02, + 0xca,0x01,0x4b,0x01,0xcf,0x00,0x76,0x00, + 0x32,0x00,0x0c,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x0b,0x00,0x30,0x00,0x6a,0x00, + 0xc7,0x00,0x29,0x01,0xbe,0x01,0x32,0x02, + 0xf1,0x02,0x48,0x03,0xd9,0x05,0xbd,0x06, + 0x6e,0x07,0x7c,0x07,0x52,0x05,0x34,0x03, + 0x00,0x04,0xf1,0x00,0xb2,0x03,0xb1,0x7f, + 0x4e,0xfc,0xfa,0xfe,0xcb,0xfb,0x9b,0xfc, + 0x2a,0xfa,0xc5,0xf7,0xcb,0xf7,0x58,0xf8, + 0x57,0xf9,0x26,0xfc,0x68,0xfc,0x3b,0xfd, + 0xb2,0xfd,0x5f,0xfe,0xcf,0xfe,0x47,0xff, + 0x95,0xff,0xd4,0xff,0xf5,0xff,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf5,0xff,0xd3,0xff,0x97,0xff,0x43,0xff, + 0xd6,0xfe,0x54,0xfe,0xc0,0xfd,0x27,0xfd, + 0x84,0xfc,0x01,0xfc,0x77,0xf9,0x28,0xf8, + 0x0e,0xf8,0x77,0xf7,0xae,0xfa,0x06,0xfc, + 0xa1,0xfc,0xc1,0xfd,0xd2,0xfe,0xcb,0x7f, + 0x2a,0x01,0x31,0x02,0x3e,0x03,0xc4,0x03, + 0xf8,0x04,0xd8,0x07,0x2d,0x07,0xf3,0x06, + 0xaa,0x05,0x61,0x03,0xdc,0x02,0x41,0x02, + 0xb3,0x01,0x30,0x01,0xc3,0x00,0x6c,0x00, + 0x2f,0x00,0x0b,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x0d,0x00,0x1a,0x00,0x7b,0x00, + 0x6a,0x00,0x67,0x01,0xe3,0x00,0xca,0x02, + 0x5f,0x01,0x71,0x04,0xb4,0x01,0xf4,0x08, + 0x70,0x03,0x9b,0x0b,0x08,0xff,0xb7,0x0a, + 0x50,0xf9,0x18,0x11,0x01,0xe7,0xb4,0x67, + 0x58,0x37,0x6b,0xe8,0xaf,0x0a,0x2c,0xf3, + 0x73,0x03,0xfd,0xf4,0x8f,0xfc,0xd5,0xf5, + 0x90,0xfc,0xba,0xfa,0x6e,0xfe,0x6d,0xfc, + 0xd5,0xfe,0xfd,0xfd,0x5b,0xff,0x22,0xff, + 0xc5,0xff,0xcc,0xff,0xfa,0xff,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf6,0xff,0xda,0xff,0xa6,0xff,0x61,0xff, + 0xfb,0xfe,0x96,0xfe,0x01,0xfe,0x95,0xfd, + 0xd9,0xfc,0xc7,0xfc,0xd9,0xfa,0xcf,0xf8, + 0x7e,0xf8,0xe5,0xf8,0x30,0xfc,0x45,0xfc, + 0x12,0xfd,0xe1,0xfd,0xf7,0xfe,0xcb,0x7f, + 0x05,0x01,0x11,0x02,0xd0,0x02,0x89,0x03, + 0x90,0x03,0x87,0x06,0xc8,0x06,0x5f,0x06, + 0x77,0x04,0xb9,0x02,0x96,0x02,0xea,0x01, + 0x83,0x01,0x02,0x01,0xab,0x00,0x5b,0x00, + 0x29,0x00,0x09,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x05,0x00,0x26,0x00,0x31,0x00, + 0xa3,0x00,0x8a,0x00,0x7d,0x01,0xf8,0x00, + 0x97,0x02,0x2c,0x01,0x24,0x04,0xc0,0x03, + 0xd3,0x07,0xe4,0x00,0xf9,0x05,0xf7,0xfd, + 0xad,0x08,0xf6,0xf6,0xb1,0x18,0xf1,0x79, + 0x96,0xed,0x60,0x07,0x7e,0xf7,0x9d,0x01, + 0xbc,0xf9,0xcf,0xfd,0xea,0xf6,0x58,0xfc, + 0xb7,0xfb,0x70,0xfe,0xe8,0xfc,0xba,0xfe, + 0x12,0xfe,0x3c,0xff,0x0c,0xff,0xaa,0xff, + 0xad,0xff,0xeb,0xff,0xf7,0xff,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf9,0xff, + 0xe4,0xff,0xbe,0xff,0x8a,0xff,0x3e,0xff, + 0xed,0xfe,0x7f,0xfe,0x25,0xfe,0xaf,0xfd, + 0x79,0xfd,0xdb,0xfc,0x4f,0xfa,0x40,0xf9, + 0xae,0xfb,0x41,0xfd,0x2c,0xfd,0xc3,0xfd, + 0x3d,0xfe,0x26,0xff,0xcb,0x7f,0xd7,0x00, + 0xb8,0x01,0x27,0x02,0xae,0x02,0x91,0x02, + 0xf8,0x03,0x19,0x06,0x0b,0x05,0xba,0x02, + 0x23,0x02,0xe7,0x01,0x78,0x01,0x23,0x01, + 0xc3,0x00,0x7f,0x00,0x43,0x00,0x1e,0x00, + 0x07,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x07,0x00,0x01,0x00,0x46,0x00, + 0x00,0x00,0xd5,0x00,0xfd,0xff,0xb5,0x01, + 0xc9,0xff,0xda,0x02,0x39,0xff,0x7d,0x04, + 0xf2,0x00,0xda,0x06,0x8c,0xfb,0x4e,0x09, + 0xb1,0xf6,0xa6,0x10,0x6b,0xe5,0x9e,0x61, + 0x55,0x3f,0x91,0xe7,0xf2,0x0c,0xf4,0xf4, + 0x8b,0x05,0x22,0xf9,0x4a,0x01,0x4f,0xf8, + 0x52,0x01,0x67,0xfc,0x74,0x00,0xbd,0xfd, + 0x17,0x00,0xc2,0xfe,0x01,0x00,0x7f,0xff, + 0xff,0xff,0xe2,0xff,0x00,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xfc,0xff, + 0xf0,0xff,0xde,0xff,0xbe,0xff,0x9f,0xff, + 0x5e,0xff,0x3b,0xff,0xe8,0xfe,0xe2,0xfe, + 0x68,0xfe,0xc2,0xfe,0xd6,0xfc,0x87,0xfb, + 0x8f,0xfe,0x32,0xfe,0xa8,0xfe,0xae,0xfe, + 0x11,0xff,0x5f,0xff,0xcb,0x7f,0x9f,0x00, + 0xe9,0x00,0x45,0x01,0x46,0x01,0xaf,0x01, + 0x53,0x01,0x0a,0x04,0xcd,0x02,0x13,0x01, + 0x59,0x01,0xeb,0x00,0xde,0x00,0x95,0x00, + 0x73,0x00,0x3f,0x00,0x26,0x00,0x0f,0x00, + 0x04,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xcb,0x7f,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xcb,0x7f,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xfc,0xff,0xf0,0xff,0xde,0xff, + 0xbe,0xff,0x9f,0xff,0x5e,0xff,0x3b,0xff, + 0xe8,0xfe,0xe2,0xfe,0x68,0xfe,0xc2,0xfe, + 0xd6,0xfc,0x87,0xfb,0x8f,0xfe,0x32,0xfe, + 0xa8,0xfe,0xae,0xfe,0x11,0xff,0x5f,0xff, + 0xcb,0x7f,0x9f,0x00,0xe9,0x00,0x45,0x01, + 0x46,0x01,0xaf,0x01,0x53,0x01,0x0a,0x04, + 0xcd,0x02,0x13,0x01,0x59,0x01,0xeb,0x00, + 0xde,0x00,0x95,0x00,0x73,0x00,0x3f,0x00, + 0x26,0x00,0x0f,0x00,0x04,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00, + 0x01,0x00,0x46,0x00,0x00,0x00,0xd5,0x00, + 0xfd,0xff,0xb5,0x01,0xc9,0xff,0xda,0x02, + 0x39,0xff,0x7d,0x04,0xf2,0x00,0xda,0x06, + 0x8c,0xfb,0x4e,0x09,0xb1,0xf6,0xa6,0x10, + 0x6b,0xe5,0x9e,0x61,0x55,0x3f,0x91,0xe7, + 0xf2,0x0c,0xf4,0xf4,0x8b,0x05,0x22,0xf9, + 0x4a,0x01,0x4f,0xf8,0x52,0x01,0x67,0xfc, + 0x74,0x00,0xbd,0xfd,0x17,0x00,0xc2,0xfe, + 0x01,0x00,0x7f,0xff,0xff,0xff,0xe2,0xff, + 0x00,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xf9,0xff,0xe4,0xff,0xbe,0xff, + 0x8a,0xff,0x3e,0xff,0xed,0xfe,0x7f,0xfe, + 0x25,0xfe,0xaf,0xfd,0x79,0xfd,0xdb,0xfc, + 0x4f,0xfa,0x40,0xf9,0xae,0xfb,0x41,0xfd, + 0x2c,0xfd,0xc3,0xfd,0x3d,0xfe,0x26,0xff, + 0xcb,0x7f,0xd7,0x00,0xb8,0x01,0x27,0x02, + 0xae,0x02,0x91,0x02,0xf8,0x03,0x19,0x06, + 0x0b,0x05,0xba,0x02,0x23,0x02,0xe7,0x01, + 0x78,0x01,0x23,0x01,0xc3,0x00,0x7f,0x00, + 0x43,0x00,0x1e,0x00,0x07,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00, + 0x26,0x00,0x31,0x00,0xa3,0x00,0x8a,0x00, + 0x7d,0x01,0xf8,0x00,0x97,0x02,0x2c,0x01, + 0x24,0x04,0xc0,0x03,0xd3,0x07,0xe4,0x00, + 0xf9,0x05,0xf7,0xfd,0xad,0x08,0xf6,0xf6, + 0xb1,0x18,0xf1,0x79,0x96,0xed,0x60,0x07, + 0x7e,0xf7,0x9d,0x01,0xbc,0xf9,0xcf,0xfd, + 0xea,0xf6,0x58,0xfc,0xb7,0xfb,0x70,0xfe, + 0xe8,0xfc,0xba,0xfe,0x12,0xfe,0x3c,0xff, + 0x0c,0xff,0xaa,0xff,0xad,0xff,0xeb,0xff, + 0xf7,0xff,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf6,0xff,0xda,0xff, + 0xa6,0xff,0x61,0xff,0xfb,0xfe,0x96,0xfe, + 0x01,0xfe,0x95,0xfd,0xd9,0xfc,0xc7,0xfc, + 0xd9,0xfa,0xcf,0xf8,0x7e,0xf8,0xe5,0xf8, + 0x30,0xfc,0x45,0xfc,0x12,0xfd,0xe1,0xfd, + 0xf7,0xfe,0xcb,0x7f,0x05,0x01,0x11,0x02, + 0xd0,0x02,0x89,0x03,0x90,0x03,0x87,0x06, + 0xc8,0x06,0x5f,0x06,0x77,0x04,0xb9,0x02, + 0x96,0x02,0xea,0x01,0x83,0x01,0x02,0x01, + 0xab,0x00,0x5b,0x00,0x29,0x00,0x09,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00, + 0x1a,0x00,0x7b,0x00,0x6a,0x00,0x67,0x01, + 0xe3,0x00,0xca,0x02,0x5f,0x01,0x71,0x04, + 0xb4,0x01,0xf4,0x08,0x70,0x03,0x9b,0x0b, + 0x08,0xff,0xb7,0x0a,0x50,0xf9,0x18,0x11, + 0x01,0xe7,0xb4,0x67,0x58,0x37,0x6b,0xe8, + 0xaf,0x0a,0x2c,0xf3,0x73,0x03,0xfd,0xf4, + 0x8f,0xfc,0xd5,0xf5,0x90,0xfc,0xba,0xfa, + 0x6e,0xfe,0x6d,0xfc,0xd5,0xfe,0xfd,0xfd, + 0x5b,0xff,0x22,0xff,0xc5,0xff,0xcc,0xff, + 0xfa,0xff,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf5,0xff,0xd3,0xff, + 0x97,0xff,0x43,0xff,0xd6,0xfe,0x54,0xfe, + 0xc0,0xfd,0x27,0xfd,0x84,0xfc,0x01,0xfc, + 0x77,0xf9,0x28,0xf8,0x0e,0xf8,0x77,0xf7, + 0xae,0xfa,0x06,0xfc,0xa1,0xfc,0xc1,0xfd, + 0xd2,0xfe,0xcb,0x7f,0x2a,0x01,0x31,0x02, + 0x3e,0x03,0xc4,0x03,0xf8,0x04,0xd8,0x07, + 0x2d,0x07,0xf3,0x06,0xaa,0x05,0x61,0x03, + 0xdc,0x02,0x41,0x02,0xb3,0x01,0x30,0x01, + 0xc3,0x00,0x6c,0x00,0x2f,0x00,0x0b,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00, + 0x30,0x00,0x6a,0x00,0xc7,0x00,0x29,0x01, + 0xbe,0x01,0x32,0x02,0xf1,0x02,0x48,0x03, + 0xd9,0x05,0xbd,0x06,0x6e,0x07,0x7c,0x07, + 0x52,0x05,0x34,0x03,0x00,0x04,0xf1,0x00, + 0xb2,0x03,0xb1,0x7f,0x4e,0xfc,0xfa,0xfe, + 0xcb,0xfb,0x9b,0xfc,0x2a,0xfa,0xc5,0xf7, + 0xcb,0xf7,0x58,0xf8,0x57,0xf9,0x26,0xfc, + 0x68,0xfc,0x3b,0xfd,0xb2,0xfd,0x5f,0xfe, + 0xcf,0xfe,0x47,0xff,0x95,0xff,0xd4,0xff, + 0xf5,0xff,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf4,0xff,0xcf,0xff, + 0x90,0xff,0x32,0xff,0xc3,0xfe,0x2f,0xfe, + 0xa2,0xfd,0xe7,0xfc,0x68,0xfc,0x63,0xfb, + 0xcb,0xf8,0xea,0xf7,0xb9,0xf7,0xff,0xf6, + 0x81,0xf9,0xf9,0xfb,0x6b,0xfc,0xb2,0xfd, + 0xbf,0xfe,0xcb,0x7f,0x3d,0x01,0x3e,0x02, + 0x71,0x03,0xd1,0x03,0x11,0x06,0x46,0x08, + 0x79,0x07,0x2a,0x07,0x40,0x06,0xe7,0x03, + 0xf3,0x02,0x74,0x02,0xca,0x01,0x4b,0x01, + 0xcf,0x00,0x76,0x00,0x32,0x00,0x0c,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00, + 0x3e,0x00,0x5c,0x00,0x02,0x01,0xfa,0x00, + 0x47,0x02,0xc4,0x01,0xdc,0x03,0xf2,0x02, + 0x2a,0x08,0xb0,0x04,0x73,0x0a,0x16,0x04, + 0x24,0x0a,0xde,0xfc,0xec,0x0c,0xf9,0xf1, + 0x4e,0x27,0x6c,0x72,0x53,0xe7,0x10,0x0a, + 0xa3,0xf3,0xec,0x01,0xa0,0xf3,0x9e,0xfa, + 0xb2,0xf4,0x13,0xfa,0x4b,0xf7,0x29,0xfd, + 0x2b,0xfb,0xce,0xfd,0xfc,0xfc,0xa6,0xfe, + 0x78,0xfe,0x63,0xff,0x78,0xff,0xda,0xff, + 0xf2,0xff,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf4,0xff,0xcd,0xff, + 0x8e,0xff,0x2d,0xff,0xbd,0xfe,0x24,0xfe, + 0x99,0xfd,0xd3,0xfc,0x61,0xfc,0x29,0xfb, + 0x9b,0xf8,0xda,0xf7,0x9b,0xf7,0xe7,0xf6, + 0x19,0xf9,0xf1,0xfb,0x5e,0xfc,0xad,0xfd, + 0xbb,0xfe,0xcb,0x7f,0x41,0x01,0x43,0x02, + 0x7e,0x03,0xd9,0x03,0x71,0x06,0x5c,0x08, + 0x95,0x07,0x38,0x07,0x69,0x06,0x17,0x04, + 0xf9,0x02,0x83,0x02,0xd1,0x01,0x53,0x01, + 0xd3,0x00,0x79,0x00,0x33,0x00,0x0d,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00, + 0x42,0x00,0x59,0x00,0x12,0x01,0xef,0x00, + 0x6b,0x02,0xa9,0x01,0x1c,0x04,0x02,0x03, + 0xa7,0x08,0x38,0x04,0x30,0x0b,0x40,0x03, + 0x58,0x0b,0x31,0xfb,0x52,0x0f,0x92,0xed, + 0xe6,0x34,0x51,0x69,0x07,0xe4,0x0b,0x0c, + 0x08,0xf2,0xc7,0x02,0x01,0xf2,0x51,0xfb, + 0xe9,0xf3,0x75,0xfa,0xc7,0xf6,0x63,0xfd, + 0xdb,0xfa,0xee,0xfd,0xce,0xfc,0xb5,0xfe, + 0x61,0xfe,0x68,0xff,0x70,0xff,0xdb,0xff, + 0xf1,0xff,0x00,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00, + 0x01,0x00,0x02,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0xb5,0xff,0x00,0x00, + 0x02,0x00,0x00,0x00,0xc4,0xff,0x00,0x00, + 0x04,0x00,0x00,0x00,0xd3,0xff,0x00,0x00, + 0x06,0x00,0x00,0x00,0xe2,0xff,0x00,0x00, + 0x08,0x00,0x00,0x00,0xf1,0xff,0x00,0x00, + 0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x0c,0x00,0x00,0x00,0x0f,0x00,0x00,0x00, + 0x0e,0x00,0x00,0x00,0x1e,0x00,0x00,0x00, + 0x10,0x00,0x00,0x00,0x2d,0x00,0x00,0x00, + 0x12,0x00,0x00,0x00,0x3c,0x00,0x00,0x00, + 0x14,0x00,0x00,0x00,0x4b,0x00,0x00,0x00, + 0x16,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x18,0x00,0x00,0x00,0x00,0x00,0x66,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line2_50mm_azm90_90_13_48khz.conf b/tools/topology/topology2/include/components/tdfb/line2_50mm_azm90_90_13_48khz.conf new file mode 100644 index 000000000000..1d0afd1c83d7 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line2_50mm_azm90_90_13_48khz.conf @@ -0,0 +1,518 @@ +# Created with script example_line_array.m 23-Oct-2023 +# cd tools/tune/tdfb; octave --no-window-system example_line_array.m +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0xe4,0x0f,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xe4,0x0f,0x00,0x00,0x02,0x00,0x02,0x00, + 0x01,0x00,0x02,0x00,0x0d,0x00,0x01,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x19,0x00,0x29,0x00,0x41,0x00,0x58,0x00, + 0x79,0x00,0x95,0x00,0xbd,0x00,0xdb,0x00, + 0x08,0x01,0x24,0x01,0x56,0x01,0x68,0x01, + 0xaa,0x01,0x58,0x01,0xf9,0x00,0x10,0x01, + 0x0a,0x01,0x06,0x01,0x04,0x01,0xef,0x00, + 0xed,0x00,0xc8,0x00,0xc8,0x00,0x91,0x00, + 0x9b,0x00,0x48,0x00,0x74,0x00,0xc5,0xff, + 0xeb,0x7f,0x3c,0x00,0x8b,0xff,0xb7,0xff, + 0x62,0xff,0x6b,0xff,0x32,0xff,0x30,0xff, + 0x09,0xff,0x05,0xff,0xee,0xfe,0xe9,0xfe, + 0xe3,0xfe,0xdb,0xfe,0xf1,0xfe,0x88,0xfe, + 0x28,0xfe,0x6d,0xfe,0x7c,0xfe,0xb1,0xfe, + 0xcc,0xfe,0xfc,0xfe,0x1b,0xff,0x46,0xff, + 0x64,0xff,0x89,0xff,0xa4,0xff,0xc1,0xff, + 0xd5,0xff,0xec,0xff,0xf9,0xff,0xfe,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xf9,0xff, + 0xec,0xff,0xd5,0xff,0xc1,0xff,0xa4,0xff, + 0x89,0xff,0x65,0xff,0x45,0xff,0x1c,0xff, + 0xfb,0xfe,0xcd,0xfe,0xaf,0xfe,0x7e,0xfe, + 0x6a,0xfe,0x2b,0xfe,0x84,0xfe,0xf6,0xfe, + 0xd6,0xfe,0xe9,0xfe,0xe3,0xfe,0xf6,0xfe, + 0xfc,0xfe,0x14,0xff,0x24,0xff,0x40,0xff, + 0x59,0xff,0x79,0xff,0x98,0xff,0xba,0xff, + 0xdd,0xff,0xec,0x7f,0x23,0x00,0x45,0x00, + 0x67,0x00,0x84,0x00,0xa3,0x00,0xba,0x00, + 0xd4,0x00,0xe3,0x00,0xf8,0x00,0xfc,0x00, + 0x0c,0x01,0x05,0x01,0x14,0x01,0xf5,0x00, + 0x5a,0x01,0xa7,0x01,0x6a,0x01,0x55,0x01, + 0x25,0x01,0x07,0x01,0xdc,0x00,0xbc,0x00, + 0x96,0x00,0x78,0x00,0x58,0x00,0x41,0x00, + 0x29,0x00,0x19,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x1d,0x00,0x1f,0x00,0x50,0x00,0x40,0x00, + 0x99,0x00,0x67,0x00,0xf6,0x00,0x8e,0x00, + 0x64,0x01,0xae,0x00,0xe0,0x01,0xbe,0x00, + 0x6f,0x02,0x69,0x00,0x0c,0x02,0xcd,0xff, + 0x86,0x02,0x4f,0xff,0x0a,0x03,0x97,0xfe, + 0xb7,0x03,0x81,0xfd,0xc5,0x04,0xb8,0xfb, + 0xce,0x06,0x0f,0xf8,0x97,0x0c,0xbd,0xe9, + 0x08,0x74,0xd1,0x24,0xe9,0xef,0xa4,0x09, + 0x44,0xf8,0xff,0x04,0xc4,0xfa,0xec,0x02, + 0xf7,0xfb,0xb3,0x01,0xb3,0xfc,0xe6,0x00, + 0x3b,0xfd,0x5b,0x00,0xaf,0xfd,0xf7,0xff, + 0x62,0xfd,0x2e,0xff,0xe2,0xfd,0x3d,0xff, + 0x61,0xfe,0x5b,0xff,0xd5,0xfe,0x83,0xff, + 0x3a,0xff,0xac,0xff,0x8d,0xff,0xd2,0xff, + 0xcb,0xff,0xf2,0xff,0xf7,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xf9,0xff, + 0xef,0xff,0xd6,0xff,0xc1,0xff,0xa5,0xff, + 0x8a,0xff,0x67,0xff,0x47,0xff,0x1f,0xff, + 0xfd,0xfe,0xd2,0xfe,0xb2,0xfe,0x84,0xfe, + 0x6c,0xfe,0x36,0xfe,0xb9,0xfe,0xf6,0xfe, + 0xdc,0xfe,0xeb,0xfe,0xe7,0xfe,0xf8,0xfe, + 0x00,0xff,0x16,0xff,0x27,0xff,0x42,0xff, + 0x5b,0xff,0x7b,0xff,0x99,0xff,0xbb,0xff, + 0xdd,0xff,0xec,0x7f,0x23,0x00,0x44,0x00, + 0x66,0x00,0x83,0x00,0xa1,0x00,0xb8,0x00, + 0xd1,0x00,0xe1,0x00,0xf4,0x00,0xfa,0x00, + 0x08,0x01,0x03,0x01,0x0f,0x01,0xf4,0x00, + 0x2a,0x01,0x9d,0x01,0x69,0x01,0x4f,0x01, + 0x23,0x01,0x03,0x01,0xda,0x00,0xb9,0x00, + 0x94,0x00,0x77,0x00,0x58,0x00,0x3f,0x00, + 0x28,0x00,0x18,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x07,0x00,0x12,0x00,0x2b,0x00,0x36,0x00, + 0x5d,0x00,0x66,0x00,0x9e,0x00,0x9d,0x00, + 0xeb,0x00,0xd8,0x00,0x40,0x01,0x0f,0x01, + 0x9f,0x01,0xf6,0x00,0x18,0x01,0xaa,0x00, + 0x4e,0x01,0x95,0x00,0x73,0x01,0x62,0x00, + 0x90,0x01,0x0f,0x00,0xb6,0x01,0x8c,0xff, + 0x02,0x02,0xa9,0xfe,0xdf,0x02,0x66,0xfc, + 0x25,0x08,0x2b,0x7f,0xb5,0xf8,0x66,0x03, + 0x2b,0xfd,0x4d,0x01,0xf5,0xfd,0x6f,0x00, + 0x3a,0xfe,0xeb,0xff,0x5b,0xfe,0x94,0xff, + 0x74,0xfe,0x5d,0xff,0x96,0xfe,0x46,0xff, + 0xca,0xfe,0xd8,0xfe,0x30,0xfe,0xcc,0xfe, + 0x90,0xfe,0x03,0xff,0xe9,0xfe,0x40,0xff, + 0x3b,0xff,0x7d,0xff,0x83,0xff,0xb2,0xff, + 0xbd,0xff,0xe3,0xff,0xf1,0xff,0xfa,0xff, + 0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xf9,0xff, + 0xf2,0xff,0xdf,0xff,0xc1,0xff,0xac,0xff, + 0x8c,0xff,0x71,0xff,0x4a,0xff,0x2c,0xff, + 0x02,0xff,0xe5,0xfe,0xb5,0xfe,0xa0,0xfe, + 0x64,0xfe,0xa5,0xfe,0x14,0xff,0xf2,0xfe, + 0xfa,0xfe,0xec,0xfe,0xf9,0xfe,0xfd,0xfe, + 0x0f,0xff,0x1b,0xff,0x33,0xff,0x47,0xff, + 0x64,0xff,0x7f,0xff,0x9f,0xff,0xbe,0xff, + 0xdf,0xff,0xec,0x7f,0x21,0x00,0x42,0x00, + 0x60,0x00,0x7f,0x00,0x98,0x00,0xb3,0x00, + 0xc6,0x00,0xdb,0x00,0xe6,0x00,0xf6,0x00, + 0xf7,0x00,0x01,0x01,0xf3,0x00,0xf8,0x00, + 0xd7,0x00,0x39,0x01,0x70,0x01,0x36,0x01, + 0x20,0x01,0xf3,0x00,0xd6,0x00,0xae,0x00, + 0x91,0x00,0x6f,0x00,0x56,0x00,0x3b,0x00, + 0x29,0x00,0x13,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x05,0x00,0x0d,0x00,0x18,0x00,0x3d,0x00, + 0x46,0x00,0x72,0x00,0x77,0x00,0xb4,0x00, + 0xad,0x00,0xff,0x00,0xe2,0x00,0x56,0x01, + 0xd3,0x00,0xdf,0x00,0x95,0x00,0x10,0x01, + 0x8c,0x00,0x37,0x01,0x74,0x00,0x5b,0x01, + 0x41,0x00,0x76,0x01,0xe6,0xff,0x9f,0x01, + 0x54,0xff,0x03,0x02,0x3b,0xfe,0x6f,0x03, + 0xd2,0xf9,0x5a,0x7f,0xec,0x06,0x5e,0xfc, + 0xe3,0x01,0xea,0xfd,0xba,0x00,0x52,0xfe, + 0x21,0x00,0x7a,0xfe,0xc0,0xff,0x92,0xfe, + 0x88,0xff,0xb4,0xfe,0x6b,0xff,0xd9,0xfe, + 0x5f,0xff,0x08,0xff,0x27,0xff,0x7d,0xfe, + 0xfe,0xfe,0xd6,0xfe,0x33,0xff,0x26,0xff, + 0x6c,0xff,0x6d,0xff,0xa2,0xff,0xa8,0xff, + 0xd8,0xff,0xe9,0xff,0xf4,0xff,0xfa,0xff, + 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xff,0xff,0xfa,0xff,0xf3,0xff, + 0xeb,0xff,0xd5,0xff,0xae,0xff,0x9a,0xff, + 0x78,0xff,0x5e,0xff,0x37,0xff,0x1d,0xff, + 0xf1,0xfe,0xdd,0xfe,0xa3,0xfe,0xef,0xfe, + 0x3f,0xff,0x1e,0xff,0x23,0xff,0x14,0xff, + 0x18,0xff,0x12,0xff,0x19,0xff,0x20,0xff, + 0x33,0xff,0x43,0xff,0x5b,0xff,0x71,0xff, + 0x8c,0xff,0xa7,0xff,0xc4,0xff,0xe2,0xff, + 0xec,0x7f,0x1e,0x00,0x3b,0x00,0x58,0x00, + 0x72,0x00,0x8c,0x00,0xa0,0x00,0xb6,0x00, + 0xc4,0x00,0xd5,0x00,0xdb,0x00,0xe0,0x00, + 0xd9,0x00,0xdb,0x00,0xcb,0x00,0xce,0x00, + 0xae,0x00,0xf4,0x00,0x34,0x01,0xfe,0x00, + 0xe8,0x00,0xbf,0x00,0xa5,0x00,0x82,0x00, + 0x6a,0x00,0x4c,0x00,0x39,0x00,0x1c,0x00, + 0x0c,0x00,0x06,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x08,0x00,0x01,0x00,0x1e,0x00, + 0x0b,0x00,0x6a,0x00,0x23,0x00,0xb7,0x00, + 0x30,0x00,0x19,0x01,0x39,0x00,0x5c,0x01, + 0x8f,0xff,0x90,0x01,0x4b,0xff,0x0a,0x02, + 0xe0,0xfe,0xa2,0x02,0x44,0xfe,0x64,0x03, + 0x62,0xfd,0x6e,0x04,0x0d,0xfc,0x00,0x06, + 0xcc,0xf9,0xd2,0x08,0x3d,0xf5,0x0f,0x10, + 0x67,0xe5,0xde,0x50,0x9a,0x51,0xb6,0xe4, + 0xf2,0x0f,0x3a,0xf4,0x55,0x08,0x7b,0xf8, + 0x33,0x05,0x83,0xfa,0x76,0x03,0xc7,0xfb, + 0x57,0x02,0xa9,0xfc,0x8f,0x01,0x58,0xfd, + 0x00,0x01,0xe8,0xfd,0x97,0x00,0x69,0xfe, + 0x0c,0x00,0x2f,0xfe,0xbd,0xff,0xb3,0xfe, + 0xbe,0xff,0x21,0xff,0xc9,0xff,0x8c,0xff, + 0x02,0x00,0xce,0xff,0xfe,0xff,0xee,0xff, + 0xff,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xff,0xff,0xfc,0xff,0xf7,0xff,0xf0,0xff, + 0xe7,0xff,0xdb,0xff,0xa9,0xff,0x8c,0xff, + 0x73,0xff,0x56,0xff,0x39,0xff,0x1a,0xff, + 0x04,0xff,0x6c,0xff,0x6f,0xff,0x62,0xff, + 0x5c,0xff,0x55,0xff,0x52,0xff,0x4f,0xff, + 0x50,0xff,0x51,0xff,0x56,0xff,0x5c,0xff, + 0x65,0xff,0x76,0xff,0x8a,0xff,0x9f,0xff, + 0xb7,0xff,0xce,0xff,0xe7,0xff,0xec,0x7f, + 0x19,0x00,0x31,0x00,0x48,0x00,0x5f,0x00, + 0x73,0x00,0x86,0x00,0x95,0x00,0x9d,0x00, + 0xa2,0x00,0xa5,0x00,0xa6,0x00,0xa5,0x00, + 0xa1,0x00,0x9d,0x00,0x95,0x00,0x8f,0x00, + 0x81,0x00,0x83,0x00,0xdb,0x00,0xc5,0x00, + 0xa7,0x00,0x8c,0x00,0x71,0x00,0x5a,0x00, + 0x40,0x00,0x1a,0x00,0x10,0x00,0x09,0x00, + 0x04,0x00,0x01,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x01,0x00,0x00,0x00,0x0a,0x00, + 0x00,0x00,0x1b,0x00,0xfe,0xff,0x3a,0x00, + 0x33,0x00,0x9a,0x00,0x4b,0x00,0xb7,0x00, + 0xd1,0xff,0xbd,0x00,0xb7,0xff,0xf8,0x00, + 0x8a,0xff,0x40,0x01,0x47,0xff,0x98,0x01, + 0xe8,0xfe,0x0a,0x02,0x5f,0xfe,0xa9,0x02, + 0x90,0xfd,0x9f,0x03,0x33,0xfc,0x70,0x05, + 0x45,0xf9,0x69,0x0a,0x01,0xed,0x8e,0x78, + 0x09,0x1c,0x5e,0xf3,0xca,0x07,0xf6,0xf9, + 0x39,0x04,0x12,0xfc,0xae,0x02,0x23,0xfd, + 0xca,0x01,0xce,0xfd,0x35,0x01,0x46,0xfe, + 0xce,0x00,0xa3,0xfe,0x84,0x00,0xef,0xfe, + 0x51,0x00,0x2e,0xff,0x30,0x00,0x56,0xff, + 0xad,0xff,0x46,0xff,0xbc,0xff,0xa1,0xff, + 0x06,0x00,0xd8,0xff,0x00,0x00,0xef,0xff, + 0x00,0x00,0xfc,0xff,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xff,0xff,0xfe,0xff,0xfb,0xff,0xf7,0xff, + 0xf3,0xff,0xec,0xff,0xe9,0xff,0xd0,0xff, + 0x8d,0xff,0x84,0xff,0x5c,0xff,0x9e,0xff, + 0xc4,0xff,0xb1,0xff,0xb3,0xff,0xa9,0xff, + 0xa8,0xff,0xa2,0xff,0xa3,0xff,0xa0,0xff, + 0xa2,0xff,0xa1,0xff,0xa5,0xff,0xa7,0xff, + 0xad,0xff,0xb1,0xff,0xb9,0xff,0xbf,0xff, + 0xcc,0xff,0xdd,0xff,0xef,0xff,0xec,0x7f, + 0x11,0x00,0x22,0x00,0x33,0x00,0x40,0x00, + 0x46,0x00,0x4c,0x00,0x50,0x00,0x55,0x00, + 0x57,0x00,0x5a,0x00,0x59,0x00,0x5a,0x00, + 0x56,0x00,0x56,0x00,0x50,0x00,0x4f,0x00, + 0x45,0x00,0x46,0x00,0x34,0x00,0x54,0x00, + 0x8a,0x00,0x66,0x00,0x5c,0x00,0x25,0x00, + 0x11,0x00,0x0e,0x00,0x09,0x00,0x05,0x00, + 0x02,0x00,0x01,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xec,0x7f,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xec,0x7f,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff, + 0xfb,0xff,0xf7,0xff,0xf3,0xff,0xec,0xff, + 0xe9,0xff,0xd0,0xff,0x8d,0xff,0x84,0xff, + 0x5c,0xff,0x9e,0xff,0xc4,0xff,0xb1,0xff, + 0xb3,0xff,0xa9,0xff,0xa8,0xff,0xa2,0xff, + 0xa3,0xff,0xa0,0xff,0xa2,0xff,0xa1,0xff, + 0xa5,0xff,0xa7,0xff,0xad,0xff,0xb1,0xff, + 0xb9,0xff,0xbf,0xff,0xcc,0xff,0xdd,0xff, + 0xef,0xff,0xec,0x7f,0x11,0x00,0x22,0x00, + 0x33,0x00,0x40,0x00,0x46,0x00,0x4c,0x00, + 0x50,0x00,0x55,0x00,0x57,0x00,0x5a,0x00, + 0x59,0x00,0x5a,0x00,0x56,0x00,0x56,0x00, + 0x50,0x00,0x4f,0x00,0x45,0x00,0x46,0x00, + 0x34,0x00,0x54,0x00,0x8a,0x00,0x66,0x00, + 0x5c,0x00,0x25,0x00,0x11,0x00,0x0e,0x00, + 0x09,0x00,0x05,0x00,0x02,0x00,0x01,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x00,0x00,0x0a,0x00,0x00,0x00,0x1b,0x00, + 0xfe,0xff,0x3a,0x00,0x33,0x00,0x9a,0x00, + 0x4b,0x00,0xb7,0x00,0xd1,0xff,0xbd,0x00, + 0xb7,0xff,0xf8,0x00,0x8a,0xff,0x40,0x01, + 0x47,0xff,0x98,0x01,0xe8,0xfe,0x0a,0x02, + 0x5f,0xfe,0xa9,0x02,0x90,0xfd,0x9f,0x03, + 0x33,0xfc,0x70,0x05,0x45,0xf9,0x69,0x0a, + 0x01,0xed,0x8e,0x78,0x09,0x1c,0x5e,0xf3, + 0xca,0x07,0xf6,0xf9,0x39,0x04,0x12,0xfc, + 0xae,0x02,0x23,0xfd,0xca,0x01,0xce,0xfd, + 0x35,0x01,0x46,0xfe,0xce,0x00,0xa3,0xfe, + 0x84,0x00,0xef,0xfe,0x51,0x00,0x2e,0xff, + 0x30,0x00,0x56,0xff,0xad,0xff,0x46,0xff, + 0xbc,0xff,0xa1,0xff,0x06,0x00,0xd8,0xff, + 0x00,0x00,0xef,0xff,0x00,0x00,0xfc,0xff, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xff,0xff,0xfc,0xff, + 0xf7,0xff,0xf0,0xff,0xe7,0xff,0xdb,0xff, + 0xa9,0xff,0x8c,0xff,0x73,0xff,0x56,0xff, + 0x39,0xff,0x1a,0xff,0x04,0xff,0x6c,0xff, + 0x6f,0xff,0x62,0xff,0x5c,0xff,0x55,0xff, + 0x52,0xff,0x4f,0xff,0x50,0xff,0x51,0xff, + 0x56,0xff,0x5c,0xff,0x65,0xff,0x76,0xff, + 0x8a,0xff,0x9f,0xff,0xb7,0xff,0xce,0xff, + 0xe7,0xff,0xec,0x7f,0x19,0x00,0x31,0x00, + 0x48,0x00,0x5f,0x00,0x73,0x00,0x86,0x00, + 0x95,0x00,0x9d,0x00,0xa2,0x00,0xa5,0x00, + 0xa6,0x00,0xa5,0x00,0xa1,0x00,0x9d,0x00, + 0x95,0x00,0x8f,0x00,0x81,0x00,0x83,0x00, + 0xdb,0x00,0xc5,0x00,0xa7,0x00,0x8c,0x00, + 0x71,0x00,0x5a,0x00,0x40,0x00,0x1a,0x00, + 0x10,0x00,0x09,0x00,0x04,0x00,0x01,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00, + 0x01,0x00,0x1e,0x00,0x0b,0x00,0x6a,0x00, + 0x23,0x00,0xb7,0x00,0x30,0x00,0x19,0x01, + 0x39,0x00,0x5c,0x01,0x8f,0xff,0x90,0x01, + 0x4b,0xff,0x0a,0x02,0xe0,0xfe,0xa2,0x02, + 0x44,0xfe,0x64,0x03,0x62,0xfd,0x6e,0x04, + 0x0d,0xfc,0x00,0x06,0xcc,0xf9,0xd2,0x08, + 0x3d,0xf5,0x0f,0x10,0x67,0xe5,0xde,0x50, + 0x9a,0x51,0xb6,0xe4,0xf2,0x0f,0x3a,0xf4, + 0x55,0x08,0x7b,0xf8,0x33,0x05,0x83,0xfa, + 0x76,0x03,0xc7,0xfb,0x57,0x02,0xa9,0xfc, + 0x8f,0x01,0x58,0xfd,0x00,0x01,0xe8,0xfd, + 0x97,0x00,0x69,0xfe,0x0c,0x00,0x2f,0xfe, + 0xbd,0xff,0xb3,0xfe,0xbe,0xff,0x21,0xff, + 0xc9,0xff,0x8c,0xff,0x02,0x00,0xce,0xff, + 0xfe,0xff,0xee,0xff,0xff,0xff,0xfe,0xff, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, + 0xfa,0xff,0xf3,0xff,0xeb,0xff,0xd5,0xff, + 0xae,0xff,0x9a,0xff,0x78,0xff,0x5e,0xff, + 0x37,0xff,0x1d,0xff,0xf1,0xfe,0xdd,0xfe, + 0xa3,0xfe,0xef,0xfe,0x3f,0xff,0x1e,0xff, + 0x23,0xff,0x14,0xff,0x18,0xff,0x12,0xff, + 0x19,0xff,0x20,0xff,0x33,0xff,0x43,0xff, + 0x5b,0xff,0x71,0xff,0x8c,0xff,0xa7,0xff, + 0xc4,0xff,0xe2,0xff,0xec,0x7f,0x1e,0x00, + 0x3b,0x00,0x58,0x00,0x72,0x00,0x8c,0x00, + 0xa0,0x00,0xb6,0x00,0xc4,0x00,0xd5,0x00, + 0xdb,0x00,0xe0,0x00,0xd9,0x00,0xdb,0x00, + 0xcb,0x00,0xce,0x00,0xae,0x00,0xf4,0x00, + 0x34,0x01,0xfe,0x00,0xe8,0x00,0xbf,0x00, + 0xa5,0x00,0x82,0x00,0x6a,0x00,0x4c,0x00, + 0x39,0x00,0x1c,0x00,0x0c,0x00,0x06,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x05,0x00,0x0d,0x00, + 0x18,0x00,0x3d,0x00,0x46,0x00,0x72,0x00, + 0x77,0x00,0xb4,0x00,0xad,0x00,0xff,0x00, + 0xe2,0x00,0x56,0x01,0xd3,0x00,0xdf,0x00, + 0x95,0x00,0x10,0x01,0x8c,0x00,0x37,0x01, + 0x74,0x00,0x5b,0x01,0x41,0x00,0x76,0x01, + 0xe6,0xff,0x9f,0x01,0x54,0xff,0x03,0x02, + 0x3b,0xfe,0x6f,0x03,0xd2,0xf9,0x5a,0x7f, + 0xec,0x06,0x5e,0xfc,0xe3,0x01,0xea,0xfd, + 0xba,0x00,0x52,0xfe,0x21,0x00,0x7a,0xfe, + 0xc0,0xff,0x92,0xfe,0x88,0xff,0xb4,0xfe, + 0x6b,0xff,0xd9,0xfe,0x5f,0xff,0x08,0xff, + 0x27,0xff,0x7d,0xfe,0xfe,0xfe,0xd6,0xfe, + 0x33,0xff,0x26,0xff,0x6c,0xff,0x6d,0xff, + 0xa2,0xff,0xa8,0xff,0xd8,0xff,0xe9,0xff, + 0xf4,0xff,0xfa,0xff,0xff,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xf9,0xff,0xf2,0xff,0xdf,0xff, + 0xc1,0xff,0xac,0xff,0x8c,0xff,0x71,0xff, + 0x4a,0xff,0x2c,0xff,0x02,0xff,0xe5,0xfe, + 0xb5,0xfe,0xa0,0xfe,0x64,0xfe,0xa5,0xfe, + 0x14,0xff,0xf2,0xfe,0xfa,0xfe,0xec,0xfe, + 0xf9,0xfe,0xfd,0xfe,0x0f,0xff,0x1b,0xff, + 0x33,0xff,0x47,0xff,0x64,0xff,0x7f,0xff, + 0x9f,0xff,0xbe,0xff,0xdf,0xff,0xec,0x7f, + 0x21,0x00,0x42,0x00,0x60,0x00,0x7f,0x00, + 0x98,0x00,0xb3,0x00,0xc6,0x00,0xdb,0x00, + 0xe6,0x00,0xf6,0x00,0xf7,0x00,0x01,0x01, + 0xf3,0x00,0xf8,0x00,0xd7,0x00,0x39,0x01, + 0x70,0x01,0x36,0x01,0x20,0x01,0xf3,0x00, + 0xd6,0x00,0xae,0x00,0x91,0x00,0x6f,0x00, + 0x56,0x00,0x3b,0x00,0x29,0x00,0x13,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x07,0x00,0x12,0x00, + 0x2b,0x00,0x36,0x00,0x5d,0x00,0x66,0x00, + 0x9e,0x00,0x9d,0x00,0xeb,0x00,0xd8,0x00, + 0x40,0x01,0x0f,0x01,0x9f,0x01,0xf6,0x00, + 0x18,0x01,0xaa,0x00,0x4e,0x01,0x95,0x00, + 0x73,0x01,0x62,0x00,0x90,0x01,0x0f,0x00, + 0xb6,0x01,0x8c,0xff,0x02,0x02,0xa9,0xfe, + 0xdf,0x02,0x66,0xfc,0x25,0x08,0x2b,0x7f, + 0xb5,0xf8,0x66,0x03,0x2b,0xfd,0x4d,0x01, + 0xf5,0xfd,0x6f,0x00,0x3a,0xfe,0xeb,0xff, + 0x5b,0xfe,0x94,0xff,0x74,0xfe,0x5d,0xff, + 0x96,0xfe,0x46,0xff,0xca,0xfe,0xd8,0xfe, + 0x30,0xfe,0xcc,0xfe,0x90,0xfe,0x03,0xff, + 0xe9,0xfe,0x40,0xff,0x3b,0xff,0x7d,0xff, + 0x83,0xff,0xb2,0xff,0xbd,0xff,0xe3,0xff, + 0xf1,0xff,0xfa,0xff,0xfe,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xf9,0xff,0xef,0xff,0xd6,0xff, + 0xc1,0xff,0xa5,0xff,0x8a,0xff,0x67,0xff, + 0x47,0xff,0x1f,0xff,0xfd,0xfe,0xd2,0xfe, + 0xb2,0xfe,0x84,0xfe,0x6c,0xfe,0x36,0xfe, + 0xb9,0xfe,0xf6,0xfe,0xdc,0xfe,0xeb,0xfe, + 0xe7,0xfe,0xf8,0xfe,0x00,0xff,0x16,0xff, + 0x27,0xff,0x42,0xff,0x5b,0xff,0x7b,0xff, + 0x99,0xff,0xbb,0xff,0xdd,0xff,0xec,0x7f, + 0x23,0x00,0x44,0x00,0x66,0x00,0x83,0x00, + 0xa1,0x00,0xb8,0x00,0xd1,0x00,0xe1,0x00, + 0xf4,0x00,0xfa,0x00,0x08,0x01,0x03,0x01, + 0x0f,0x01,0xf4,0x00,0x2a,0x01,0x9d,0x01, + 0x69,0x01,0x4f,0x01,0x23,0x01,0x03,0x01, + 0xda,0x00,0xb9,0x00,0x94,0x00,0x77,0x00, + 0x58,0x00,0x3f,0x00,0x28,0x00,0x18,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x1d,0x00,0x1f,0x00, + 0x50,0x00,0x40,0x00,0x99,0x00,0x67,0x00, + 0xf6,0x00,0x8e,0x00,0x64,0x01,0xae,0x00, + 0xe0,0x01,0xbe,0x00,0x6f,0x02,0x69,0x00, + 0x0c,0x02,0xcd,0xff,0x86,0x02,0x4f,0xff, + 0x0a,0x03,0x97,0xfe,0xb7,0x03,0x81,0xfd, + 0xc5,0x04,0xb8,0xfb,0xce,0x06,0x0f,0xf8, + 0x97,0x0c,0xbd,0xe9,0x08,0x74,0xd1,0x24, + 0xe9,0xef,0xa4,0x09,0x44,0xf8,0xff,0x04, + 0xc4,0xfa,0xec,0x02,0xf7,0xfb,0xb3,0x01, + 0xb3,0xfc,0xe6,0x00,0x3b,0xfd,0x5b,0x00, + 0xaf,0xfd,0xf7,0xff,0x62,0xfd,0x2e,0xff, + 0xe2,0xfd,0x3d,0xff,0x61,0xfe,0x5b,0xff, + 0xd5,0xfe,0x83,0xff,0x3a,0xff,0xac,0xff, + 0x8d,0xff,0xd2,0xff,0xcb,0xff,0xf2,0xff, + 0xf7,0xff,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xf9,0xff,0xec,0xff,0xd5,0xff, + 0xc1,0xff,0xa4,0xff,0x89,0xff,0x65,0xff, + 0x45,0xff,0x1c,0xff,0xfb,0xfe,0xcd,0xfe, + 0xaf,0xfe,0x7e,0xfe,0x6a,0xfe,0x2b,0xfe, + 0x84,0xfe,0xf6,0xfe,0xd6,0xfe,0xe9,0xfe, + 0xe3,0xfe,0xf6,0xfe,0xfc,0xfe,0x14,0xff, + 0x24,0xff,0x40,0xff,0x59,0xff,0x79,0xff, + 0x98,0xff,0xba,0xff,0xdd,0xff,0xec,0x7f, + 0x23,0x00,0x45,0x00,0x67,0x00,0x84,0x00, + 0xa3,0x00,0xba,0x00,0xd4,0x00,0xe3,0x00, + 0xf8,0x00,0xfc,0x00,0x0c,0x01,0x05,0x01, + 0x14,0x01,0xf5,0x00,0x5a,0x01,0xa7,0x01, + 0x6a,0x01,0x55,0x01,0x25,0x01,0x07,0x01, + 0xdc,0x00,0xbc,0x00,0x96,0x00,0x78,0x00, + 0x58,0x00,0x41,0x00,0x29,0x00,0x19,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x19,0x00,0x29,0x00, + 0x41,0x00,0x58,0x00,0x79,0x00,0x95,0x00, + 0xbd,0x00,0xdb,0x00,0x08,0x01,0x24,0x01, + 0x56,0x01,0x68,0x01,0xaa,0x01,0x58,0x01, + 0xf9,0x00,0x10,0x01,0x0a,0x01,0x06,0x01, + 0x04,0x01,0xef,0x00,0xed,0x00,0xc8,0x00, + 0xc8,0x00,0x91,0x00,0x9b,0x00,0x48,0x00, + 0x74,0x00,0xc5,0xff,0xeb,0x7f,0x3c,0x00, + 0x8b,0xff,0xb7,0xff,0x62,0xff,0x6b,0xff, + 0x32,0xff,0x30,0xff,0x09,0xff,0x05,0xff, + 0xee,0xfe,0xe9,0xfe,0xe3,0xfe,0xdb,0xfe, + 0xf1,0xfe,0x88,0xfe,0x28,0xfe,0x6d,0xfe, + 0x7c,0xfe,0xb1,0xfe,0xcc,0xfe,0xfc,0xfe, + 0x1b,0xff,0x46,0xff,0x64,0xff,0x89,0xff, + 0xa4,0xff,0xc1,0xff,0xd5,0xff,0xec,0xff, + 0xf9,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00, + 0x01,0x00,0x02,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0xb5,0xff,0x00,0x00, + 0x02,0x00,0x00,0x00,0xc4,0xff,0x00,0x00, + 0x04,0x00,0x00,0x00,0xd3,0xff,0x00,0x00, + 0x06,0x00,0x00,0x00,0xe2,0xff,0x00,0x00, + 0x08,0x00,0x00,0x00,0xf1,0xff,0x00,0x00, + 0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x0c,0x00,0x00,0x00,0x0f,0x00,0x00,0x00, + 0x0e,0x00,0x00,0x00,0x1e,0x00,0x00,0x00, + 0x10,0x00,0x00,0x00,0x2d,0x00,0x00,0x00, + 0x12,0x00,0x00,0x00,0x3c,0x00,0x00,0x00, + 0x14,0x00,0x00,0x00,0x4b,0x00,0x00,0x00, + 0x16,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x18,0x00,0x00,0x00,0x00,0x00,0x66,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line2_50mm_pm0_30_90deg_16khz.conf b/tools/topology/topology2/include/components/tdfb/line2_50mm_pm0_30_90deg_16khz.conf new file mode 100644 index 000000000000..c2e9b2003684 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line2_50mm_pm0_30_90deg_16khz.conf @@ -0,0 +1,258 @@ +# Created with script example_two_beams.m 23-Oct-2023 +# cd tools/tune/tdfb; matlab -nodisplay -nosplash -nodesktop -r example_two_beams +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0xc4,0x07,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xc4,0x07,0x00,0x00,0x04,0x00,0x02,0x00, + 0x01,0x00,0x02,0x00,0x03,0x00,0x01,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xec,0x7f,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xec,0x7f,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xec,0x7f,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xec,0x7f,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xfe,0xff,0xf9,0xff,0xee,0xff, + 0xe1,0xff,0xcd,0xff,0xb6,0xff,0x97,0xff, + 0x77,0xff,0x4b,0xff,0x22,0xff,0xe9,0xfe, + 0xb7,0xfe,0x72,0xfe,0x3b,0xfe,0xea,0xfd, + 0xa4,0xfd,0x3a,0xfd,0xf7,0xfc,0x87,0xfc, + 0x5f,0xfc,0x0c,0xfc,0x27,0xfc,0xa5,0xfb, + 0xb7,0xf8,0xe9,0xf7,0x18,0xfb,0x03,0xfd, + 0x07,0xfd,0xb4,0xfd,0x39,0xfe,0x26,0xff, + 0xec,0x7f,0xd9,0x00,0xc3,0x01,0x43,0x02, + 0xea,0x02,0xe9,0x02,0xc2,0x04,0xcd,0x07, + 0xfc,0x06,0x26,0x04,0xa5,0x03,0xb8,0x03, + 0x64,0x03,0x38,0x03,0xcb,0x02,0x87,0x02, + 0x21,0x02,0xdd,0x01,0x90,0x01,0x5a,0x01, + 0x1a,0x01,0xea,0x00,0xb7,0x00,0x91,0x00, + 0x6a,0x00,0x4e,0x00,0x34,0x00,0x21,0x00, + 0x12,0x00,0x08,0x00,0x02,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x0a,0x00,0x0e,0x00,0x29,0x00,0x28,0x00, + 0x61,0x00,0x52,0x00,0xb4,0x00,0x8b,0x00, + 0x25,0x01,0xd4,0x00,0xb4,0x01,0x27,0x01, + 0x60,0x02,0x8d,0x01,0x40,0x03,0xfa,0x01, + 0x36,0x04,0x3d,0x02,0x10,0x05,0xff,0x01, + 0x4e,0x06,0x31,0x05,0x03,0x0a,0x11,0x01, + 0xc8,0x06,0xc9,0xfd,0x1f,0x09,0xbb,0xf6, + 0xeb,0x18,0x10,0x7a,0x91,0xed,0x71,0x07, + 0x47,0xf7,0xb2,0x01,0x30,0xf9,0x83,0xfd, + 0x1e,0xf5,0x52,0xfb,0x11,0xfa,0x9e,0xfd, + 0xb9,0xfa,0x83,0xfd,0x8d,0xfb,0xd6,0xfd, + 0x82,0xfc,0x4b,0xfe,0x64,0xfd,0xb1,0xfe, + 0x13,0xfe,0x09,0xff,0xa9,0xfe,0x58,0xff, + 0x23,0xff,0x97,0xff,0x80,0xff,0xc7,0xff, + 0xc1,0xff,0xe8,0xff,0xeb,0xff,0xfa,0xff, + 0xfe,0xff,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x01,0x00,0x0a,0x00,0x0e,0x00, + 0x29,0x00,0x28,0x00,0x61,0x00,0x52,0x00, + 0xb4,0x00,0x8b,0x00,0x25,0x01,0xd4,0x00, + 0xb4,0x01,0x27,0x01,0x60,0x02,0x8d,0x01, + 0x40,0x03,0xfa,0x01,0x36,0x04,0x3d,0x02, + 0x10,0x05,0xff,0x01,0x4e,0x06,0x31,0x05, + 0x03,0x0a,0x11,0x01,0xc8,0x06,0xc9,0xfd, + 0x1f,0x09,0xbb,0xf6,0xeb,0x18,0x10,0x7a, + 0x91,0xed,0x71,0x07,0x47,0xf7,0xb2,0x01, + 0x30,0xf9,0x83,0xfd,0x1e,0xf5,0x52,0xfb, + 0x11,0xfa,0x9e,0xfd,0xb9,0xfa,0x83,0xfd, + 0x8d,0xfb,0xd6,0xfd,0x82,0xfc,0x4b,0xfe, + 0x64,0xfd,0xb1,0xfe,0x13,0xfe,0x09,0xff, + 0xa9,0xfe,0x58,0xff,0x23,0xff,0x97,0xff, + 0x80,0xff,0xc7,0xff,0xc1,0xff,0xe8,0xff, + 0xeb,0xff,0xfa,0xff,0xfe,0xff,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xff, + 0xf9,0xff,0xee,0xff,0xe1,0xff,0xcd,0xff, + 0xb6,0xff,0x97,0xff,0x77,0xff,0x4b,0xff, + 0x22,0xff,0xe9,0xfe,0xb7,0xfe,0x72,0xfe, + 0x3b,0xfe,0xea,0xfd,0xa4,0xfd,0x3a,0xfd, + 0xf7,0xfc,0x87,0xfc,0x5f,0xfc,0x0c,0xfc, + 0x27,0xfc,0xa5,0xfb,0xb7,0xf8,0xe9,0xf7, + 0x18,0xfb,0x03,0xfd,0x07,0xfd,0xb4,0xfd, + 0x39,0xfe,0x26,0xff,0xec,0x7f,0xd9,0x00, + 0xc3,0x01,0x43,0x02,0xea,0x02,0xe9,0x02, + 0xc2,0x04,0xcd,0x07,0xfc,0x06,0x26,0x04, + 0xa5,0x03,0xb8,0x03,0x64,0x03,0x38,0x03, + 0xcb,0x02,0x87,0x02,0x21,0x02,0xdd,0x01, + 0x90,0x01,0x5a,0x01,0x1a,0x01,0xea,0x00, + 0xb7,0x00,0x91,0x00,0x6a,0x00,0x4e,0x00, + 0x34,0x00,0x21,0x00,0x12,0x00,0x08,0x00, + 0x02,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfd,0xff,0xf2,0xff, + 0xe1,0xff,0xc7,0xff,0xa6,0xff,0x7a,0xff, + 0x49,0xff,0x08,0xff,0xc8,0xfe,0x72,0xfe, + 0x23,0xfe,0xba,0xfd,0x5d,0xfd,0xd1,0xfc, + 0x66,0xfc,0xc9,0xfb,0x63,0xfb,0xbc,0xfa, + 0x74,0xfa,0xca,0xf9,0xd3,0xf9,0xa2,0xf8, + 0xc2,0xf5,0x93,0xf5,0xf1,0xf5,0xac,0xf5, + 0x7f,0xf8,0xbc,0xfb,0x46,0xfc,0xa8,0xfd, + 0xba,0xfe,0xec,0x7f,0x44,0x01,0x52,0x02, + 0xab,0x03,0x2f,0x04,0x51,0x07,0x04,0x0a, + 0xb3,0x09,0xff,0x09,0xc3,0x09,0xfb,0x06, + 0xd0,0x05,0xcd,0x05,0x25,0x05,0xd8,0x04, + 0x35,0x04,0xce,0x03,0x38,0x03,0xcf,0x02, + 0x4c,0x02,0xf3,0x01,0x91,0x01,0x48,0x01, + 0xfa,0x00,0xc0,0x00,0x88,0x00,0x5e,0x00, + 0x3a,0x00,0x20,0x00,0x0e,0x00,0x03,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00, + 0x11,0x00,0x19,0x00,0x48,0x00,0x4a,0x00, + 0xa9,0x00,0x95,0x00,0x39,0x01,0xfc,0x00, + 0xf9,0x01,0x7a,0x01,0xee,0x02,0x1c,0x02, + 0x21,0x04,0xcc,0x02,0x78,0x05,0x6b,0x03, + 0xd8,0x06,0xd5,0x03,0x09,0x08,0x21,0x05, + 0x2c,0x0d,0xd7,0x05,0x50,0x0e,0xe5,0x03, + 0xe1,0x0c,0xc6,0xfa,0x1b,0x10,0x19,0xed, + 0x61,0x35,0x6c,0x69,0x00,0xe4,0x27,0x0c, + 0xad,0xf1,0xeb,0x02,0xc9,0xf0,0xaf,0xfa, + 0x84,0xf1,0xe8,0xf8,0x3b,0xf3,0x06,0xfc, + 0x3a,0xf7,0xf3,0xfb,0xa0,0xf8,0x57,0xfc, + 0x13,0xfa,0xf9,0xfc,0x76,0xfb,0xae,0xfd, + 0xb5,0xfc,0x4f,0xfe,0xb1,0xfd,0xd5,0xfe, + 0x80,0xfe,0x44,0xff,0x20,0xff,0x99,0xff, + 0x92,0xff,0xd4,0xff,0xda,0xff,0xf6,0xff, + 0xfc,0xff,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x03,0x00,0x11,0x00,0x19,0x00, + 0x48,0x00,0x4a,0x00,0xa9,0x00,0x95,0x00, + 0x39,0x01,0xfc,0x00,0xf9,0x01,0x7a,0x01, + 0xee,0x02,0x1c,0x02,0x21,0x04,0xcc,0x02, + 0x78,0x05,0x6b,0x03,0xd8,0x06,0xd5,0x03, + 0x09,0x08,0x21,0x05,0x2c,0x0d,0xd7,0x05, + 0x50,0x0e,0xe5,0x03,0xe1,0x0c,0xc6,0xfa, + 0x1b,0x10,0x19,0xed,0x61,0x35,0x6c,0x69, + 0x00,0xe4,0x27,0x0c,0xad,0xf1,0xeb,0x02, + 0xc9,0xf0,0xaf,0xfa,0x84,0xf1,0xe8,0xf8, + 0x3b,0xf3,0x06,0xfc,0x3a,0xf7,0xf3,0xfb, + 0xa0,0xf8,0x57,0xfc,0x13,0xfa,0xf9,0xfc, + 0x76,0xfb,0xae,0xfd,0xb5,0xfc,0x4f,0xfe, + 0xb1,0xfd,0xd5,0xfe,0x80,0xfe,0x44,0xff, + 0x20,0xff,0x99,0xff,0x92,0xff,0xd4,0xff, + 0xda,0xff,0xf6,0xff,0xfc,0xff,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfd,0xff,0xf2,0xff,0xe1,0xff,0xc7,0xff, + 0xa6,0xff,0x7a,0xff,0x49,0xff,0x08,0xff, + 0xc8,0xfe,0x72,0xfe,0x23,0xfe,0xba,0xfd, + 0x5d,0xfd,0xd1,0xfc,0x66,0xfc,0xc9,0xfb, + 0x63,0xfb,0xbc,0xfa,0x74,0xfa,0xca,0xf9, + 0xd3,0xf9,0xa2,0xf8,0xc2,0xf5,0x93,0xf5, + 0xf1,0xf5,0xac,0xf5,0x7f,0xf8,0xbc,0xfb, + 0x46,0xfc,0xa8,0xfd,0xba,0xfe,0xec,0x7f, + 0x44,0x01,0x52,0x02,0xab,0x03,0x2f,0x04, + 0x51,0x07,0x04,0x0a,0xb3,0x09,0xff,0x09, + 0xc3,0x09,0xfb,0x06,0xd0,0x05,0xcd,0x05, + 0x25,0x05,0xd8,0x04,0x35,0x04,0xce,0x03, + 0x38,0x03,0xcf,0x02,0x4c,0x02,0xf3,0x01, + 0x91,0x01,0x48,0x01,0xfa,0x00,0xc0,0x00, + 0x88,0x00,0x5e,0x00,0x3a,0x00,0x20,0x00, + 0x0e,0x00,0x03,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00, + 0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00, + 0x04,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x08,0x00,0x00,0x00,0x00,0x00,0x66,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line2_50mm_pm0_30_90deg_48khz.conf b/tools/topology/topology2/include/components/tdfb/line2_50mm_pm0_30_90deg_48khz.conf new file mode 100644 index 000000000000..339d281c2f27 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line2_50mm_pm0_30_90deg_48khz.conf @@ -0,0 +1,258 @@ +# Created with script example_two_beams.m 23-Oct-2023 +# cd tools/tune/tdfb; matlab -nodisplay -nosplash -nodesktop -r example_two_beams +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0xc4,0x07,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xc4,0x07,0x00,0x00,0x04,0x00,0x02,0x00, + 0x01,0x00,0x02,0x00,0x03,0x00,0x01,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xec,0x7f,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xec,0x7f,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xec,0x7f,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xec,0x7f,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xff,0xff,0xfc,0xff, + 0xf7,0xff,0xf0,0xff,0xe7,0xff,0xdb,0xff, + 0xa9,0xff,0x8c,0xff,0x73,0xff,0x56,0xff, + 0x39,0xff,0x1a,0xff,0x04,0xff,0x6c,0xff, + 0x6f,0xff,0x62,0xff,0x5c,0xff,0x55,0xff, + 0x52,0xff,0x4f,0xff,0x50,0xff,0x51,0xff, + 0x56,0xff,0x5c,0xff,0x65,0xff,0x76,0xff, + 0x8a,0xff,0x9f,0xff,0xb7,0xff,0xce,0xff, + 0xe7,0xff,0xec,0x7f,0x19,0x00,0x31,0x00, + 0x48,0x00,0x5f,0x00,0x73,0x00,0x86,0x00, + 0x95,0x00,0x9d,0x00,0xa2,0x00,0xa5,0x00, + 0xa6,0x00,0xa5,0x00,0xa1,0x00,0x9d,0x00, + 0x95,0x00,0x8f,0x00,0x81,0x00,0x83,0x00, + 0xdb,0x00,0xc5,0x00,0xa7,0x00,0x8c,0x00, + 0x71,0x00,0x5a,0x00,0x40,0x00,0x1a,0x00, + 0x10,0x00,0x09,0x00,0x04,0x00,0x01,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00, + 0x01,0x00,0x1e,0x00,0x0b,0x00,0x6a,0x00, + 0x23,0x00,0xb7,0x00,0x30,0x00,0x19,0x01, + 0x39,0x00,0x5c,0x01,0x8f,0xff,0x90,0x01, + 0x4b,0xff,0x0a,0x02,0xe0,0xfe,0xa2,0x02, + 0x44,0xfe,0x64,0x03,0x62,0xfd,0x6e,0x04, + 0x0d,0xfc,0x00,0x06,0xcc,0xf9,0xd2,0x08, + 0x3d,0xf5,0x0f,0x10,0x67,0xe5,0xde,0x50, + 0x9a,0x51,0xb6,0xe4,0xf2,0x0f,0x3a,0xf4, + 0x55,0x08,0x7b,0xf8,0x33,0x05,0x83,0xfa, + 0x76,0x03,0xc7,0xfb,0x57,0x02,0xa9,0xfc, + 0x8f,0x01,0x58,0xfd,0x00,0x01,0xe8,0xfd, + 0x97,0x00,0x69,0xfe,0x0c,0x00,0x2f,0xfe, + 0xbd,0xff,0xb3,0xfe,0xbe,0xff,0x21,0xff, + 0xc9,0xff,0x8c,0xff,0x02,0x00,0xce,0xff, + 0xfe,0xff,0xee,0xff,0xff,0xff,0xfe,0xff, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x08,0x00,0x01,0x00,0x1e,0x00, + 0x0b,0x00,0x6a,0x00,0x23,0x00,0xb7,0x00, + 0x30,0x00,0x19,0x01,0x39,0x00,0x5c,0x01, + 0x8f,0xff,0x90,0x01,0x4b,0xff,0x0a,0x02, + 0xe0,0xfe,0xa2,0x02,0x44,0xfe,0x64,0x03, + 0x62,0xfd,0x6e,0x04,0x0d,0xfc,0x00,0x06, + 0xcc,0xf9,0xd2,0x08,0x3d,0xf5,0x0f,0x10, + 0x67,0xe5,0xde,0x50,0x9a,0x51,0xb6,0xe4, + 0xf2,0x0f,0x3a,0xf4,0x55,0x08,0x7b,0xf8, + 0x33,0x05,0x83,0xfa,0x76,0x03,0xc7,0xfb, + 0x57,0x02,0xa9,0xfc,0x8f,0x01,0x58,0xfd, + 0x00,0x01,0xe8,0xfd,0x97,0x00,0x69,0xfe, + 0x0c,0x00,0x2f,0xfe,0xbd,0xff,0xb3,0xfe, + 0xbe,0xff,0x21,0xff,0xc9,0xff,0x8c,0xff, + 0x02,0x00,0xce,0xff,0xfe,0xff,0xee,0xff, + 0xff,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xff,0xff,0xfc,0xff,0xf7,0xff,0xf0,0xff, + 0xe7,0xff,0xdb,0xff,0xa9,0xff,0x8c,0xff, + 0x73,0xff,0x56,0xff,0x39,0xff,0x1a,0xff, + 0x04,0xff,0x6c,0xff,0x6f,0xff,0x62,0xff, + 0x5c,0xff,0x55,0xff,0x52,0xff,0x4f,0xff, + 0x50,0xff,0x51,0xff,0x56,0xff,0x5c,0xff, + 0x65,0xff,0x76,0xff,0x8a,0xff,0x9f,0xff, + 0xb7,0xff,0xce,0xff,0xe7,0xff,0xec,0x7f, + 0x19,0x00,0x31,0x00,0x48,0x00,0x5f,0x00, + 0x73,0x00,0x86,0x00,0x95,0x00,0x9d,0x00, + 0xa2,0x00,0xa5,0x00,0xa6,0x00,0xa5,0x00, + 0xa1,0x00,0x9d,0x00,0x95,0x00,0x8f,0x00, + 0x81,0x00,0x83,0x00,0xdb,0x00,0xc5,0x00, + 0xa7,0x00,0x8c,0x00,0x71,0x00,0x5a,0x00, + 0x40,0x00,0x1a,0x00,0x10,0x00,0x09,0x00, + 0x04,0x00,0x01,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xf9,0xff,0xec,0xff,0xd5,0xff, + 0xc1,0xff,0xa4,0xff,0x89,0xff,0x65,0xff, + 0x45,0xff,0x1c,0xff,0xfb,0xfe,0xcd,0xfe, + 0xaf,0xfe,0x7e,0xfe,0x6a,0xfe,0x2b,0xfe, + 0x84,0xfe,0xf6,0xfe,0xd6,0xfe,0xe9,0xfe, + 0xe3,0xfe,0xf6,0xfe,0xfc,0xfe,0x14,0xff, + 0x24,0xff,0x40,0xff,0x59,0xff,0x79,0xff, + 0x98,0xff,0xba,0xff,0xdd,0xff,0xec,0x7f, + 0x23,0x00,0x45,0x00,0x67,0x00,0x84,0x00, + 0xa3,0x00,0xba,0x00,0xd4,0x00,0xe3,0x00, + 0xf8,0x00,0xfc,0x00,0x0c,0x01,0x05,0x01, + 0x14,0x01,0xf5,0x00,0x5a,0x01,0xa7,0x01, + 0x6a,0x01,0x55,0x01,0x25,0x01,0x07,0x01, + 0xdc,0x00,0xbc,0x00,0x96,0x00,0x78,0x00, + 0x58,0x00,0x41,0x00,0x29,0x00,0x19,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x19,0x00,0x29,0x00, + 0x41,0x00,0x58,0x00,0x79,0x00,0x95,0x00, + 0xbd,0x00,0xdb,0x00,0x08,0x01,0x24,0x01, + 0x56,0x01,0x68,0x01,0xaa,0x01,0x58,0x01, + 0xf9,0x00,0x10,0x01,0x0a,0x01,0x06,0x01, + 0x04,0x01,0xef,0x00,0xed,0x00,0xc8,0x00, + 0xc8,0x00,0x91,0x00,0x9b,0x00,0x48,0x00, + 0x74,0x00,0xc5,0xff,0xeb,0x7f,0x3c,0x00, + 0x8b,0xff,0xb7,0xff,0x62,0xff,0x6b,0xff, + 0x32,0xff,0x30,0xff,0x09,0xff,0x05,0xff, + 0xee,0xfe,0xe9,0xfe,0xe3,0xfe,0xdb,0xfe, + 0xf1,0xfe,0x88,0xfe,0x28,0xfe,0x6d,0xfe, + 0x7c,0xfe,0xb1,0xfe,0xcc,0xfe,0xfc,0xfe, + 0x1b,0xff,0x46,0xff,0x64,0xff,0x89,0xff, + 0xa4,0xff,0xc1,0xff,0xd5,0xff,0xec,0xff, + 0xf9,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x19,0x00,0x29,0x00,0x41,0x00,0x58,0x00, + 0x79,0x00,0x95,0x00,0xbd,0x00,0xdb,0x00, + 0x08,0x01,0x24,0x01,0x56,0x01,0x68,0x01, + 0xaa,0x01,0x58,0x01,0xf9,0x00,0x10,0x01, + 0x0a,0x01,0x06,0x01,0x04,0x01,0xef,0x00, + 0xed,0x00,0xc8,0x00,0xc8,0x00,0x91,0x00, + 0x9b,0x00,0x48,0x00,0x74,0x00,0xc5,0xff, + 0xeb,0x7f,0x3c,0x00,0x8b,0xff,0xb7,0xff, + 0x62,0xff,0x6b,0xff,0x32,0xff,0x30,0xff, + 0x09,0xff,0x05,0xff,0xee,0xfe,0xe9,0xfe, + 0xe3,0xfe,0xdb,0xfe,0xf1,0xfe,0x88,0xfe, + 0x28,0xfe,0x6d,0xfe,0x7c,0xfe,0xb1,0xfe, + 0xcc,0xfe,0xfc,0xfe,0x1b,0xff,0x46,0xff, + 0x64,0xff,0x89,0xff,0xa4,0xff,0xc1,0xff, + 0xd5,0xff,0xec,0xff,0xf9,0xff,0xfe,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xf9,0xff, + 0xec,0xff,0xd5,0xff,0xc1,0xff,0xa4,0xff, + 0x89,0xff,0x65,0xff,0x45,0xff,0x1c,0xff, + 0xfb,0xfe,0xcd,0xfe,0xaf,0xfe,0x7e,0xfe, + 0x6a,0xfe,0x2b,0xfe,0x84,0xfe,0xf6,0xfe, + 0xd6,0xfe,0xe9,0xfe,0xe3,0xfe,0xf6,0xfe, + 0xfc,0xfe,0x14,0xff,0x24,0xff,0x40,0xff, + 0x59,0xff,0x79,0xff,0x98,0xff,0xba,0xff, + 0xdd,0xff,0xec,0x7f,0x23,0x00,0x45,0x00, + 0x67,0x00,0x84,0x00,0xa3,0x00,0xba,0x00, + 0xd4,0x00,0xe3,0x00,0xf8,0x00,0xfc,0x00, + 0x0c,0x01,0x05,0x01,0x14,0x01,0xf5,0x00, + 0x5a,0x01,0xa7,0x01,0x6a,0x01,0x55,0x01, + 0x25,0x01,0x07,0x01,0xdc,0x00,0xbc,0x00, + 0x96,0x00,0x78,0x00,0x58,0x00,0x41,0x00, + 0x29,0x00,0x19,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00, + 0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x01,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x1e,0x00,0x00,0x00, + 0x04,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x08,0x00,0x00,0x00,0x00,0x00,0x66,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line2_50mm_pm90deg_16khz.conf b/tools/topology/topology2/include/components/tdfb/line2_50mm_pm90deg_16khz.conf new file mode 100644 index 000000000000..9547488b9d83 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line2_50mm_pm90deg_16khz.conf @@ -0,0 +1,93 @@ +# Created with script example_two_beams.m 23-Oct-2023 +# cd tools/tune/tdfb; matlab -nodisplay -nosplash -nodesktop -r example_two_beams +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0x9c,0x02,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9c,0x02,0x00,0x00,0x04,0x00,0x02,0x00, + 0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfd,0xff,0xf2,0xff, + 0xe1,0xff,0xc7,0xff,0xa6,0xff,0x7a,0xff, + 0x49,0xff,0x08,0xff,0xc8,0xfe,0x72,0xfe, + 0x23,0xfe,0xba,0xfd,0x5d,0xfd,0xd1,0xfc, + 0x66,0xfc,0xc9,0xfb,0x63,0xfb,0xbc,0xfa, + 0x74,0xfa,0xca,0xf9,0xd3,0xf9,0xa2,0xf8, + 0xc2,0xf5,0x93,0xf5,0xf1,0xf5,0xac,0xf5, + 0x7f,0xf8,0xbc,0xfb,0x46,0xfc,0xa8,0xfd, + 0xba,0xfe,0xec,0x7f,0x44,0x01,0x52,0x02, + 0xab,0x03,0x2f,0x04,0x51,0x07,0x04,0x0a, + 0xb3,0x09,0xff,0x09,0xc3,0x09,0xfb,0x06, + 0xd0,0x05,0xcd,0x05,0x25,0x05,0xd8,0x04, + 0x35,0x04,0xce,0x03,0x38,0x03,0xcf,0x02, + 0x4c,0x02,0xf3,0x01,0x91,0x01,0x48,0x01, + 0xfa,0x00,0xc0,0x00,0x88,0x00,0x5e,0x00, + 0x3a,0x00,0x20,0x00,0x0e,0x00,0x03,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00, + 0x11,0x00,0x19,0x00,0x48,0x00,0x4a,0x00, + 0xa9,0x00,0x95,0x00,0x39,0x01,0xfc,0x00, + 0xf9,0x01,0x7a,0x01,0xee,0x02,0x1c,0x02, + 0x21,0x04,0xcc,0x02,0x78,0x05,0x6b,0x03, + 0xd8,0x06,0xd5,0x03,0x09,0x08,0x21,0x05, + 0x2c,0x0d,0xd7,0x05,0x50,0x0e,0xe5,0x03, + 0xe1,0x0c,0xc6,0xfa,0x1b,0x10,0x19,0xed, + 0x61,0x35,0x6c,0x69,0x00,0xe4,0x27,0x0c, + 0xad,0xf1,0xeb,0x02,0xc9,0xf0,0xaf,0xfa, + 0x84,0xf1,0xe8,0xf8,0x3b,0xf3,0x06,0xfc, + 0x3a,0xf7,0xf3,0xfb,0xa0,0xf8,0x57,0xfc, + 0x13,0xfa,0xf9,0xfc,0x76,0xfb,0xae,0xfd, + 0xb5,0xfc,0x4f,0xfe,0xb1,0xfd,0xd5,0xfe, + 0x80,0xfe,0x44,0xff,0x20,0xff,0x99,0xff, + 0x92,0xff,0xd4,0xff,0xda,0xff,0xf6,0xff, + 0xfc,0xff,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x03,0x00,0x11,0x00,0x19,0x00, + 0x48,0x00,0x4a,0x00,0xa9,0x00,0x95,0x00, + 0x39,0x01,0xfc,0x00,0xf9,0x01,0x7a,0x01, + 0xee,0x02,0x1c,0x02,0x21,0x04,0xcc,0x02, + 0x78,0x05,0x6b,0x03,0xd8,0x06,0xd5,0x03, + 0x09,0x08,0x21,0x05,0x2c,0x0d,0xd7,0x05, + 0x50,0x0e,0xe5,0x03,0xe1,0x0c,0xc6,0xfa, + 0x1b,0x10,0x19,0xed,0x61,0x35,0x6c,0x69, + 0x00,0xe4,0x27,0x0c,0xad,0xf1,0xeb,0x02, + 0xc9,0xf0,0xaf,0xfa,0x84,0xf1,0xe8,0xf8, + 0x3b,0xf3,0x06,0xfc,0x3a,0xf7,0xf3,0xfb, + 0xa0,0xf8,0x57,0xfc,0x13,0xfa,0xf9,0xfc, + 0x76,0xfb,0xae,0xfd,0xb5,0xfc,0x4f,0xfe, + 0xb1,0xfd,0xd5,0xfe,0x80,0xfe,0x44,0xff, + 0x20,0xff,0x99,0xff,0x92,0xff,0xd4,0xff, + 0xda,0xff,0xf6,0xff,0xfc,0xff,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfd,0xff,0xf2,0xff,0xe1,0xff,0xc7,0xff, + 0xa6,0xff,0x7a,0xff,0x49,0xff,0x08,0xff, + 0xc8,0xfe,0x72,0xfe,0x23,0xfe,0xba,0xfd, + 0x5d,0xfd,0xd1,0xfc,0x66,0xfc,0xc9,0xfb, + 0x63,0xfb,0xbc,0xfa,0x74,0xfa,0xca,0xf9, + 0xd3,0xf9,0xa2,0xf8,0xc2,0xf5,0x93,0xf5, + 0xf1,0xf5,0xac,0xf5,0x7f,0xf8,0xbc,0xfb, + 0x46,0xfc,0xa8,0xfd,0xba,0xfe,0xec,0x7f, + 0x44,0x01,0x52,0x02,0xab,0x03,0x2f,0x04, + 0x51,0x07,0x04,0x0a,0xb3,0x09,0xff,0x09, + 0xc3,0x09,0xfb,0x06,0xd0,0x05,0xcd,0x05, + 0x25,0x05,0xd8,0x04,0x35,0x04,0xce,0x03, + 0x38,0x03,0xcf,0x02,0x4c,0x02,0xf3,0x01, + 0x91,0x01,0x48,0x01,0xfa,0x00,0xc0,0x00, + 0x88,0x00,0x5e,0x00,0x3a,0x00,0x20,0x00, + 0x0e,0x00,0x03,0x00,0x00,0x00,0x01,0x00, + 0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00, + 0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line2_50mm_pm90deg_48khz.conf b/tools/topology/topology2/include/components/tdfb/line2_50mm_pm90deg_48khz.conf new file mode 100644 index 000000000000..0fc17a7bb3a6 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line2_50mm_pm90deg_48khz.conf @@ -0,0 +1,93 @@ +# Created with script example_two_beams.m 23-Oct-2023 +# cd tools/tune/tdfb; matlab -nodisplay -nosplash -nodesktop -r example_two_beams +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0x9c,0x02,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x9c,0x02,0x00,0x00,0x04,0x00,0x02,0x00, + 0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xf9,0xff,0xec,0xff,0xd5,0xff, + 0xc1,0xff,0xa4,0xff,0x89,0xff,0x65,0xff, + 0x45,0xff,0x1c,0xff,0xfb,0xfe,0xcd,0xfe, + 0xaf,0xfe,0x7e,0xfe,0x6a,0xfe,0x2b,0xfe, + 0x84,0xfe,0xf6,0xfe,0xd6,0xfe,0xe9,0xfe, + 0xe3,0xfe,0xf6,0xfe,0xfc,0xfe,0x14,0xff, + 0x24,0xff,0x40,0xff,0x59,0xff,0x79,0xff, + 0x98,0xff,0xba,0xff,0xdd,0xff,0xec,0x7f, + 0x23,0x00,0x45,0x00,0x67,0x00,0x84,0x00, + 0xa3,0x00,0xba,0x00,0xd4,0x00,0xe3,0x00, + 0xf8,0x00,0xfc,0x00,0x0c,0x01,0x05,0x01, + 0x14,0x01,0xf5,0x00,0x5a,0x01,0xa7,0x01, + 0x6a,0x01,0x55,0x01,0x25,0x01,0x07,0x01, + 0xdc,0x00,0xbc,0x00,0x96,0x00,0x78,0x00, + 0x58,0x00,0x41,0x00,0x29,0x00,0x19,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x19,0x00,0x29,0x00, + 0x41,0x00,0x58,0x00,0x79,0x00,0x95,0x00, + 0xbd,0x00,0xdb,0x00,0x08,0x01,0x24,0x01, + 0x56,0x01,0x68,0x01,0xaa,0x01,0x58,0x01, + 0xf9,0x00,0x10,0x01,0x0a,0x01,0x06,0x01, + 0x04,0x01,0xef,0x00,0xed,0x00,0xc8,0x00, + 0xc8,0x00,0x91,0x00,0x9b,0x00,0x48,0x00, + 0x74,0x00,0xc5,0xff,0xeb,0x7f,0x3c,0x00, + 0x8b,0xff,0xb7,0xff,0x62,0xff,0x6b,0xff, + 0x32,0xff,0x30,0xff,0x09,0xff,0x05,0xff, + 0xee,0xfe,0xe9,0xfe,0xe3,0xfe,0xdb,0xfe, + 0xf1,0xfe,0x88,0xfe,0x28,0xfe,0x6d,0xfe, + 0x7c,0xfe,0xb1,0xfe,0xcc,0xfe,0xfc,0xfe, + 0x1b,0xff,0x46,0xff,0x64,0xff,0x89,0xff, + 0xa4,0xff,0xc1,0xff,0xd5,0xff,0xec,0xff, + 0xf9,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x19,0x00,0x29,0x00,0x41,0x00,0x58,0x00, + 0x79,0x00,0x95,0x00,0xbd,0x00,0xdb,0x00, + 0x08,0x01,0x24,0x01,0x56,0x01,0x68,0x01, + 0xaa,0x01,0x58,0x01,0xf9,0x00,0x10,0x01, + 0x0a,0x01,0x06,0x01,0x04,0x01,0xef,0x00, + 0xed,0x00,0xc8,0x00,0xc8,0x00,0x91,0x00, + 0x9b,0x00,0x48,0x00,0x74,0x00,0xc5,0xff, + 0xeb,0x7f,0x3c,0x00,0x8b,0xff,0xb7,0xff, + 0x62,0xff,0x6b,0xff,0x32,0xff,0x30,0xff, + 0x09,0xff,0x05,0xff,0xee,0xfe,0xe9,0xfe, + 0xe3,0xfe,0xdb,0xfe,0xf1,0xfe,0x88,0xfe, + 0x28,0xfe,0x6d,0xfe,0x7c,0xfe,0xb1,0xfe, + 0xcc,0xfe,0xfc,0xfe,0x1b,0xff,0x46,0xff, + 0x64,0xff,0x89,0xff,0xa4,0xff,0xc1,0xff, + 0xd5,0xff,0xec,0xff,0xf9,0xff,0xfe,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xf9,0xff, + 0xec,0xff,0xd5,0xff,0xc1,0xff,0xa4,0xff, + 0x89,0xff,0x65,0xff,0x45,0xff,0x1c,0xff, + 0xfb,0xfe,0xcd,0xfe,0xaf,0xfe,0x7e,0xfe, + 0x6a,0xfe,0x2b,0xfe,0x84,0xfe,0xf6,0xfe, + 0xd6,0xfe,0xe9,0xfe,0xe3,0xfe,0xf6,0xfe, + 0xfc,0xfe,0x14,0xff,0x24,0xff,0x40,0xff, + 0x59,0xff,0x79,0xff,0x98,0xff,0xba,0xff, + 0xdd,0xff,0xec,0x7f,0x23,0x00,0x45,0x00, + 0x67,0x00,0x84,0x00,0xa3,0x00,0xba,0x00, + 0xd4,0x00,0xe3,0x00,0xf8,0x00,0xfc,0x00, + 0x0c,0x01,0x05,0x01,0x14,0x01,0xf5,0x00, + 0x5a,0x01,0xa7,0x01,0x6a,0x01,0x55,0x01, + 0x25,0x01,0x07,0x01,0xdc,0x00,0xbc,0x00, + 0x96,0x00,0x78,0x00,0x58,0x00,0x41,0x00, + 0x29,0x00,0x19,0x00,0x00,0x00,0x01,0x00, + 0x00,0x00,0x01,0x00,0x01,0x00,0x01,0x00, + 0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x66,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x9a,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line2_pass.conf b/tools/topology/topology2/include/components/tdfb/line2_pass.conf new file mode 100644 index 000000000000..4e83bb50c401 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line2_pass.conf @@ -0,0 +1,14 @@ +# Exported with script example_pass_config.m 23-Oct-2023 +# cd tools/tune/tdfb; octave --no-window-system example_pass_config.m +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0x28,0x00,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x28,0x00,0x00,0x00,0x02,0x00,0x02,0x00, + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x01,0x00,0x02,0x00,0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line4_28mm_azm90_90_13_16khz.conf b/tools/topology/topology2/include/components/tdfb/line4_28mm_azm90_90_13_16khz.conf new file mode 100644 index 000000000000..0912b10d7410 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line4_28mm_azm90_90_13_16khz.conf @@ -0,0 +1,698 @@ +# Created with script example_line_array.m 23-Oct-2023 +# cd tools/tune/tdfb; octave --no-window-system example_line_array.m +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0x84,0x15,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x84,0x15,0x00,0x00,0x04,0x00,0x02,0x00, + 0x01,0x00,0x04,0x00,0x0d,0x00,0x01,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xff,0xff,0xf6,0xff,0xee,0xff,0xc8,0xff, + 0xae,0xff,0x51,0xff,0x2a,0xff,0xf8,0xfe, + 0x36,0x00,0xa3,0x00,0x23,0x02,0x96,0x03, + 0xf7,0x07,0xde,0x0c,0xaa,0x14,0xbf,0x14, + 0x1f,0x1a,0x77,0x13,0x9a,0x56,0x9e,0x19, + 0x26,0x0e,0x39,0x0a,0xbf,0x00,0xc2,0x00, + 0x04,0xfd,0xa4,0xfd,0x96,0xfc,0x7b,0xfd, + 0x20,0xfd,0xa5,0xfe,0xda,0xfe,0x14,0xff, + 0xf5,0xfe,0x21,0xff,0x42,0xff,0xa1,0xff, + 0xca,0xff,0xf2,0xff,0x00,0x00,0x00,0x00, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x00, + 0x7b,0x00,0x7e,0x01,0x62,0x02,0x8b,0x04, + 0x14,0x05,0xda,0x07,0x03,0x06,0xd5,0x08, + 0x11,0x01,0x3d,0xff,0xfd,0xee,0x34,0xeb, + 0x39,0xd0,0xd4,0xce,0x02,0xb6,0x00,0xca, + 0x60,0xa5,0x39,0x2e,0xe2,0x1a,0x1f,0xd6, + 0x64,0x0d,0x5f,0x03,0x8a,0x1a,0x90,0x0f, + 0x6b,0x15,0xed,0x07,0x7c,0x07,0x85,0xfd, + 0xaa,0xfe,0x90,0xfb,0x53,0xfd,0x99,0xfc, + 0x99,0xfe,0xe4,0xfe,0xc4,0xff,0xdb,0xff, + 0x03,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x02,0x00,0xdf,0xff, + 0xc2,0xff,0xf2,0xfe,0x93,0xfe,0xb1,0xfc, + 0x28,0xfd,0xa1,0xfb,0x59,0xfe,0x74,0xfd, + 0xad,0x06,0xf6,0x07,0x85,0x14,0x4e,0x10, + 0xfa,0x19,0x89,0x05,0xb5,0x0c,0x60,0xdb, + 0x14,0x0e,0xea,0x39,0x3c,0xa8,0xb9,0xc8, + 0xb7,0xb6,0x99,0xcd,0x98,0xcf,0xcd,0xe9, + 0x96,0xee,0x4e,0xfe,0xcb,0x00,0x66,0x08, + 0x10,0x06,0xa6,0x07,0x25,0x05,0x7d,0x04, + 0x6d,0x02,0x7d,0x01,0x7e,0x00,0x23,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xf1,0xff,0xcb,0xff,0x9c,0xff, + 0x4b,0xff,0x0d,0xff,0x04,0xff,0xf1,0xfe, + 0xff,0xfe,0x7f,0xfe,0x6c,0xfd,0x1b,0xfd, + 0x02,0xfd,0x0b,0xfd,0x9a,0xfd,0xa8,0xff, + 0xba,0x01,0xc7,0x07,0x60,0x10,0xc7,0x13, + 0x0d,0x57,0x2d,0x18,0xb7,0x17,0x63,0x16, + 0xc2,0x13,0x37,0x0e,0xa6,0x07,0x45,0x04, + 0xdc,0x01,0xf9,0x00,0x13,0x00,0x32,0xff, + 0x0a,0xff,0x64,0xff,0x9e,0xff,0xd0,0xff, + 0xe9,0xff,0xf7,0xff,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xf2,0xff,0xf0,0xff,0xb8,0xff, + 0xbd,0xff,0x2c,0xff,0x55,0xff,0x90,0xfe, + 0x55,0x00,0x27,0x00,0x76,0x02,0xd5,0x02, + 0x7e,0x08,0xd7,0x0a,0x35,0x16,0xbe,0x12, + 0x9d,0x1d,0x2b,0x0e,0x25,0x53,0xda,0x24, + 0x9f,0x0a,0xb3,0x0e,0x9d,0xff,0xdb,0x02, + 0xc0,0xfc,0xe5,0xfe,0x55,0xfc,0x51,0xfe, + 0xdc,0xfc,0x07,0xff,0xae,0xfe,0x48,0xff, + 0xda,0xfe,0x37,0xff,0x36,0xff,0xa7,0xff, + 0xc7,0xff,0xf2,0xff,0x00,0x00,0x00,0x00, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x00, + 0x79,0x00,0x7a,0x01,0x58,0x02,0x92,0x04, + 0x07,0x05,0xfa,0x07,0xed,0x05,0xf0,0x08, + 0x7e,0x01,0xf9,0xff,0x8d,0xef,0x1c,0xec, + 0x1d,0xd1,0xb1,0xcf,0xe9,0xb5,0xf8,0xc9, + 0x0f,0xa4,0x25,0x1f,0xf8,0x27,0x01,0xd1, + 0x00,0x0c,0x56,0x00,0x66,0x19,0x50,0x0e, + 0x1b,0x15,0x3e,0x07,0xc4,0x07,0x65,0xfd, + 0xf3,0xfe,0x9d,0xfb,0x87,0xfd,0xa8,0xfc, + 0xb6,0xfe,0xec,0xfe,0xcd,0xff,0xdd,0xff, + 0x04,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x03,0x00,0xe6,0xff, + 0xc9,0xff,0x0d,0xff,0xac,0xfe,0xdf,0xfc, + 0x24,0xfd,0xb8,0xfb,0x36,0xfe,0x2e,0xfd, + 0xc1,0x05,0x49,0x07,0xd6,0x12,0x09,0x10, + 0x49,0x18,0x8d,0x05,0xb7,0x0a,0xbd,0xdd, + 0x65,0x06,0x02,0x3f,0x41,0xaa,0x41,0xc7, + 0x3a,0xb7,0xca,0xcc,0x43,0xcf,0xa9,0xe8, + 0x5a,0xee,0xab,0xfd,0xbb,0x00,0xf5,0x07, + 0xfe,0x05,0x7f,0x07,0x2f,0x05,0x73,0x04, + 0x75,0x02,0x7b,0x01,0x81,0x00,0x23,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xf1,0xff,0xca,0xff,0x9a,0xff, + 0x4d,0xff,0x06,0xff,0x01,0xff,0xf1,0xfe, + 0x08,0xff,0xac,0xfe,0x9e,0xfd,0x59,0xfd, + 0x6a,0xfd,0x64,0xfd,0x2b,0xfe,0x2d,0x00, + 0xff,0x01,0x54,0x08,0xb7,0x10,0x03,0x14, + 0x51,0x57,0x79,0x18,0x10,0x18,0x9d,0x16, + 0x22,0x14,0x47,0x0e,0xa3,0x07,0x89,0x04, + 0xd2,0x01,0xf0,0x00,0x0c,0x00,0x18,0xff, + 0x05,0xff,0x5b,0xff,0x96,0xff,0xca,0xff, + 0xe4,0xff,0xf5,0xff,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfb,0xff,0xf7,0xff,0xc6,0xff,0xd8,0xff, + 0x48,0xff,0x99,0xff,0x87,0xfe,0xe5,0xff, + 0x96,0xff,0x16,0x02,0x93,0x01,0xee,0x07, + 0xc2,0x06,0xad,0x14,0x06,0x11,0x69,0x1e, + 0x68,0x0d,0x21,0x38,0x8b,0x47,0xd3,0x05, + 0x43,0x17,0xf0,0x00,0x0e,0x06,0xf8,0xfd, + 0x70,0x01,0x54,0xfc,0xd7,0xff,0x8e,0xfc, + 0x6f,0xff,0x69,0xfe,0x6d,0xff,0x6d,0xfe, + 0x0a,0xff,0xbf,0xfe,0x70,0xff,0x7a,0xff, + 0xcc,0xff,0xee,0xff,0x00,0x00,0x00,0x00, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x1f,0x00, + 0x9f,0x00,0x4f,0x01,0xe0,0x02,0xaa,0x03, + 0xde,0x05,0x1c,0x05,0xb4,0x06,0xe1,0x02, + 0xde,0x00,0x5e,0xf4,0xcd,0xee,0xb7,0xd9, + 0x10,0xd3,0x28,0xbe,0x26,0xc7,0x1c,0xad, + 0x74,0xee,0x4d,0x46,0x5b,0xcd,0x47,0x01, + 0x78,0xfb,0x21,0x13,0x25,0x0d,0x12,0x14, + 0xea,0x06,0xf1,0x07,0xbc,0xfd,0xb2,0xfe, + 0x89,0xfb,0x18,0xfd,0x33,0xfc,0x64,0xfe, + 0xac,0xfe,0xba,0xff,0xcf,0xff,0x14,0x00, + 0x04,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x06,0x00,0xfc,0xff,0xe1,0xff, + 0x59,0xff,0xf3,0xfe,0x7e,0xfd,0x26,0xfd, + 0x13,0xfc,0xbf,0xfd,0xe5,0xfc,0xce,0x02, + 0xaa,0x05,0x61,0x0d,0x47,0x0f,0xac,0x12, + 0xf4,0x05,0xb0,0x03,0x76,0xe5,0xe9,0xf0, + 0x36,0x4a,0x18,0xb4,0xf4,0xc1,0x18,0xba, + 0x1b,0xca,0xa2,0xcf,0xda,0xe4,0x2b,0xee, + 0x68,0xfb,0xd6,0x00,0x6b,0x06,0xd9,0x05, + 0xe4,0x06,0x48,0x05,0x43,0x04,0x89,0x02, + 0x6c,0x01,0x89,0x00,0x22,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf1,0xff,0xc7,0xff,0x94,0xff,0x54,0xff, + 0xfa,0xfe,0xf1,0xfe,0xf4,0xfe,0x17,0xff, + 0x25,0xff,0x32,0xfe,0x13,0xfe,0x7b,0xfe, + 0x6f,0xfe,0xdc,0xff,0xa2,0x01,0xdb,0x02, + 0xe6,0x09,0x98,0x11,0xab,0x14,0xeb,0x57, + 0x34,0x19,0xeb,0x18,0x2c,0x17,0x15,0x15, + 0x6a,0x0e,0x9f,0x07,0x3a,0x05,0xe6,0x01, + 0xc9,0x00,0xf2,0xff,0xde,0xfe,0xfc,0xfe, + 0x42,0xff,0x82,0xff,0xb8,0xff,0xd7,0xff, + 0xf1,0xff,0xfd,0xff,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfd,0xff,0xe7,0xff,0xd7,0xff,0x86,0xff, + 0x95,0xff,0xfb,0xfe,0x4c,0xff,0x5e,0xfe, + 0xf6,0xff,0xc3,0xff,0x09,0x03,0x33,0x04, + 0x33,0x09,0x8c,0x0a,0x29,0x18,0x07,0x14, + 0x65,0x1f,0x72,0x0f,0x89,0x53,0xbe,0x27, + 0xc4,0x0b,0xc3,0x12,0x47,0x02,0xe8,0x05, + 0xfe,0x00,0xf7,0x01,0x8d,0xfe,0x34,0x00, + 0x50,0xfe,0x1c,0x00,0xd2,0xfe,0x4c,0xff, + 0xa7,0xfe,0x23,0xff,0x43,0xff,0x99,0xff, + 0xc1,0xff,0xf1,0xff,0x00,0x00,0x00,0x00, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00, + 0x83,0x00,0x5d,0x01,0x4c,0x02,0x1b,0x04, + 0xd2,0x04,0x81,0x06,0xf0,0x04,0x53,0x05, + 0x96,0x00,0x40,0xfb,0xf1,0xed,0xa2,0xe4, + 0x0d,0xd1,0x7d,0xcc,0x87,0xba,0x42,0xc4, + 0x79,0xb1,0xa6,0x47,0x4c,0xf2,0x40,0xdf, + 0xb9,0xfd,0x32,0xfe,0xaf,0x0c,0xda,0x09, + 0x03,0x09,0xbb,0x01,0x1e,0x01,0x98,0xfc, + 0x31,0xfe,0x6e,0xfc,0xf6,0xfd,0x31,0xfe, + 0x8d,0xff,0xa5,0xff,0x1c,0x00,0x10,0x00, + 0x0c,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x0a,0x00,0x1d,0x00,0x09,0x00, + 0xde,0xff,0x47,0xff,0xc0,0xfe,0x4b,0xfd, + 0x27,0xfd,0xaa,0xfc,0xe9,0xfd,0x22,0xfe, + 0x97,0x03,0x8c,0x04,0x1d,0x0d,0xd0,0x08, + 0x77,0x06,0xe0,0xf6,0xd2,0xf0,0x46,0xd5, + 0x21,0x4e,0x2b,0xcf,0x72,0xb7,0x62,0xc2, + 0xef,0xc4,0xd4,0xd3,0x9a,0xde,0xb7,0xee, + 0x75,0xf7,0x12,0x01,0xd7,0x03,0x88,0x05, + 0xa9,0x05,0x48,0x05,0xd3,0x03,0x92,0x02, + 0x4b,0x01,0x93,0x00,0x20,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf0,0xff,0xc5,0xff,0x8b,0xff,0x58,0xff, + 0x07,0xff,0xca,0xfe,0xf6,0xfe,0x23,0xff, + 0x9d,0xff,0x35,0xff,0x30,0xff,0xc2,0xff, + 0x3d,0x00,0x7f,0x02,0xc3,0x03,0x8e,0x04, + 0x48,0x0c,0xb8,0x12,0x9e,0x15,0x83,0x58, + 0xdb,0x19,0xcb,0x19,0xb3,0x17,0x15,0x16, + 0x64,0x0e,0xc9,0x07,0xd7,0x05,0x82,0x02, + 0x9f,0x00,0x91,0xff,0xd1,0xfe,0xee,0xfe, + 0x2b,0xff,0x6a,0xff,0x9b,0xff,0xc7,0xff, + 0xeb,0xff,0xfb,0xff,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xf9,0xff,0xe2,0xff,0xbe,0xff, + 0x7f,0xff,0x5d,0xff,0x24,0xff,0x0e,0xff, + 0x0a,0xff,0x25,0xff,0xd5,0x00,0xb1,0x03, + 0xd1,0x05,0xc1,0x08,0x72,0x0d,0xb1,0x16, + 0x27,0x17,0x2a,0x1b,0x9d,0x17,0xbc,0x58, + 0x7f,0x19,0x70,0x12,0x59,0x10,0xf3,0x06, + 0x8b,0x06,0xff,0x04,0xdb,0x02,0xb1,0x00, + 0x60,0x00,0x32,0x00,0xb5,0xff,0x12,0xff, + 0xcf,0xfe,0xb0,0xfe,0x23,0xff,0x42,0xff, + 0x89,0xff,0xc3,0xff,0xf0,0xff,0x00,0x00, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00, + 0x71,0x00,0x43,0x01,0xe3,0x01,0x9e,0x03, + 0x37,0x04,0x4d,0x06,0xb3,0x04,0xc2,0x05, + 0xad,0x00,0x1c,0x00,0x6b,0xf2,0x9e,0xec, + 0x28,0xd8,0xbf,0xd7,0x38,0xbe,0xda,0xcb, + 0xf3,0xac,0x44,0xf6,0x3f,0x3f,0xe1,0xc4, + 0xe5,0xf5,0xf2,0xe9,0x1f,0x03,0x20,0xfd, + 0xdb,0x06,0xe6,0xfc,0x2e,0x00,0x00,0xfc, + 0xcb,0xff,0xe9,0xfc,0x53,0xff,0xbd,0xfe, + 0x32,0x00,0xe2,0xff,0x58,0x00,0x1c,0x00, + 0x11,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x0e,0x00,0x44,0x00,0x38,0x00, + 0x98,0x00,0xbd,0xff,0x41,0x00,0x2d,0xfe, + 0x20,0xff,0xf0,0xfb,0xb2,0xff,0xfd,0xfa, + 0x2d,0x00,0xd2,0xfb,0x73,0x07,0x44,0xfc, + 0xe2,0x03,0x20,0xe8,0xc2,0xf6,0x94,0xc2, + 0xfd,0x38,0x7f,0xff,0x9c,0xac,0x3e,0xcf, + 0x93,0xc0,0x15,0xdb,0xe7,0xda,0xd7,0xee, + 0xb7,0xf3,0x6c,0x00,0x9e,0x00,0x02,0x05, + 0xc3,0x03,0xed,0x04,0x0a,0x03,0x72,0x02, + 0x18,0x01,0x96,0x00,0x1d,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf0,0xff,0xc5,0xff,0x89,0xff,0x4b,0xff, + 0x24,0xff,0xc9,0xfe,0xca,0xfe,0x38,0xff, + 0xac,0xff,0x75,0x00,0x5b,0x00,0x02,0x01, + 0xab,0x02,0x69,0x05,0x5e,0x06,0x8a,0x07, + 0x58,0x0f,0xcc,0x13,0xb6,0x16,0xe9,0x58, + 0xf6,0x19,0xed,0x19,0xbe,0x17,0x0f,0x16, + 0x01,0x0e,0x49,0x08,0xed,0x05,0x61,0x03, + 0xed,0x00,0xed,0xfe,0x05,0xff,0xed,0xfe, + 0x20,0xff,0x4d,0xff,0x7d,0xff,0xb9,0xff, + 0xe2,0xff,0xf9,0xff,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xf6,0xff,0xdb,0xff,0xad,0xff, + 0x7b,0xff,0x36,0xff,0x34,0xff,0x30,0xff, + 0x0d,0xff,0x6c,0xff,0x79,0x01,0x0a,0x04, + 0xeb,0x05,0x0a,0x09,0x41,0x0d,0x4b,0x14, + 0x41,0x17,0x51,0x18,0x8b,0x1a,0xea,0x58, + 0xd6,0x16,0x65,0x15,0x52,0x12,0xce,0x0b, + 0x02,0x09,0x71,0x07,0xdb,0x04,0x10,0x02, + 0x1e,0x01,0xae,0x00,0x80,0xff,0xdc,0xfe, + 0x93,0xfe,0xf8,0xfe,0x02,0xff,0x49,0xff, + 0x88,0xff,0xc8,0xff,0xf1,0xff,0x00,0x00, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00, + 0x64,0x00,0x1b,0x01,0x81,0x01,0xe5,0x02, + 0xcf,0x02,0x99,0x04,0x77,0x02,0xa0,0x03, + 0xd6,0xfc,0x19,0xfe,0x57,0xef,0x46,0xed, + 0xb4,0xdb,0xc7,0xdd,0x0e,0xc2,0xd6,0xd6, + 0x23,0xae,0x9f,0x35,0xfb,0x06,0xeb,0xc4, + 0x8d,0xed,0x32,0xe0,0x19,0xfa,0x68,0xf2, + 0xe1,0xfe,0x5f,0xf7,0xf6,0xfd,0xad,0xfc, + 0xab,0x00,0xb4,0xfe,0x29,0x01,0x2b,0x00, + 0x27,0x01,0x90,0x00,0xab,0x00,0x3e,0x00, + 0x18,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x17,0x00,0x3a,0x00,0xa2,0x00, + 0x81,0x00,0x0f,0x01,0x0a,0x00,0xfd,0x00, + 0x7d,0xfe,0x6e,0x00,0x61,0xfc,0x98,0xfd, + 0x0a,0xf7,0x7a,0xfe,0xff,0xf1,0xa2,0xf9, + 0x8a,0xdf,0x1d,0xed,0x7a,0xc4,0xb1,0x06, + 0x4f,0x35,0x0d,0xae,0xeb,0xd6,0x44,0xc2, + 0x54,0xde,0x30,0xdc,0xc4,0xed,0xf2,0xef, + 0x9e,0xfe,0x44,0xfd,0xff,0x03,0xc1,0x02, + 0xd1,0x04,0xf6,0x02,0xff,0x02,0x91,0x01, + 0x24,0x01,0x67,0x00,0x1f,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf1,0xff, + 0xca,0xff,0x8d,0xff,0x4f,0xff,0x12,0xff, + 0x06,0xff,0xb0,0xfe,0xf7,0xfe,0xb1,0xff, + 0xd0,0x00,0x64,0x01,0x39,0x02,0x34,0x05, + 0x8d,0x07,0x6d,0x09,0xf0,0x0b,0xd0,0x12, + 0x1c,0x15,0xd6,0x17,0xf9,0x58,0x9a,0x19, + 0xa6,0x18,0xcc,0x16,0x26,0x14,0xd2,0x0c, + 0xe3,0x08,0x8c,0x05,0xd9,0x03,0x32,0x01, + 0x48,0xff,0xe3,0xfe,0x1c,0xff,0x1c,0xff, + 0x2c,0xff,0x71,0xff,0xa9,0xff,0xd9,0xff, + 0xf6,0xff,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xf4,0xff,0xd1,0xff,0x9c,0xff, + 0x5b,0xff,0x1d,0xff,0xee,0xfe,0xf0,0xfe, + 0xcf,0xfe,0x45,0xff,0x4e,0x00,0xbf,0x01, + 0xc5,0x03,0x4c,0x06,0x45,0x09,0x13,0x0c, + 0x42,0x11,0xe6,0x15,0x03,0x17,0x76,0x19, + 0xf4,0x58,0x21,0x18,0xba,0x16,0x96,0x14, + 0x31,0x10,0xd9,0x0a,0x61,0x08,0x57,0x05, + 0x25,0x03,0x3d,0x01,0x20,0x00,0x38,0xff, + 0xf9,0xfe,0x1a,0xff,0x32,0xff,0x61,0xff, + 0x9e,0xff,0xd1,0xff,0xf4,0xff,0x00,0x00, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00, + 0x5f,0x00,0xc9,0x00,0x49,0x01,0xc9,0x01, + 0x21,0x02,0x25,0x02,0x5c,0x02,0x84,0x01, + 0x5b,0xff,0x99,0xfc,0x69,0xf8,0x8a,0xf3, + 0x5d,0xed,0x0f,0xe8,0x58,0xdd,0x87,0xd4, + 0x89,0xd1,0x09,0xce,0xaa,0x4d,0xcf,0xce, + 0xfa,0xd2,0x85,0xd6,0xbf,0xdf,0x1d,0xea, + 0x54,0xef,0x33,0xf5,0xc3,0xf9,0x73,0xfd, + 0xc7,0xff,0x86,0x01,0x14,0x02,0xc7,0x01, + 0x9f,0x01,0x3b,0x01,0xc5,0x00,0x5e,0x00, + 0x19,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x18,0x00,0x5f,0x00,0xc9,0x00, + 0x49,0x01,0xc9,0x01,0x21,0x02,0x25,0x02, + 0x5c,0x02,0x84,0x01,0x5b,0xff,0x99,0xfc, + 0x69,0xf8,0x8a,0xf3,0x5d,0xed,0x0f,0xe8, + 0x58,0xdd,0x87,0xd4,0x89,0xd1,0x09,0xce, + 0xaa,0x4d,0xcf,0xce,0xfa,0xd2,0x85,0xd6, + 0xbf,0xdf,0x1d,0xea,0x54,0xef,0x33,0xf5, + 0xc3,0xf9,0x73,0xfd,0xc7,0xff,0x86,0x01, + 0x14,0x02,0xc7,0x01,0x9f,0x01,0x3b,0x01, + 0xc5,0x00,0x5e,0x00,0x19,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf4,0xff, + 0xd1,0xff,0x9c,0xff,0x5b,0xff,0x1d,0xff, + 0xee,0xfe,0xf0,0xfe,0xcf,0xfe,0x45,0xff, + 0x4e,0x00,0xbf,0x01,0xc5,0x03,0x4c,0x06, + 0x45,0x09,0x13,0x0c,0x42,0x11,0xe6,0x15, + 0x03,0x17,0x76,0x19,0xf4,0x58,0x21,0x18, + 0xba,0x16,0x96,0x14,0x31,0x10,0xd9,0x0a, + 0x61,0x08,0x57,0x05,0x25,0x03,0x3d,0x01, + 0x20,0x00,0x38,0xff,0xf9,0xfe,0x1a,0xff, + 0x32,0xff,0x61,0xff,0x9e,0xff,0xd1,0xff, + 0xf4,0xff,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xf1,0xff,0xca,0xff,0x8d,0xff, + 0x4f,0xff,0x12,0xff,0x06,0xff,0xb0,0xfe, + 0xf7,0xfe,0xb1,0xff,0xd0,0x00,0x64,0x01, + 0x39,0x02,0x34,0x05,0x8d,0x07,0x6d,0x09, + 0xf0,0x0b,0xd0,0x12,0x1c,0x15,0xd6,0x17, + 0xf9,0x58,0x9a,0x19,0xa6,0x18,0xcc,0x16, + 0x26,0x14,0xd2,0x0c,0xe3,0x08,0x8c,0x05, + 0xd9,0x03,0x32,0x01,0x48,0xff,0xe3,0xfe, + 0x1c,0xff,0x1c,0xff,0x2c,0xff,0x71,0xff, + 0xa9,0xff,0xd9,0xff,0xf6,0xff,0x00,0x00, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x17,0x00, + 0x3a,0x00,0xa2,0x00,0x81,0x00,0x0f,0x01, + 0x0a,0x00,0xfd,0x00,0x7d,0xfe,0x6e,0x00, + 0x61,0xfc,0x98,0xfd,0x0a,0xf7,0x7a,0xfe, + 0xff,0xf1,0xa2,0xf9,0x8a,0xdf,0x1d,0xed, + 0x7a,0xc4,0xb1,0x06,0x4f,0x35,0x0d,0xae, + 0xeb,0xd6,0x44,0xc2,0x54,0xde,0x30,0xdc, + 0xc4,0xed,0xf2,0xef,0x9e,0xfe,0x44,0xfd, + 0xff,0x03,0xc1,0x02,0xd1,0x04,0xf6,0x02, + 0xff,0x02,0x91,0x01,0x24,0x01,0x67,0x00, + 0x1f,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x1e,0x00,0x64,0x00,0x1b,0x01, + 0x81,0x01,0xe5,0x02,0xcf,0x02,0x99,0x04, + 0x77,0x02,0xa0,0x03,0xd6,0xfc,0x19,0xfe, + 0x57,0xef,0x46,0xed,0xb4,0xdb,0xc7,0xdd, + 0x0e,0xc2,0xd6,0xd6,0x23,0xae,0x9f,0x35, + 0xfb,0x06,0xeb,0xc4,0x8d,0xed,0x32,0xe0, + 0x19,0xfa,0x68,0xf2,0xe1,0xfe,0x5f,0xf7, + 0xf6,0xfd,0xad,0xfc,0xab,0x00,0xb4,0xfe, + 0x29,0x01,0x2b,0x00,0x27,0x01,0x90,0x00, + 0xab,0x00,0x3e,0x00,0x18,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf6,0xff, + 0xdb,0xff,0xad,0xff,0x7b,0xff,0x36,0xff, + 0x34,0xff,0x30,0xff,0x0d,0xff,0x6c,0xff, + 0x79,0x01,0x0a,0x04,0xeb,0x05,0x0a,0x09, + 0x41,0x0d,0x4b,0x14,0x41,0x17,0x51,0x18, + 0x8b,0x1a,0xea,0x58,0xd6,0x16,0x65,0x15, + 0x52,0x12,0xce,0x0b,0x02,0x09,0x71,0x07, + 0xdb,0x04,0x10,0x02,0x1e,0x01,0xae,0x00, + 0x80,0xff,0xdc,0xfe,0x93,0xfe,0xf8,0xfe, + 0x02,0xff,0x49,0xff,0x88,0xff,0xc8,0xff, + 0xf1,0xff,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf0,0xff,0xc5,0xff, + 0x89,0xff,0x4b,0xff,0x24,0xff,0xc9,0xfe, + 0xca,0xfe,0x38,0xff,0xac,0xff,0x75,0x00, + 0x5b,0x00,0x02,0x01,0xab,0x02,0x69,0x05, + 0x5e,0x06,0x8a,0x07,0x58,0x0f,0xcc,0x13, + 0xb6,0x16,0xe9,0x58,0xf6,0x19,0xed,0x19, + 0xbe,0x17,0x0f,0x16,0x01,0x0e,0x49,0x08, + 0xed,0x05,0x61,0x03,0xed,0x00,0xed,0xfe, + 0x05,0xff,0xed,0xfe,0x20,0xff,0x4d,0xff, + 0x7d,0xff,0xb9,0xff,0xe2,0xff,0xf9,0xff, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x00, + 0x44,0x00,0x38,0x00,0x98,0x00,0xbd,0xff, + 0x41,0x00,0x2d,0xfe,0x20,0xff,0xf0,0xfb, + 0xb2,0xff,0xfd,0xfa,0x2d,0x00,0xd2,0xfb, + 0x73,0x07,0x44,0xfc,0xe2,0x03,0x20,0xe8, + 0xc2,0xf6,0x94,0xc2,0xfd,0x38,0x7f,0xff, + 0x9c,0xac,0x3e,0xcf,0x93,0xc0,0x15,0xdb, + 0xe7,0xda,0xd7,0xee,0xb7,0xf3,0x6c,0x00, + 0x9e,0x00,0x02,0x05,0xc3,0x03,0xed,0x04, + 0x0a,0x03,0x72,0x02,0x18,0x01,0x96,0x00, + 0x1d,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x20,0x00,0x71,0x00,0x43,0x01, + 0xe3,0x01,0x9e,0x03,0x37,0x04,0x4d,0x06, + 0xb3,0x04,0xc2,0x05,0xad,0x00,0x1c,0x00, + 0x6b,0xf2,0x9e,0xec,0x28,0xd8,0xbf,0xd7, + 0x38,0xbe,0xda,0xcb,0xf3,0xac,0x44,0xf6, + 0x3f,0x3f,0xe1,0xc4,0xe5,0xf5,0xf2,0xe9, + 0x1f,0x03,0x20,0xfd,0xdb,0x06,0xe6,0xfc, + 0x2e,0x00,0x00,0xfc,0xcb,0xff,0xe9,0xfc, + 0x53,0xff,0xbd,0xfe,0x32,0x00,0xe2,0xff, + 0x58,0x00,0x1c,0x00,0x11,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf9,0xff, + 0xe2,0xff,0xbe,0xff,0x7f,0xff,0x5d,0xff, + 0x24,0xff,0x0e,0xff,0x0a,0xff,0x25,0xff, + 0xd5,0x00,0xb1,0x03,0xd1,0x05,0xc1,0x08, + 0x72,0x0d,0xb1,0x16,0x27,0x17,0x2a,0x1b, + 0x9d,0x17,0xbc,0x58,0x7f,0x19,0x70,0x12, + 0x59,0x10,0xf3,0x06,0x8b,0x06,0xff,0x04, + 0xdb,0x02,0xb1,0x00,0x60,0x00,0x32,0x00, + 0xb5,0xff,0x12,0xff,0xcf,0xfe,0xb0,0xfe, + 0x23,0xff,0x42,0xff,0x89,0xff,0xc3,0xff, + 0xf0,0xff,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf0,0xff,0xc5,0xff, + 0x8b,0xff,0x58,0xff,0x07,0xff,0xca,0xfe, + 0xf6,0xfe,0x23,0xff,0x9d,0xff,0x35,0xff, + 0x30,0xff,0xc2,0xff,0x3d,0x00,0x7f,0x02, + 0xc3,0x03,0x8e,0x04,0x48,0x0c,0xb8,0x12, + 0x9e,0x15,0x83,0x58,0xdb,0x19,0xcb,0x19, + 0xb3,0x17,0x15,0x16,0x64,0x0e,0xc9,0x07, + 0xd7,0x05,0x82,0x02,0x9f,0x00,0x91,0xff, + 0xd1,0xfe,0xee,0xfe,0x2b,0xff,0x6a,0xff, + 0x9b,0xff,0xc7,0xff,0xeb,0xff,0xfb,0xff, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00, + 0x1d,0x00,0x09,0x00,0xde,0xff,0x47,0xff, + 0xc0,0xfe,0x4b,0xfd,0x27,0xfd,0xaa,0xfc, + 0xe9,0xfd,0x22,0xfe,0x97,0x03,0x8c,0x04, + 0x1d,0x0d,0xd0,0x08,0x77,0x06,0xe0,0xf6, + 0xd2,0xf0,0x46,0xd5,0x21,0x4e,0x2b,0xcf, + 0x72,0xb7,0x62,0xc2,0xef,0xc4,0xd4,0xd3, + 0x9a,0xde,0xb7,0xee,0x75,0xf7,0x12,0x01, + 0xd7,0x03,0x88,0x05,0xa9,0x05,0x48,0x05, + 0xd3,0x03,0x92,0x02,0x4b,0x01,0x93,0x00, + 0x20,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x22,0x00,0x83,0x00,0x5d,0x01, + 0x4c,0x02,0x1b,0x04,0xd2,0x04,0x81,0x06, + 0xf0,0x04,0x53,0x05,0x96,0x00,0x40,0xfb, + 0xf1,0xed,0xa2,0xe4,0x0d,0xd1,0x7d,0xcc, + 0x87,0xba,0x42,0xc4,0x79,0xb1,0xa6,0x47, + 0x4c,0xf2,0x40,0xdf,0xb9,0xfd,0x32,0xfe, + 0xaf,0x0c,0xda,0x09,0x03,0x09,0xbb,0x01, + 0x1e,0x01,0x98,0xfc,0x31,0xfe,0x6e,0xfc, + 0xf6,0xfd,0x31,0xfe,0x8d,0xff,0xa5,0xff, + 0x1c,0x00,0x10,0x00,0x0c,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfd,0xff,0xe7,0xff, + 0xd7,0xff,0x86,0xff,0x95,0xff,0xfb,0xfe, + 0x4c,0xff,0x5e,0xfe,0xf6,0xff,0xc3,0xff, + 0x09,0x03,0x33,0x04,0x33,0x09,0x8c,0x0a, + 0x29,0x18,0x07,0x14,0x65,0x1f,0x72,0x0f, + 0x89,0x53,0xbe,0x27,0xc4,0x0b,0xc3,0x12, + 0x47,0x02,0xe8,0x05,0xfe,0x00,0xf7,0x01, + 0x8d,0xfe,0x34,0x00,0x50,0xfe,0x1c,0x00, + 0xd2,0xfe,0x4c,0xff,0xa7,0xfe,0x23,0xff, + 0x43,0xff,0x99,0xff,0xc1,0xff,0xf1,0xff, + 0x00,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf1,0xff,0xc7,0xff, + 0x94,0xff,0x54,0xff,0xfa,0xfe,0xf1,0xfe, + 0xf4,0xfe,0x17,0xff,0x25,0xff,0x32,0xfe, + 0x13,0xfe,0x7b,0xfe,0x6f,0xfe,0xdc,0xff, + 0xa2,0x01,0xdb,0x02,0xe6,0x09,0x98,0x11, + 0xab,0x14,0xeb,0x57,0x34,0x19,0xeb,0x18, + 0x2c,0x17,0x15,0x15,0x6a,0x0e,0x9f,0x07, + 0x3a,0x05,0xe6,0x01,0xc9,0x00,0xf2,0xff, + 0xde,0xfe,0xfc,0xfe,0x42,0xff,0x82,0xff, + 0xb8,0xff,0xd7,0xff,0xf1,0xff,0xfd,0xff, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00, + 0xfc,0xff,0xe1,0xff,0x59,0xff,0xf3,0xfe, + 0x7e,0xfd,0x26,0xfd,0x13,0xfc,0xbf,0xfd, + 0xe5,0xfc,0xce,0x02,0xaa,0x05,0x61,0x0d, + 0x47,0x0f,0xac,0x12,0xf4,0x05,0xb0,0x03, + 0x76,0xe5,0xe9,0xf0,0x36,0x4a,0x18,0xb4, + 0xf4,0xc1,0x18,0xba,0x1b,0xca,0xa2,0xcf, + 0xda,0xe4,0x2b,0xee,0x68,0xfb,0xd6,0x00, + 0x6b,0x06,0xd9,0x05,0xe4,0x06,0x48,0x05, + 0x43,0x04,0x89,0x02,0x6c,0x01,0x89,0x00, + 0x22,0x00,0x00,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x1f,0x00,0x9f,0x00,0x4f,0x01, + 0xe0,0x02,0xaa,0x03,0xde,0x05,0x1c,0x05, + 0xb4,0x06,0xe1,0x02,0xde,0x00,0x5e,0xf4, + 0xcd,0xee,0xb7,0xd9,0x10,0xd3,0x28,0xbe, + 0x26,0xc7,0x1c,0xad,0x74,0xee,0x4d,0x46, + 0x5b,0xcd,0x47,0x01,0x78,0xfb,0x21,0x13, + 0x25,0x0d,0x12,0x14,0xea,0x06,0xf1,0x07, + 0xbc,0xfd,0xb2,0xfe,0x89,0xfb,0x18,0xfd, + 0x33,0xfc,0x64,0xfe,0xac,0xfe,0xba,0xff, + 0xcf,0xff,0x14,0x00,0x04,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfb,0xff,0xf7,0xff, + 0xc6,0xff,0xd8,0xff,0x48,0xff,0x99,0xff, + 0x87,0xfe,0xe5,0xff,0x96,0xff,0x16,0x02, + 0x93,0x01,0xee,0x07,0xc2,0x06,0xad,0x14, + 0x06,0x11,0x69,0x1e,0x68,0x0d,0x21,0x38, + 0x8b,0x47,0xd3,0x05,0x43,0x17,0xf0,0x00, + 0x0e,0x06,0xf8,0xfd,0x70,0x01,0x54,0xfc, + 0xd7,0xff,0x8e,0xfc,0x6f,0xff,0x69,0xfe, + 0x6d,0xff,0x6d,0xfe,0x0a,0xff,0xbf,0xfe, + 0x70,0xff,0x7a,0xff,0xcc,0xff,0xee,0xff, + 0x00,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf1,0xff, + 0xca,0xff,0x9a,0xff,0x4d,0xff,0x06,0xff, + 0x01,0xff,0xf1,0xfe,0x08,0xff,0xac,0xfe, + 0x9e,0xfd,0x59,0xfd,0x6a,0xfd,0x64,0xfd, + 0x2b,0xfe,0x2d,0x00,0xff,0x01,0x54,0x08, + 0xb7,0x10,0x03,0x14,0x51,0x57,0x79,0x18, + 0x10,0x18,0x9d,0x16,0x22,0x14,0x47,0x0e, + 0xa3,0x07,0x89,0x04,0xd2,0x01,0xf0,0x00, + 0x0c,0x00,0x18,0xff,0x05,0xff,0x5b,0xff, + 0x96,0xff,0xca,0xff,0xe4,0xff,0xf5,0xff, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x03,0x00,0xe6,0xff,0xc9,0xff,0x0d,0xff, + 0xac,0xfe,0xdf,0xfc,0x24,0xfd,0xb8,0xfb, + 0x36,0xfe,0x2e,0xfd,0xc1,0x05,0x49,0x07, + 0xd6,0x12,0x09,0x10,0x49,0x18,0x8d,0x05, + 0xb7,0x0a,0xbd,0xdd,0x65,0x06,0x02,0x3f, + 0x41,0xaa,0x41,0xc7,0x3a,0xb7,0xca,0xcc, + 0x43,0xcf,0xa9,0xe8,0x5a,0xee,0xab,0xfd, + 0xbb,0x00,0xf5,0x07,0xfe,0x05,0x7f,0x07, + 0x2f,0x05,0x73,0x04,0x75,0x02,0x7b,0x01, + 0x81,0x00,0x23,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x23,0x00,0x79,0x00,0x7a,0x01, + 0x58,0x02,0x92,0x04,0x07,0x05,0xfa,0x07, + 0xed,0x05,0xf0,0x08,0x7e,0x01,0xf9,0xff, + 0x8d,0xef,0x1c,0xec,0x1d,0xd1,0xb1,0xcf, + 0xe9,0xb5,0xf8,0xc9,0x0f,0xa4,0x25,0x1f, + 0xf8,0x27,0x01,0xd1,0x00,0x0c,0x56,0x00, + 0x66,0x19,0x50,0x0e,0x1b,0x15,0x3e,0x07, + 0xc4,0x07,0x65,0xfd,0xf3,0xfe,0x9d,0xfb, + 0x87,0xfd,0xa8,0xfc,0xb6,0xfe,0xec,0xfe, + 0xcd,0xff,0xdd,0xff,0x04,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf2,0xff, + 0xf0,0xff,0xb8,0xff,0xbd,0xff,0x2c,0xff, + 0x55,0xff,0x90,0xfe,0x55,0x00,0x27,0x00, + 0x76,0x02,0xd5,0x02,0x7e,0x08,0xd7,0x0a, + 0x35,0x16,0xbe,0x12,0x9d,0x1d,0x2b,0x0e, + 0x25,0x53,0xda,0x24,0x9f,0x0a,0xb3,0x0e, + 0x9d,0xff,0xdb,0x02,0xc0,0xfc,0xe5,0xfe, + 0x55,0xfc,0x51,0xfe,0xdc,0xfc,0x07,0xff, + 0xae,0xfe,0x48,0xff,0xda,0xfe,0x37,0xff, + 0x36,0xff,0xa7,0xff,0xc7,0xff,0xf2,0xff, + 0x00,0x00,0x00,0x00,0x28,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xf1,0xff, + 0xcb,0xff,0x9c,0xff,0x4b,0xff,0x0d,0xff, + 0x04,0xff,0xf1,0xfe,0xff,0xfe,0x7f,0xfe, + 0x6c,0xfd,0x1b,0xfd,0x02,0xfd,0x0b,0xfd, + 0x9a,0xfd,0xa8,0xff,0xba,0x01,0xc7,0x07, + 0x60,0x10,0xc7,0x13,0x0d,0x57,0x2d,0x18, + 0xb7,0x17,0x63,0x16,0xc2,0x13,0x37,0x0e, + 0xa6,0x07,0x45,0x04,0xdc,0x01,0xf9,0x00, + 0x13,0x00,0x32,0xff,0x0a,0xff,0x64,0xff, + 0x9e,0xff,0xd0,0xff,0xe9,0xff,0xf7,0xff, + 0x28,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x02,0x00,0xdf,0xff,0xc2,0xff,0xf2,0xfe, + 0x93,0xfe,0xb1,0xfc,0x28,0xfd,0xa1,0xfb, + 0x59,0xfe,0x74,0xfd,0xad,0x06,0xf6,0x07, + 0x85,0x14,0x4e,0x10,0xfa,0x19,0x89,0x05, + 0xb5,0x0c,0x60,0xdb,0x14,0x0e,0xea,0x39, + 0x3c,0xa8,0xb9,0xc8,0xb7,0xb6,0x99,0xcd, + 0x98,0xcf,0xcd,0xe9,0x96,0xee,0x4e,0xfe, + 0xcb,0x00,0x66,0x08,0x10,0x06,0xa6,0x07, + 0x25,0x05,0x7d,0x04,0x6d,0x02,0x7d,0x01, + 0x7e,0x00,0x23,0x00,0x28,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x23,0x00,0x7b,0x00,0x7e,0x01, + 0x62,0x02,0x8b,0x04,0x14,0x05,0xda,0x07, + 0x03,0x06,0xd5,0x08,0x11,0x01,0x3d,0xff, + 0xfd,0xee,0x34,0xeb,0x39,0xd0,0xd4,0xce, + 0x02,0xb6,0x00,0xca,0x60,0xa5,0x39,0x2e, + 0xe2,0x1a,0x1f,0xd6,0x64,0x0d,0x5f,0x03, + 0x8a,0x1a,0x90,0x0f,0x6b,0x15,0xed,0x07, + 0x7c,0x07,0x85,0xfd,0xaa,0xfe,0x90,0xfb, + 0x53,0xfd,0x99,0xfc,0x99,0xfe,0xe4,0xfe, + 0xc4,0xff,0xdb,0xff,0x03,0x00,0x00,0x00, + 0x28,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xff,0xff,0xf6,0xff, + 0xee,0xff,0xc8,0xff,0xae,0xff,0x51,0xff, + 0x2a,0xff,0xf8,0xfe,0x36,0x00,0xa3,0x00, + 0x23,0x02,0x96,0x03,0xf7,0x07,0xde,0x0c, + 0xaa,0x14,0xbf,0x14,0x1f,0x1a,0x77,0x13, + 0x9a,0x56,0x9e,0x19,0x26,0x0e,0x39,0x0a, + 0xbf,0x00,0xc2,0x00,0x04,0xfd,0xa4,0xfd, + 0x96,0xfc,0x7b,0xfd,0x20,0xfd,0xa5,0xfe, + 0xda,0xfe,0x14,0xff,0xf5,0xfe,0x21,0xff, + 0x42,0xff,0xa1,0xff,0xca,0xff,0xf2,0xff, + 0x00,0x00,0x00,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x02,0x00,0x03,0x00,0x03,0x00,0x03,0x00, + 0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, + 0x00,0x00,0x02,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0xb5,0xff,0x00,0x00, + 0x04,0x00,0x00,0x00,0xc4,0xff,0x00,0x00, + 0x08,0x00,0x00,0x00,0xd3,0xff,0x00,0x00, + 0x0c,0x00,0x00,0x00,0xe2,0xff,0x00,0x00, + 0x10,0x00,0x00,0x00,0xf1,0xff,0x00,0x00, + 0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x18,0x00,0x00,0x00,0x0f,0x00,0x00,0x00, + 0x1c,0x00,0x00,0x00,0x1e,0x00,0x00,0x00, + 0x20,0x00,0x00,0x00,0x2d,0x00,0x00,0x00, + 0x24,0x00,0x00,0x00,0x3c,0x00,0x00,0x00, + 0x28,0x00,0x00,0x00,0x4b,0x00,0x00,0x00, + 0x2c,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x30,0x00,0x00,0x00,0x00,0x00,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x39,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x54,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line4_28mm_azm90_90_13_48khz.conf b/tools/topology/topology2/include/components/tdfb/line4_28mm_azm90_90_13_48khz.conf new file mode 100644 index 000000000000..fb13f144c246 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line4_28mm_azm90_90_13_48khz.conf @@ -0,0 +1,1218 @@ +# Created with script example_line_array.m 23-Oct-2023 +# cd tools/tune/tdfb; octave --no-window-system example_line_array.m +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0xc4,0x25,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xc4,0x25,0x00,0x00,0x04,0x00,0x02,0x00, + 0x01,0x00,0x04,0x00,0x0d,0x00,0x01,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfa,0xff,0xeb,0xff,0x00,0x00,0xf1,0xff, + 0x0e,0x00,0xf3,0xff,0x28,0x00,0x01,0x00, + 0x5b,0x00,0x15,0x00,0x71,0x00,0x38,0x00, + 0xe2,0x00,0x92,0x00,0x7d,0x01,0x0f,0x01, + 0x4c,0x02,0x99,0x01,0x60,0x03,0x7d,0x03, + 0x28,0x05,0x5b,0x04,0x7b,0x06,0x35,0x05, + 0xc9,0x07,0xe6,0x05,0xba,0x08,0x90,0x05, + 0xca,0x09,0x4c,0x05,0x3e,0x0b,0xc9,0x03, + 0x4b,0x0e,0x9a,0xfc,0x99,0x41,0x38,0x1a, + 0x11,0xff,0xca,0x0b,0x8f,0x02,0xa4,0x08, + 0xef,0x02,0xaf,0x06,0x93,0x02,0xb1,0x03, + 0x32,0x00,0x3b,0x02,0xba,0xff,0x40,0x01, + 0x55,0xff,0x84,0x00,0x20,0xff,0x44,0x00, + 0xed,0xfe,0xd5,0xff,0xfc,0xfe,0xb7,0xff, + 0x1d,0xff,0xb4,0xff,0x49,0xff,0xbc,0xff, + 0x61,0xff,0xbc,0xff,0x8b,0xff,0xce,0xff, + 0xaf,0xff,0xde,0xff,0xcc,0xff,0xf4,0xff, + 0xed,0xff,0xfb,0xff,0xf7,0xff,0xfe,0xff, + 0xfe,0xff,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0x0c,0x00, + 0x1e,0x00,0x2b,0x00,0x49,0x00,0x4d,0x00, + 0x84,0x00,0x7d,0x00,0xa0,0x00,0x68,0x00, + 0x7e,0x00,0x02,0x00,0x01,0x00,0x3d,0xff, + 0x35,0xff,0xf0,0xfd,0xc3,0xfd,0x0e,0xfc, + 0xd6,0xfb,0xac,0xf9,0x84,0xf9,0xda,0xf6, + 0xb5,0xf5,0x26,0xf2,0x9e,0xf2,0x0f,0xef, + 0x27,0xf0,0x47,0xec,0x54,0xee,0x14,0xea, + 0xae,0xec,0x49,0xe7,0x28,0xed,0xba,0xe6, + 0xd6,0xef,0xdc,0xe5,0x78,0xf6,0x8b,0xdd, + 0xc8,0x6a,0x09,0x0a,0x49,0xe9,0x0e,0xfd, + 0x03,0xf3,0x0d,0xfe,0xbb,0xf8,0x78,0x00, + 0x22,0xfd,0xc9,0x03,0x52,0x01,0x6c,0x05, + 0x50,0x03,0x47,0x06,0x6a,0x04,0x67,0x06, + 0xdb,0x04,0x62,0x06,0x2a,0x04,0x08,0x05, + 0x58,0x03,0xc7,0x03,0x56,0x02,0x88,0x02, + 0x5d,0x01,0x72,0x01,0x7c,0x00,0x96,0x00, + 0x00,0x00,0x19,0x00,0xbe,0xff,0xdb,0xff, + 0xaf,0xff,0xe1,0xff,0xd3,0xff,0xe7,0xff, + 0xe6,0xff,0xf4,0xff,0xf9,0xff,0xfe,0xff, + 0x00,0x00,0x00,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xff, + 0xfa,0xff,0xf1,0xff,0xeb,0xff,0xde,0xff, + 0xdd,0xff,0xd1,0xff,0xc7,0xff,0xb5,0xff, + 0xde,0xff,0xdf,0xff,0x2e,0x00,0x42,0x00, + 0xbe,0x00,0xf7,0x00,0xbd,0x01,0xee,0x01, + 0xdb,0x02,0x06,0x03,0x0e,0x04,0x1b,0x04, + 0x20,0x05,0x24,0x05,0x4e,0x06,0x09,0x05, + 0x22,0x06,0x9f,0x04,0x87,0x05,0x5b,0x03, + 0x2d,0x04,0x37,0x01,0x33,0x01,0xb9,0xfc, + 0x14,0xfe,0x83,0xf8,0x17,0xfb,0x38,0xf3, + 0x8f,0xf9,0x0e,0xe9,0x5c,0x6f,0x48,0xfa, + 0x57,0xe8,0xdd,0xef,0xe5,0xe8,0xad,0xec, + 0xa4,0xe8,0x65,0xeb,0x28,0xe9,0xd5,0xec, + 0xce,0xeb,0x60,0xee,0x1a,0xee,0xa0,0xf0, + 0xec,0xf0,0x57,0xf3,0x19,0xf4,0x7b,0xf7, + 0x75,0xf8,0x41,0xfa,0xf9,0xfa,0x7c,0xfc, + 0x16,0xfd,0x40,0xfe,0xb1,0xfe,0x7c,0xff, + 0xa6,0xff,0x2a,0x00,0x40,0x00,0x82,0x00, + 0x7a,0x00,0x8d,0x00,0x73,0x00,0x59,0x00, + 0x3e,0x00,0x30,0x00,0x1b,0x00,0x0d,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xfc,0xff, + 0xfa,0xff,0xf7,0xff,0xf3,0xff,0xee,0xff, + 0xda,0xff,0xce,0xff,0xc2,0xff,0xb6,0xff, + 0xa7,0xff,0x9b,0xff,0x88,0xff,0x89,0xff, + 0x81,0xff,0x74,0xff,0x65,0xff,0x61,0xff, + 0x58,0xff,0x64,0xff,0x60,0xff,0xa2,0xff, + 0xc5,0xff,0xc0,0xff,0x10,0x00,0x48,0x00, + 0xa9,0x00,0xfc,0x00,0x72,0x01,0xde,0x01, + 0xe0,0x03,0xb5,0x04,0x20,0x05,0xb1,0x05, + 0x22,0x06,0xa0,0x06,0x02,0x07,0x66,0x07, + 0xa5,0x47,0xea,0x07,0x00,0x08,0x10,0x08, + 0xfe,0x07,0xe5,0x07,0xac,0x07,0x69,0x07, + 0x1f,0x07,0x3c,0x07,0xb5,0x06,0x47,0x06, + 0xab,0x05,0x37,0x05,0x8b,0x04,0x2c,0x04, + 0x28,0x03,0x19,0x02,0xef,0x01,0x7d,0x01, + 0x37,0x01,0xe6,0x00,0xac,0x00,0x76,0x00, + 0x4a,0x00,0x37,0x00,0x3d,0x00,0x21,0x00, + 0x14,0x00,0x07,0x00,0x01,0x00,0xfd,0xff, + 0xfb,0xff,0xf2,0xff,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf9,0xff,0xe0,0xff,0xf6,0xff,0xe0,0xff, + 0x1a,0x00,0xdd,0xff,0x47,0x00,0xef,0xff, + 0xa1,0x00,0x09,0x00,0xce,0x00,0x42,0x00, + 0xa1,0x01,0xe1,0x00,0xc6,0x02,0xc7,0x01, + 0x46,0x04,0xea,0x02,0x8f,0x05,0xb3,0x05, + 0x39,0x0a,0xb7,0x07,0xdd,0x0c,0x67,0x09, + 0x9a,0x0f,0xc5,0x0a,0x0b,0x12,0x1e,0x0a, + 0x38,0x14,0x88,0x09,0x88,0x17,0x72,0x06, + 0xd3,0x1d,0x16,0xfa,0x4b,0x48,0x5c,0x76, + 0xc2,0xf3,0x5f,0x1d,0x60,0x02,0x5a,0x14, + 0xb2,0x04,0x8c,0x0f,0xcd,0x04,0xf0,0x0a, + 0xde,0xff,0xf7,0x05,0x24,0xff,0xb8,0x03, + 0x68,0xfe,0x0f,0x02,0xe0,0xfd,0x86,0x01, + 0xf7,0xfd,0x16,0x00,0xda,0xfd,0xc5,0xff, + 0x13,0xfe,0xa7,0xff,0x69,0xfe,0xa9,0xff, + 0xb1,0xfe,0x8b,0xff,0xef,0xfe,0xa4,0xff, + 0x3b,0xff,0xbd,0xff,0x7a,0xff,0xe7,0xff, + 0xcc,0xff,0xf5,0xff,0xe4,0xff,0xfa,0xff, + 0xf5,0xff,0xfe,0xff,0xff,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0x0b,0x00, + 0x20,0x00,0x28,0x00,0x4f,0x00,0x45,0x00, + 0x86,0x00,0x73,0x00,0xbc,0x00,0x59,0x00, + 0xab,0x00,0xed,0xff,0x44,0x00,0x23,0xff, + 0x90,0xff,0xc4,0xfd,0x3c,0xfe,0xd0,0xfb, + 0x72,0xfc,0x54,0xf9,0x47,0xfa,0x59,0xf6, + 0xec,0xf6,0x90,0xf1,0xb4,0xf3,0x2e,0xee, + 0x75,0xf1,0x0b,0xeb,0xe5,0xef,0x60,0xe8, + 0xc9,0xee,0xbc,0xe4,0x9b,0xef,0x1b,0xe3, + 0x74,0xf3,0x3c,0xe0,0xfa,0xfc,0x68,0xd2, + 0xe5,0x4b,0x90,0x37,0x1a,0xda,0xbd,0x04, + 0x64,0xec,0xc7,0x01,0x5c,0xf4,0xba,0x02, + 0xc1,0xf9,0xd2,0x04,0xdc,0xfe,0x65,0x06, + 0x50,0x01,0x02,0x07,0xcc,0x02,0x00,0x07, + 0x7a,0x03,0x28,0x07,0x61,0x03,0x60,0x05, + 0xaf,0x02,0x16,0x04,0xd8,0x01,0xcc,0x02, + 0x01,0x01,0xb2,0x01,0x52,0x00,0xc0,0x00, + 0xdc,0xff,0x3a,0x00,0xa8,0xff,0xf2,0xff, + 0xa3,0xff,0xef,0xff,0xcd,0xff,0xee,0xff, + 0xe4,0xff,0xf6,0xff,0xf8,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xff, + 0xfa,0xff,0xf0,0xff,0xed,0xff,0xd9,0xff, + 0xe2,0xff,0xc8,0xff,0xdb,0xff,0x9d,0xff, + 0xe9,0xff,0xb9,0xff,0x3a,0x00,0x07,0x00, + 0xcd,0x00,0xac,0x00,0xc9,0x01,0x78,0x01, + 0xea,0x02,0x71,0x02,0x29,0x04,0x66,0x03, + 0x4d,0x05,0x62,0x04,0xdf,0x06,0x02,0x04, + 0x9d,0x06,0x6d,0x03,0x3e,0x06,0xf4,0x01, + 0x36,0x05,0x86,0xff,0xae,0x02,0xa6,0xfa, + 0x4d,0x00,0xad,0xf5,0x8a,0xfe,0xa9,0xee, + 0x28,0x00,0x9a,0xdd,0x2d,0x67,0xc0,0x0f, + 0x74,0xdf,0x79,0xf5,0xe3,0xe4,0xd1,0xef, + 0x16,0xe6,0x84,0xed,0x35,0xe7,0x1c,0xee, + 0x83,0xea,0x71,0xef,0x0b,0xed,0x6a,0xf1, + 0x0e,0xf0,0xe9,0xf3,0x62,0xf3,0x98,0xf7, + 0xd2,0xf7,0x8d,0xfa,0x78,0xfa,0xb0,0xfc, + 0xb0,0xfc,0x65,0xfe,0x62,0xfe,0x9e,0xff, + 0x7b,0xff,0x3b,0x00,0x1e,0x00,0x8f,0x00, + 0x64,0x00,0x96,0x00,0x64,0x00,0x5c,0x00, + 0x38,0x00,0x31,0x00,0x19,0x00,0x0e,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xfc,0xff, + 0xfa,0xff,0xf7,0xff,0xf3,0xff,0xf1,0xff, + 0xdf,0xff,0xd0,0xff,0xc7,0xff,0xbb,0xff, + 0xaf,0xff,0xa2,0xff,0x96,0xff,0x9a,0xff, + 0x8f,0xff,0x87,0xff,0x78,0xff,0x78,0xff, + 0x6d,0xff,0x7f,0xff,0x75,0xff,0xdc,0xff, + 0xf0,0xff,0xd9,0xff,0x2a,0x00,0x64,0x00, + 0xbf,0x00,0x1a,0x01,0x80,0x01,0x16,0x02, + 0x22,0x04,0xc1,0x04,0x40,0x05,0xc2,0x05, + 0x3d,0x06,0xb2,0x06,0x1a,0x07,0x78,0x07, + 0xba,0x47,0x00,0x08,0x1b,0x08,0x2a,0x08, + 0x19,0x08,0x01,0x08,0xc7,0x07,0x89,0x07, + 0x2d,0x07,0x4b,0x07,0xd2,0x06,0x5d,0x06, + 0xc3,0x05,0x4d,0x05,0x9e,0x04,0x43,0x04, + 0x11,0x03,0x06,0x02,0x03,0x02,0x84,0x01, + 0x45,0x01,0xec,0x00,0xb7,0x00,0x79,0x00, + 0x53,0x00,0x2b,0x00,0x37,0x00,0x23,0x00, + 0x13,0x00,0x07,0x00,0x00,0x00,0xfd,0xff, + 0xf7,0xff,0xf1,0xff,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfb,0xff,0xf2,0xff,0xf6,0xff,0xea,0xff, + 0x05,0x00,0xf7,0xff,0x17,0x00,0x09,0x00, + 0x31,0x00,0x02,0x00,0x60,0x00,0x42,0x00, + 0xc4,0x00,0xa3,0x00,0x52,0x01,0x28,0x01, + 0x0d,0x02,0xad,0x01,0x71,0x02,0xb0,0x02, + 0xfb,0x04,0x62,0x04,0x34,0x06,0x62,0x05, + 0x76,0x07,0x45,0x06,0x69,0x08,0x2e,0x06, + 0x54,0x09,0x4d,0x06,0x73,0x0a,0x95,0x05, + 0x35,0x0c,0x5d,0x02,0x6c,0x15,0x80,0x44, + 0x5a,0xfe,0x3e,0x0c,0x70,0x03,0xf8,0x08, + 0xde,0x03,0x26,0x07,0x76,0x03,0xa8,0x05, + 0x7f,0x01,0x81,0x02,0x8e,0x00,0xa0,0x01, + 0x0a,0x00,0xea,0x00,0xb6,0xff,0xcf,0x00, + 0xe8,0xff,0x2c,0x00,0x68,0xff,0xf5,0xff, + 0x72,0xff,0xe5,0xff,0x86,0xff,0xdd,0xff, + 0x99,0xff,0xda,0xff,0xa1,0xff,0xd3,0xff, + 0xb9,0xff,0xdc,0xff,0xd4,0xff,0xf9,0xff, + 0xed,0xff,0xfb,0xff,0xf5,0xff,0xfc,0xff, + 0xfb,0xff,0xff,0xff,0xff,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0x0c,0x00, + 0x1d,0x00,0x28,0x00,0x46,0x00,0x46,0x00, + 0x6d,0x00,0x67,0x00,0xa5,0x00,0x56,0x00, + 0x84,0x00,0xee,0xff,0x24,0x00,0x28,0xff, + 0x36,0xff,0xc5,0xfd,0xca,0xfd,0xdb,0xfb, + 0xe7,0xfb,0x77,0xf9,0x8b,0xf9,0xe6,0xf5, + 0x5c,0xf6,0x05,0xf2,0xf8,0xf2,0xd4,0xee, + 0xa8,0xf0,0xef,0xeb,0xff,0xee,0x54,0xe9, + 0xfc,0xec,0x88,0xe6,0x9d,0xed,0x6b,0xe5, + 0xaa,0xf0,0xc3,0xe3,0x46,0xf8,0x0d,0xd9, + 0xe1,0x65,0x92,0x12,0xd1,0xe4,0x61,0xfe, + 0x55,0xf0,0x2e,0xfe,0x6f,0xf6,0x07,0x00, + 0xc5,0xfa,0x44,0x02,0x44,0xff,0x4b,0x04, + 0x58,0x01,0x1b,0x05,0x98,0x02,0x49,0x05, + 0x8a,0x03,0xef,0x05,0x52,0x03,0x19,0x04, + 0x4f,0x02,0x0a,0x03,0x80,0x01,0xfa,0x01, + 0xc9,0x00,0x1f,0x01,0x3f,0x00,0x71,0x00, + 0xc7,0xff,0x02,0x00,0xa3,0xff,0xd4,0xff, + 0xc0,0xff,0xe8,0xff,0xd0,0xff,0xea,0xff, + 0xe6,0xff,0xf6,0xff,0xf9,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, + 0xf8,0xff,0xf7,0xff,0xe4,0xff,0xee,0xff, + 0xcb,0xff,0xf2,0xff,0xb3,0xff,0xe2,0xff, + 0x98,0xff,0x1b,0x00,0xb6,0xff,0x99,0x00, + 0x24,0x00,0x51,0x01,0xa1,0x00,0x3b,0x02, + 0x48,0x01,0x5d,0x03,0xfe,0x01,0x80,0x04, + 0x01,0x03,0x5b,0x06,0xcb,0x02,0xcc,0x05, + 0xc7,0x01,0xbe,0x05,0x44,0x00,0x1b,0x05, + 0xcf,0xfd,0x17,0x03,0xf4,0xf8,0x82,0x01, + 0xd9,0xf3,0x94,0x00,0x46,0xec,0x46,0x03, + 0x43,0xdb,0x93,0x2f,0xf8,0x51,0x61,0xd2, + 0x4e,0xfc,0x4e,0xe0,0xf4,0xf2,0x2e,0xe3, + 0x33,0xef,0xfd,0xe4,0x4f,0xee,0x69,0xe8, + 0xf4,0xef,0x36,0xeb,0x79,0xf1,0x58,0xee, + 0xa5,0xf3,0xd2,0xf1,0x0b,0xf7,0xb8,0xf5, + 0x30,0xfa,0x48,0xf9,0x5e,0xfc,0xc0,0xfb, + 0x27,0xfe,0xb6,0xfd,0x7d,0xff,0x20,0xff, + 0x55,0x00,0xe5,0xff,0xa8,0x00,0x51,0x00, + 0xbc,0x00,0x5e,0x00,0x78,0x00,0x44,0x00, + 0x4c,0x00,0x27,0x00,0x1f,0x00,0x0b,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xfe,0xff,0xfd,0xff,0xfa,0xff, + 0xf9,0xff,0xf6,0xff,0xf4,0xff,0xf1,0xff, + 0xdd,0xff,0xd0,0xff,0xcb,0xff,0xc0,0xff, + 0xbe,0xff,0xc0,0xff,0xbd,0xff,0xb7,0xff, + 0xb8,0xff,0xb3,0xff,0xb3,0xff,0xb4,0xff, + 0xbc,0xff,0xe7,0xff,0x60,0x00,0x58,0x00, + 0x3e,0x00,0x67,0x00,0xbf,0x00,0xf7,0x00, + 0x77,0x01,0x9f,0x01,0xee,0x02,0x9b,0x04, + 0xf1,0x04,0x94,0x05,0xfa,0x05,0x81,0x06, + 0xe7,0x06,0x56,0x07,0xa6,0x07,0xee,0x47, + 0x2e,0x08,0x5b,0x08,0x69,0x08,0x5e,0x08, + 0x45,0x08,0x0c,0x08,0xd1,0x07,0x64,0x07, + 0x59,0x07,0x27,0x07,0x90,0x06,0x0b,0x06, + 0x7a,0x05,0xe4,0x04,0x5a,0x04,0xd9,0x02, + 0x06,0x02,0xfd,0x01,0xb3,0x01,0x5c,0x01, + 0x0c,0x01,0xca,0x00,0x8f,0x00,0x5f,0x00, + 0x38,0x00,0x18,0x00,0x1c,0x00,0x17,0x00, + 0x06,0x00,0x01,0x00,0xf9,0xff,0xee,0xff, + 0xf1,0xff,0xf5,0xff,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xf4,0xff,0xf7,0xff,0xe1,0xff,0xf3,0xff, + 0xcc,0xff,0xfa,0xff,0xe8,0xff,0x3a,0x00, + 0xcd,0xff,0x7b,0x00,0x16,0x00,0x19,0x01, + 0x99,0x00,0x06,0x02,0x60,0x01,0x4b,0x03, + 0x6a,0x02,0x5e,0x04,0xfd,0x02,0x2f,0x06, + 0x78,0x04,0x93,0x0a,0xe2,0x08,0xaf,0x0d, + 0xaa,0x0a,0x9b,0x10,0xcb,0x0b,0x16,0x12, + 0xbd,0x0b,0xcd,0x14,0x38,0x0b,0xea,0x17, + 0x62,0x08,0x77,0x1d,0x25,0xfd,0x91,0x41, + 0x9a,0x7c,0xbf,0xf5,0x8f,0x1d,0x07,0x04, + 0x26,0x15,0x43,0x06,0xb4,0x10,0xfa,0x05, + 0x58,0x0d,0x2a,0x04,0xba,0x06,0xff,0x00, + 0xde,0x04,0x4f,0x00,0x5c,0x03,0x5f,0x00, + 0x3d,0x03,0x32,0x00,0x54,0x02,0x7f,0xff, + 0xf8,0x00,0x55,0xff,0x99,0x00,0x56,0xff, + 0x55,0x00,0x64,0xff,0x24,0x00,0x7a,0xff, + 0x04,0x00,0x7c,0xff,0x06,0x00,0xd0,0xff, + 0x07,0x00,0xdd,0xff,0xfe,0xff,0xe9,0xff, + 0xfb,0xff,0xf5,0xff,0xfd,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0x0a,0x00, + 0x1d,0x00,0x22,0x00,0x47,0x00,0x39,0x00, + 0x71,0x00,0x3b,0x00,0x8e,0x00,0x43,0x00, + 0xa7,0x00,0xea,0xff,0x47,0x00,0x09,0xff, + 0x74,0xff,0xa5,0xfd,0x2e,0xfe,0xb7,0xfb, + 0x79,0xfc,0x35,0xf9,0xb0,0xf9,0xc9,0xf5, + 0x67,0xf7,0x93,0xf2,0x30,0xf4,0xa8,0xee, + 0x23,0xf2,0x97,0xeb,0xc5,0xf0,0x47,0xe8, + 0xea,0xee,0x5e,0xe5,0xce,0xef,0xfc,0xe2, + 0x41,0xf3,0xdb,0xdf,0x9d,0xfc,0x24,0xd2, + 0x5c,0x45,0x06,0x3d,0xc5,0xd7,0xb9,0x03, + 0x48,0xea,0xe9,0xff,0xee,0xf1,0x29,0x00, + 0xe0,0xf6,0x24,0x01,0x06,0xfb,0x73,0x03, + 0xfa,0xfd,0x02,0x04,0xa9,0xff,0x37,0x04, + 0x59,0x01,0xb8,0x04,0x99,0x01,0xf0,0x03, + 0xbf,0x00,0x59,0x02,0x4e,0x00,0x8c,0x01, + 0xf6,0xff,0xde,0x00,0xb4,0xff,0x5f,0x00, + 0x93,0xff,0x09,0x00,0x7c,0xff,0xff,0xff, + 0xb7,0xff,0xf1,0xff,0xce,0xff,0xf2,0xff, + 0xe7,0xff,0xfa,0xff,0xfa,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xff,0xff,0xfc,0xff, + 0xf3,0xff,0xf2,0xff,0xdd,0xff,0xe7,0xff, + 0xc4,0xff,0xe3,0xff,0xb6,0xff,0xe2,0xff, + 0x76,0xff,0x01,0x00,0xa3,0xff,0x55,0x00, + 0xd9,0xff,0xd4,0x00,0x34,0x00,0x7f,0x01, + 0xa4,0x00,0x3e,0x02,0x53,0x01,0xe6,0x03, + 0x06,0x02,0x7b,0x04,0x9a,0x01,0x88,0x03, + 0x25,0x00,0x17,0x03,0x7d,0xfe,0x24,0x02, + 0x28,0xfb,0x80,0xff,0x94,0xf7,0xfd,0xfd, + 0x0f,0xf3,0xf8,0xfc,0x50,0xec,0x93,0xff, + 0x0a,0xdb,0x20,0x64,0x2d,0x13,0x84,0xdd, + 0x02,0xf6,0xf6,0xe3,0x17,0xf0,0xb3,0xe5, + 0x23,0xee,0x98,0xe7,0x1b,0xee,0x95,0xea, + 0x6e,0xf0,0x6d,0xed,0x36,0xf2,0x54,0xf0, + 0xb0,0xf4,0x4b,0xf4,0xb6,0xf7,0x23,0xf7, + 0x30,0xfa,0x74,0xfa,0xb6,0xfc,0x9c,0xfc, + 0x5c,0xfe,0x48,0xfe,0x8a,0xff,0x70,0xff, + 0x43,0x00,0x1e,0x00,0x8c,0x00,0x4f,0x00, + 0x6b,0x00,0x40,0x00,0x53,0x00,0x30,0x00, + 0x2d,0x00,0x16,0x00,0x0d,0x00,0x03,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, + 0xfe,0xff,0xfd,0xff,0xfb,0xff,0xfa,0xff, + 0xf9,0xff,0xfa,0xff,0xf8,0xff,0xfb,0xff, + 0xe9,0xff,0xdd,0xff,0xe9,0xff,0xe6,0xff, + 0xeb,0xff,0xed,0xff,0xf3,0xff,0xf9,0xff, + 0x03,0x00,0x12,0x00,0x1a,0x00,0x5e,0x00, + 0xb4,0x00,0xbf,0x00,0x08,0x01,0xea,0x00, + 0xec,0x00,0x33,0x01,0x7e,0x01,0xc7,0x01, + 0x55,0x02,0x42,0x04,0xdd,0x04,0x60,0x05, + 0xe9,0x05,0x64,0x06,0xd4,0x06,0x38,0x07, + 0x95,0x07,0xe2,0x07,0x23,0x48,0x5f,0x08, + 0x8b,0x08,0x9d,0x08,0xa4,0x08,0x83,0x08, + 0x59,0x08,0x0b,0x08,0xbe,0x07,0x50,0x07, + 0x5e,0x07,0xe0,0x06,0x5a,0x06,0xae,0x05, + 0x3d,0x05,0x07,0x04,0xab,0x02,0x6c,0x02, + 0xdd,0x01,0xb6,0x01,0x86,0x01,0x34,0x01, + 0xe8,0x00,0xad,0x00,0x75,0x00,0x4e,0x00, + 0x28,0x00,0x11,0x00,0xfb,0xff,0x09,0x00, + 0xfb,0xff,0xeb,0xff,0xee,0xff,0xf0,0xff, + 0xf5,0xff,0xf8,0xff,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xfd,0xff,0xf8,0xff,0xf9,0xff, + 0xf0,0xff,0xf9,0xff,0xe6,0xff,0xeb,0xff, + 0xe0,0xff,0x19,0x00,0x19,0x00,0x56,0x00, + 0x55,0x00,0xb3,0x00,0xb2,0x00,0x37,0x01, + 0x2e,0x01,0x98,0x01,0x89,0x01,0x63,0x02, + 0x44,0x02,0x57,0x03,0x0c,0x03,0x33,0x05, + 0x99,0x05,0xdd,0x06,0x8c,0x06,0xc2,0x07, + 0xb2,0x06,0xa9,0x08,0x31,0x07,0x92,0x09, + 0x28,0x07,0x71,0x0a,0x46,0x06,0x2c,0x0c, + 0xb8,0x01,0xb9,0x46,0xd8,0x10,0xc8,0x03, + 0x32,0x0a,0x42,0x05,0x4f,0x08,0x13,0x05, + 0xea,0x06,0x7a,0x04,0xb8,0x05,0xa8,0x03, + 0x19,0x03,0x99,0x01,0x4b,0x02,0x39,0x01, + 0x2a,0x02,0x48,0x01,0xaf,0x01,0xf9,0x00, + 0x41,0x01,0xb1,0x00,0xb2,0x00,0x25,0x00, + 0x62,0x00,0x0c,0x00,0x38,0x00,0xf9,0xff, + 0x19,0x00,0xec,0xff,0x1b,0x00,0x04,0x00, + 0x0b,0x00,0xf5,0xff,0xff,0xff,0xf6,0xff, + 0xfc,0xff,0xf9,0xff,0xfd,0xff,0xfe,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00, + 0x09,0x00,0x16,0x00,0x1f,0x00,0x32,0x00, + 0x35,0x00,0x48,0x00,0x3c,0x00,0x51,0x00, + 0x1b,0x00,0x4a,0x00,0xeb,0xff,0xd0,0xff, + 0x24,0xff,0xec,0xfe,0xf0,0xfd,0xa0,0xfd, + 0x34,0xfc,0x44,0xfb,0x9b,0xf9,0x20,0xf9, + 0x32,0xf7,0xd4,0xf6,0xb1,0xf4,0xeb,0xf3, + 0x1d,0xf1,0x83,0xf1,0xcf,0xee,0x03,0xef, + 0x97,0xeb,0xa0,0xed,0x16,0xea,0x69,0xed, + 0x23,0xe9,0xa7,0xee,0x5c,0xe8,0x09,0xf3, + 0xed,0xe2,0x4b,0x6d,0x41,0xfe,0x71,0xeb, + 0x74,0xf7,0x8f,0xf1,0x52,0xf8,0x30,0xf5, + 0xfe,0xf9,0x22,0xf8,0xc4,0xfb,0xb3,0xfa, + 0x72,0xfe,0x67,0xfd,0x7a,0xff,0xbf,0xfe, + 0x0f,0x01,0x23,0x00,0x30,0x01,0x58,0x00, + 0x0e,0x01,0x67,0x00,0x72,0x00,0x9b,0xff, + 0x09,0x00,0x87,0xff,0xd4,0xff,0x7d,0xff, + 0xba,0xff,0x85,0xff,0xe8,0xff,0xcf,0xff, + 0xe5,0xff,0xcc,0xff,0xe6,0xff,0xe1,0xff, + 0xf1,0xff,0xf2,0xff,0xfb,0xff,0xfd,0xff, + 0x00,0x00,0x00,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff, + 0xf9,0xff,0xf5,0xff,0xeb,0xff,0xe7,0xff, + 0xd8,0xff,0xd8,0xff,0xcc,0xff,0xe2,0xff, + 0xc6,0xff,0xa7,0xff,0x82,0xff,0xaa,0xff, + 0x88,0xff,0xc5,0xff,0xa2,0xff,0xf1,0xff, + 0xdc,0xff,0xce,0x00,0x71,0x00,0xe6,0x00, + 0x68,0x00,0xdc,0x00,0x21,0x00,0xda,0xff, + 0x3c,0xfe,0xb2,0xfe,0xea,0xfc,0x68,0xfc, + 0xc9,0xf9,0x62,0xfa,0x57,0xf7,0x57,0xf8, + 0x7d,0xf4,0x74,0xf6,0xe5,0xf0,0x7d,0xf5, + 0xae,0xe9,0xab,0x6e,0xed,0xf5,0x87,0xe9, + 0xc6,0xee,0xf7,0xe9,0xe2,0xec,0x5f,0xea, + 0xa7,0xec,0x6e,0xeb,0x80,0xed,0x3c,0xed, + 0x2e,0xf0,0x47,0xf0,0x37,0xf2,0xed,0xf2, + 0x8c,0xf5,0x12,0xf6,0xdf,0xf7,0x88,0xf8, + 0x23,0xfa,0xcc,0xfa,0x91,0xfc,0x4e,0xfd, + 0x3d,0xfe,0xb0,0xfe,0x5d,0xff,0xa6,0xff, + 0x13,0x00,0x34,0x00,0x3e,0x00,0x3e,0x00, + 0x51,0x00,0x3f,0x00,0x40,0x00,0x2e,0x00, + 0x24,0x00,0x15,0x00,0x0b,0x00,0x03,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff, + 0xfd,0xff,0xfb,0xff,0xfb,0xff,0xfa,0xff, + 0xfc,0xff,0xfc,0xff,0x05,0x00,0x0f,0x00, + 0x15,0x00,0x02,0x00,0x09,0x00,0x13,0x00, + 0x22,0x00,0x30,0x00,0x45,0x00,0x54,0x00, + 0x83,0x00,0xe8,0x00,0x10,0x01,0x40,0x01, + 0x6e,0x01,0x9f,0x01,0xdd,0x01,0xc5,0x01, + 0xcf,0x01,0x30,0x02,0x6a,0x02,0x31,0x04, + 0xfe,0x04,0x58,0x05,0xe2,0x05,0x4d,0x06, + 0xca,0x06,0x2e,0x07,0x90,0x07,0xd5,0x07, + 0x1f,0x08,0x46,0x48,0x7f,0x08,0x94,0x08, + 0xa8,0x08,0x9d,0x08,0x8f,0x08,0x5f,0x08, + 0x29,0x08,0xca,0x07,0x6d,0x07,0xff,0x06, + 0x08,0x07,0x64,0x06,0xfa,0x05,0xf6,0x04, + 0x66,0x03,0x02,0x03,0x85,0x02,0x20,0x02, + 0xbc,0x01,0x5f,0x01,0x46,0x01,0x12,0x01, + 0xca,0x00,0x96,0x00,0x66,0x00,0x41,0x00, + 0x23,0x00,0x0c,0x00,0xe9,0xff,0xe0,0xff, + 0xe9,0xff,0xf3,0xff,0xf2,0xff,0xf6,0xff, + 0xf8,0xff,0xfc,0xff,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xff,0xff,0xfc,0xff,0xfc,0xff, + 0xf6,0xff,0xf1,0xff,0xef,0xff,0xf3,0xff, + 0xf4,0xff,0x03,0x00,0x08,0x00,0x2c,0x00, + 0x5f,0x00,0x91,0x00,0xb5,0x00,0xf4,0x00, + 0xe9,0x00,0x46,0x01,0x78,0x01,0xf3,0x01, + 0x2b,0x02,0xbe,0x02,0xf4,0x02,0x9e,0x03, + 0xc9,0x03,0xb1,0x05,0x3c,0x06,0x96,0x06, + 0x86,0x06,0x6a,0x07,0x34,0x07,0x24,0x08, + 0xa3,0x07,0xc3,0x08,0xc1,0x07,0x5e,0x09, + 0x28,0x07,0x44,0x0b,0x2d,0x48,0xa4,0x05, + 0x68,0x09,0xe8,0x06,0x2b,0x08,0x9f,0x06, + 0x43,0x07,0x0e,0x06,0x68,0x06,0x59,0x05, + 0x99,0x05,0x3f,0x04,0x01,0x03,0x9a,0x02, + 0xf5,0x02,0x72,0x02,0x5f,0x02,0xe5,0x01, + 0xce,0x01,0x6a,0x01,0x54,0x01,0x02,0x01, + 0xe9,0x00,0x70,0x00,0x5e,0x00,0x35,0x00, + 0x2a,0x00,0x2e,0x00,0x2e,0x00,0x13,0x00, + 0x10,0x00,0x01,0x00,0x00,0x00,0xf9,0xff, + 0xf9,0xff,0xf6,0xff,0xfa,0xff,0xfb,0xff, + 0xfe,0xff,0xff,0xff,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00, + 0x07,0x00,0x0f,0x00,0x17,0x00,0x21,0x00, + 0x2c,0x00,0x2b,0x00,0x29,0x00,0x18,0x00, + 0x03,0x00,0xd4,0xff,0xb0,0xff,0xa6,0xff, + 0x4c,0xff,0xe1,0xfe,0x4c,0xfe,0x3e,0xfd, + 0x91,0xfc,0xb7,0xfb,0xe7,0xfa,0xec,0xf9, + 0x04,0xf9,0xf4,0xf7,0x04,0xf7,0xf1,0xf5, + 0x39,0xf4,0x00,0xf3,0x6c,0xf1,0x05,0xf0, + 0x8f,0xef,0xaa,0xee,0x83,0xee,0xd2,0xed, + 0x07,0xee,0x78,0xed,0x24,0xee,0x7c,0xed, + 0x9b,0xef,0x31,0x6f,0x1d,0xef,0x5e,0xf1, + 0x69,0xf1,0xc1,0xf2,0x49,0xf3,0x79,0xf4, + 0x2f,0xf5,0x3a,0xf6,0x03,0xf7,0xdf,0xf7, + 0xff,0xf8,0x91,0xfa,0x3a,0xfb,0xba,0xfc, + 0xf9,0xfc,0x89,0xfd,0xd0,0xfd,0x41,0xfe, + 0x78,0xfe,0xcc,0xfe,0xf5,0xfe,0x2e,0xff, + 0xd9,0xfe,0xf1,0xfe,0x15,0xff,0x3b,0xff, + 0x9f,0xff,0xc3,0xff,0xce,0xff,0xdf,0xff, + 0xe9,0xff,0xf3,0xff,0xfa,0xff,0xfb,0xff, + 0xfc,0xff,0x00,0x00,0x01,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xfa,0xff,0xf8,0xff,0xf6,0xff, + 0xef,0xff,0xe3,0xff,0xd8,0xff,0xc5,0xff, + 0xba,0xff,0x8f,0xff,0x2b,0xff,0x0a,0xff, + 0xe0,0xfe,0xca,0xfe,0x19,0xff,0xe2,0xfe, + 0xb3,0xfe,0x63,0xfe,0x23,0xfe,0xb8,0xfd, + 0x67,0xfd,0xe0,0xfc,0x93,0xfc,0x23,0xfb, + 0x5c,0xfa,0xb7,0xf8,0xbe,0xf7,0xde,0xf6, + 0x12,0xf6,0x0e,0xf5,0x4f,0xf4,0x2d,0xf3, + 0x95,0xf2,0x58,0xf1,0x28,0xf1,0x2a,0xef, + 0x19,0x6f,0x57,0xef,0x83,0xed,0x0b,0xee, + 0x7c,0xed,0xfc,0xed,0xda,0xed,0x84,0xee, + 0xb7,0xee,0x9b,0xef,0x18,0xf0,0x82,0xf1, + 0x15,0xf3,0x71,0xf4,0x20,0xf6,0x18,0xf7, + 0x18,0xf8,0x1e,0xf9,0x0f,0xfa,0x01,0xfb, + 0xd8,0xfb,0xa8,0xfc,0x5f,0xfd,0x6a,0xfe, + 0xf7,0xfe,0x60,0xff,0xb7,0xff,0xbf,0xff, + 0xe2,0xff,0x0d,0x00,0x21,0x00,0x30,0x00, + 0x31,0x00,0x2f,0x00,0x23,0x00,0x19,0x00, + 0x0f,0x00,0x08,0x00,0x02,0x00,0x00,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xff,0xff,0xfe,0xff,0xfc,0xff,0xfa,0xff, + 0xf8,0xff,0xf9,0xff,0xfd,0xff,0x01,0x00, + 0x08,0x00,0x11,0x00,0x1d,0x00,0x2e,0x00, + 0x3c,0x00,0x2c,0x00,0x46,0x00,0x5e,0x00, + 0x88,0x00,0xea,0x00,0x1c,0x01,0x51,0x01, + 0x8a,0x01,0xc8,0x01,0x0c,0x02,0x55,0x02, + 0x9f,0x02,0xe8,0x02,0xde,0x02,0xe6,0x02, + 0x95,0x04,0x69,0x05,0xaf,0x05,0x27,0x06, + 0x79,0x06,0xe2,0x06,0x31,0x07,0x8d,0x07, + 0xd2,0x07,0x1e,0x08,0x42,0x08,0x61,0x48, + 0x75,0x08,0x85,0x08,0x75,0x08,0x65,0x08, + 0x36,0x08,0x08,0x08,0xbd,0x07,0x77,0x07, + 0x17,0x07,0xb5,0x06,0x43,0x06,0x54,0x06, + 0x6e,0x05,0xd2,0x03,0x71,0x03,0xfb,0x02, + 0x97,0x02,0x2d,0x02,0xd1,0x01,0x77,0x01, + 0x2b,0x01,0xe6,0x00,0xdc,0x00,0xb3,0x00, + 0x80,0x00,0x5c,0x00,0x1f,0x00,0x06,0x00, + 0xfa,0xff,0xf2,0xff,0xee,0xff,0xee,0xff, + 0xee,0xff,0xf6,0xff,0xfb,0xff,0xfc,0xff, + 0xfe,0xff,0xff,0xff,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xff,0xff,0xfe,0xff,0xfc,0xff, + 0xf8,0xff,0xf7,0xff,0xf4,0xff,0xf7,0xff, + 0xf7,0xff,0x00,0x00,0x05,0x00,0x17,0x00, + 0x23,0x00,0x41,0x00,0x55,0x00,0x82,0x00, + 0xa2,0x00,0xdf,0x00,0x0b,0x01,0x5a,0x01, + 0x90,0x01,0xf0,0x01,0x2c,0x02,0x9b,0x02, + 0xdb,0x02,0x57,0x03,0x97,0x03,0x1f,0x04, + 0x32,0x05,0x02,0x06,0x18,0x06,0xc6,0x06, + 0xc8,0x06,0x7b,0x07,0x53,0x07,0x1a,0x08, + 0xab,0x07,0xae,0x08,0x9b,0x07,0xdb,0x09, + 0x58,0x48,0x04,0x07,0xed,0x08,0xa8,0x07, + 0x37,0x08,0x68,0x07,0x93,0x07,0xe8,0x06, + 0xdb,0x06,0x42,0x06,0x0d,0x06,0x8c,0x05, + 0xfe,0x04,0xa9,0x03,0x82,0x03,0xf6,0x02, + 0xbe,0x02,0x47,0x02,0x0d,0x02,0xa8,0x01, + 0x73,0x01,0x20,0x01,0xf3,0x00,0xb2,0x00, + 0x8d,0x00,0x5e,0x00,0x4a,0x00,0x2a,0x00, + 0x1d,0x00,0x0a,0x00,0x03,0x00,0xfa,0xff, + 0xf8,0xff,0xf6,0xff,0xf7,0xff,0xf9,0xff, + 0xfb,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x03,0x00,0x08,0x00,0x10,0x00,0x13,0x00, + 0x16,0x00,0x15,0x00,0x10,0x00,0x04,0x00, + 0xf3,0xff,0xd7,0xff,0xb5,0xff,0x86,0xff, + 0x4f,0xff,0x06,0xff,0xb3,0xfe,0x51,0xfe, + 0xdd,0xfd,0x5e,0xfd,0xd0,0xfc,0x38,0xfc, + 0x92,0xfb,0xe8,0xfa,0x2d,0xfa,0x77,0xf9, + 0xac,0xf8,0xf4,0xf7,0x76,0xf5,0x32,0xf4, + 0x95,0xf3,0xbc,0xf2,0x21,0xf2,0x6b,0xf1, + 0xe9,0xf0,0x58,0xf0,0xfb,0xef,0x94,0xef, + 0x62,0xef,0x28,0xef,0x1c,0x6f,0x3b,0xef, + 0x85,0xef,0xc6,0xef,0x3e,0xf0,0xa7,0xf0, + 0x48,0xf1,0xd2,0xf1,0x97,0xf2,0x35,0xf3, + 0x1e,0xf4,0xb3,0xf4,0x26,0xf6,0x7f,0xf8, + 0x20,0xf9,0xf2,0xf9,0x9e,0xfa,0x58,0xfb, + 0xfa,0xfb,0x9a,0xfc,0x29,0xfd,0xaf,0xfd, + 0x26,0xfe,0x8f,0xfe,0xee,0xfe,0x3b,0xff, + 0x73,0xff,0xa5,0xff,0xcb,0xff,0xe8,0xff, + 0xfd,0xff,0x0a,0x00,0x11,0x00,0x13,0x00, + 0x12,0x00,0x0e,0x00,0x0a,0x00,0x04,0x00, + 0x01,0x00,0x00,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x01,0x00,0x03,0x00,0x08,0x00, + 0x10,0x00,0x13,0x00,0x16,0x00,0x15,0x00, + 0x10,0x00,0x04,0x00,0xf3,0xff,0xd7,0xff, + 0xb5,0xff,0x86,0xff,0x4f,0xff,0x06,0xff, + 0xb3,0xfe,0x51,0xfe,0xdd,0xfd,0x5e,0xfd, + 0xd0,0xfc,0x38,0xfc,0x92,0xfb,0xe8,0xfa, + 0x2d,0xfa,0x77,0xf9,0xac,0xf8,0xf4,0xf7, + 0x76,0xf5,0x32,0xf4,0x95,0xf3,0xbc,0xf2, + 0x21,0xf2,0x6b,0xf1,0xe9,0xf0,0x58,0xf0, + 0xfb,0xef,0x94,0xef,0x62,0xef,0x28,0xef, + 0x1c,0x6f,0x3b,0xef,0x85,0xef,0xc6,0xef, + 0x3e,0xf0,0xa7,0xf0,0x48,0xf1,0xd2,0xf1, + 0x97,0xf2,0x35,0xf3,0x1e,0xf4,0xb3,0xf4, + 0x26,0xf6,0x7f,0xf8,0x20,0xf9,0xf2,0xf9, + 0x9e,0xfa,0x58,0xfb,0xfa,0xfb,0x9a,0xfc, + 0x29,0xfd,0xaf,0xfd,0x26,0xfe,0x8f,0xfe, + 0xee,0xfe,0x3b,0xff,0x73,0xff,0xa5,0xff, + 0xcb,0xff,0xe8,0xff,0xfd,0xff,0x0a,0x00, + 0x11,0x00,0x13,0x00,0x12,0x00,0x0e,0x00, + 0x0a,0x00,0x04,0x00,0x01,0x00,0x00,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, + 0xfe,0xff,0xfc,0xff,0xf8,0xff,0xf7,0xff, + 0xf4,0xff,0xf7,0xff,0xf7,0xff,0x00,0x00, + 0x05,0x00,0x17,0x00,0x23,0x00,0x41,0x00, + 0x55,0x00,0x82,0x00,0xa2,0x00,0xdf,0x00, + 0x0b,0x01,0x5a,0x01,0x90,0x01,0xf0,0x01, + 0x2c,0x02,0x9b,0x02,0xdb,0x02,0x57,0x03, + 0x97,0x03,0x1f,0x04,0x32,0x05,0x02,0x06, + 0x18,0x06,0xc6,0x06,0xc8,0x06,0x7b,0x07, + 0x53,0x07,0x1a,0x08,0xab,0x07,0xae,0x08, + 0x9b,0x07,0xdb,0x09,0x58,0x48,0x04,0x07, + 0xed,0x08,0xa8,0x07,0x37,0x08,0x68,0x07, + 0x93,0x07,0xe8,0x06,0xdb,0x06,0x42,0x06, + 0x0d,0x06,0x8c,0x05,0xfe,0x04,0xa9,0x03, + 0x82,0x03,0xf6,0x02,0xbe,0x02,0x47,0x02, + 0x0d,0x02,0xa8,0x01,0x73,0x01,0x20,0x01, + 0xf3,0x00,0xb2,0x00,0x8d,0x00,0x5e,0x00, + 0x4a,0x00,0x2a,0x00,0x1d,0x00,0x0a,0x00, + 0x03,0x00,0xfa,0xff,0xf8,0xff,0xf6,0xff, + 0xf7,0xff,0xf9,0xff,0xfb,0xff,0xfe,0xff, + 0x00,0x00,0x00,0x00,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xff,0xff,0xfe,0xff, + 0xfc,0xff,0xfa,0xff,0xf8,0xff,0xf9,0xff, + 0xfd,0xff,0x01,0x00,0x08,0x00,0x11,0x00, + 0x1d,0x00,0x2e,0x00,0x3c,0x00,0x2c,0x00, + 0x46,0x00,0x5e,0x00,0x88,0x00,0xea,0x00, + 0x1c,0x01,0x51,0x01,0x8a,0x01,0xc8,0x01, + 0x0c,0x02,0x55,0x02,0x9f,0x02,0xe8,0x02, + 0xde,0x02,0xe6,0x02,0x95,0x04,0x69,0x05, + 0xaf,0x05,0x27,0x06,0x79,0x06,0xe2,0x06, + 0x31,0x07,0x8d,0x07,0xd2,0x07,0x1e,0x08, + 0x42,0x08,0x61,0x48,0x75,0x08,0x85,0x08, + 0x75,0x08,0x65,0x08,0x36,0x08,0x08,0x08, + 0xbd,0x07,0x77,0x07,0x17,0x07,0xb5,0x06, + 0x43,0x06,0x54,0x06,0x6e,0x05,0xd2,0x03, + 0x71,0x03,0xfb,0x02,0x97,0x02,0x2d,0x02, + 0xd1,0x01,0x77,0x01,0x2b,0x01,0xe6,0x00, + 0xdc,0x00,0xb3,0x00,0x80,0x00,0x5c,0x00, + 0x1f,0x00,0x06,0x00,0xfa,0xff,0xf2,0xff, + 0xee,0xff,0xee,0xff,0xee,0xff,0xf6,0xff, + 0xfb,0xff,0xfc,0xff,0xfe,0xff,0xff,0xff, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xfa,0xff, + 0xf8,0xff,0xf6,0xff,0xef,0xff,0xe3,0xff, + 0xd8,0xff,0xc5,0xff,0xba,0xff,0x8f,0xff, + 0x2b,0xff,0x0a,0xff,0xe0,0xfe,0xca,0xfe, + 0x19,0xff,0xe2,0xfe,0xb3,0xfe,0x63,0xfe, + 0x23,0xfe,0xb8,0xfd,0x67,0xfd,0xe0,0xfc, + 0x93,0xfc,0x23,0xfb,0x5c,0xfa,0xb7,0xf8, + 0xbe,0xf7,0xde,0xf6,0x12,0xf6,0x0e,0xf5, + 0x4f,0xf4,0x2d,0xf3,0x95,0xf2,0x58,0xf1, + 0x28,0xf1,0x2a,0xef,0x19,0x6f,0x57,0xef, + 0x83,0xed,0x0b,0xee,0x7c,0xed,0xfc,0xed, + 0xda,0xed,0x84,0xee,0xb7,0xee,0x9b,0xef, + 0x18,0xf0,0x82,0xf1,0x15,0xf3,0x71,0xf4, + 0x20,0xf6,0x18,0xf7,0x18,0xf8,0x1e,0xf9, + 0x0f,0xfa,0x01,0xfb,0xd8,0xfb,0xa8,0xfc, + 0x5f,0xfd,0x6a,0xfe,0xf7,0xfe,0x60,0xff, + 0xb7,0xff,0xbf,0xff,0xe2,0xff,0x0d,0x00, + 0x21,0x00,0x30,0x00,0x31,0x00,0x2f,0x00, + 0x23,0x00,0x19,0x00,0x0f,0x00,0x08,0x00, + 0x02,0x00,0x00,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x02,0x00,0x07,0x00,0x0f,0x00, + 0x17,0x00,0x21,0x00,0x2c,0x00,0x2b,0x00, + 0x29,0x00,0x18,0x00,0x03,0x00,0xd4,0xff, + 0xb0,0xff,0xa6,0xff,0x4c,0xff,0xe1,0xfe, + 0x4c,0xfe,0x3e,0xfd,0x91,0xfc,0xb7,0xfb, + 0xe7,0xfa,0xec,0xf9,0x04,0xf9,0xf4,0xf7, + 0x04,0xf7,0xf1,0xf5,0x39,0xf4,0x00,0xf3, + 0x6c,0xf1,0x05,0xf0,0x8f,0xef,0xaa,0xee, + 0x83,0xee,0xd2,0xed,0x07,0xee,0x78,0xed, + 0x24,0xee,0x7c,0xed,0x9b,0xef,0x31,0x6f, + 0x1d,0xef,0x5e,0xf1,0x69,0xf1,0xc1,0xf2, + 0x49,0xf3,0x79,0xf4,0x2f,0xf5,0x3a,0xf6, + 0x03,0xf7,0xdf,0xf7,0xff,0xf8,0x91,0xfa, + 0x3a,0xfb,0xba,0xfc,0xf9,0xfc,0x89,0xfd, + 0xd0,0xfd,0x41,0xfe,0x78,0xfe,0xcc,0xfe, + 0xf5,0xfe,0x2e,0xff,0xd9,0xfe,0xf1,0xfe, + 0x15,0xff,0x3b,0xff,0x9f,0xff,0xc3,0xff, + 0xce,0xff,0xdf,0xff,0xe9,0xff,0xf3,0xff, + 0xfa,0xff,0xfb,0xff,0xfc,0xff,0x00,0x00, + 0x01,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, + 0xfc,0xff,0xfc,0xff,0xf6,0xff,0xf1,0xff, + 0xef,0xff,0xf3,0xff,0xf4,0xff,0x03,0x00, + 0x08,0x00,0x2c,0x00,0x5f,0x00,0x91,0x00, + 0xb5,0x00,0xf4,0x00,0xe9,0x00,0x46,0x01, + 0x78,0x01,0xf3,0x01,0x2b,0x02,0xbe,0x02, + 0xf4,0x02,0x9e,0x03,0xc9,0x03,0xb1,0x05, + 0x3c,0x06,0x96,0x06,0x86,0x06,0x6a,0x07, + 0x34,0x07,0x24,0x08,0xa3,0x07,0xc3,0x08, + 0xc1,0x07,0x5e,0x09,0x28,0x07,0x44,0x0b, + 0x2d,0x48,0xa4,0x05,0x68,0x09,0xe8,0x06, + 0x2b,0x08,0x9f,0x06,0x43,0x07,0x0e,0x06, + 0x68,0x06,0x59,0x05,0x99,0x05,0x3f,0x04, + 0x01,0x03,0x9a,0x02,0xf5,0x02,0x72,0x02, + 0x5f,0x02,0xe5,0x01,0xce,0x01,0x6a,0x01, + 0x54,0x01,0x02,0x01,0xe9,0x00,0x70,0x00, + 0x5e,0x00,0x35,0x00,0x2a,0x00,0x2e,0x00, + 0x2e,0x00,0x13,0x00,0x10,0x00,0x01,0x00, + 0x00,0x00,0xf9,0xff,0xf9,0xff,0xf6,0xff, + 0xfa,0xff,0xfb,0xff,0xfe,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xff,0xff,0xfe,0xff,0xfd,0xff,0xfb,0xff, + 0xfb,0xff,0xfa,0xff,0xfc,0xff,0xfc,0xff, + 0x05,0x00,0x0f,0x00,0x15,0x00,0x02,0x00, + 0x09,0x00,0x13,0x00,0x22,0x00,0x30,0x00, + 0x45,0x00,0x54,0x00,0x83,0x00,0xe8,0x00, + 0x10,0x01,0x40,0x01,0x6e,0x01,0x9f,0x01, + 0xdd,0x01,0xc5,0x01,0xcf,0x01,0x30,0x02, + 0x6a,0x02,0x31,0x04,0xfe,0x04,0x58,0x05, + 0xe2,0x05,0x4d,0x06,0xca,0x06,0x2e,0x07, + 0x90,0x07,0xd5,0x07,0x1f,0x08,0x46,0x48, + 0x7f,0x08,0x94,0x08,0xa8,0x08,0x9d,0x08, + 0x8f,0x08,0x5f,0x08,0x29,0x08,0xca,0x07, + 0x6d,0x07,0xff,0x06,0x08,0x07,0x64,0x06, + 0xfa,0x05,0xf6,0x04,0x66,0x03,0x02,0x03, + 0x85,0x02,0x20,0x02,0xbc,0x01,0x5f,0x01, + 0x46,0x01,0x12,0x01,0xca,0x00,0x96,0x00, + 0x66,0x00,0x41,0x00,0x23,0x00,0x0c,0x00, + 0xe9,0xff,0xe0,0xff,0xe9,0xff,0xf3,0xff, + 0xf2,0xff,0xf6,0xff,0xf8,0xff,0xfc,0xff, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xff,0xff,0xfe,0xff,0xf9,0xff,0xf5,0xff, + 0xeb,0xff,0xe7,0xff,0xd8,0xff,0xd8,0xff, + 0xcc,0xff,0xe2,0xff,0xc6,0xff,0xa7,0xff, + 0x82,0xff,0xaa,0xff,0x88,0xff,0xc5,0xff, + 0xa2,0xff,0xf1,0xff,0xdc,0xff,0xce,0x00, + 0x71,0x00,0xe6,0x00,0x68,0x00,0xdc,0x00, + 0x21,0x00,0xda,0xff,0x3c,0xfe,0xb2,0xfe, + 0xea,0xfc,0x68,0xfc,0xc9,0xf9,0x62,0xfa, + 0x57,0xf7,0x57,0xf8,0x7d,0xf4,0x74,0xf6, + 0xe5,0xf0,0x7d,0xf5,0xae,0xe9,0xab,0x6e, + 0xed,0xf5,0x87,0xe9,0xc6,0xee,0xf7,0xe9, + 0xe2,0xec,0x5f,0xea,0xa7,0xec,0x6e,0xeb, + 0x80,0xed,0x3c,0xed,0x2e,0xf0,0x47,0xf0, + 0x37,0xf2,0xed,0xf2,0x8c,0xf5,0x12,0xf6, + 0xdf,0xf7,0x88,0xf8,0x23,0xfa,0xcc,0xfa, + 0x91,0xfc,0x4e,0xfd,0x3d,0xfe,0xb0,0xfe, + 0x5d,0xff,0xa6,0xff,0x13,0x00,0x34,0x00, + 0x3e,0x00,0x3e,0x00,0x51,0x00,0x3f,0x00, + 0x40,0x00,0x2e,0x00,0x24,0x00,0x15,0x00, + 0x0b,0x00,0x03,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x03,0x00,0x09,0x00,0x16,0x00, + 0x1f,0x00,0x32,0x00,0x35,0x00,0x48,0x00, + 0x3c,0x00,0x51,0x00,0x1b,0x00,0x4a,0x00, + 0xeb,0xff,0xd0,0xff,0x24,0xff,0xec,0xfe, + 0xf0,0xfd,0xa0,0xfd,0x34,0xfc,0x44,0xfb, + 0x9b,0xf9,0x20,0xf9,0x32,0xf7,0xd4,0xf6, + 0xb1,0xf4,0xeb,0xf3,0x1d,0xf1,0x83,0xf1, + 0xcf,0xee,0x03,0xef,0x97,0xeb,0xa0,0xed, + 0x16,0xea,0x69,0xed,0x23,0xe9,0xa7,0xee, + 0x5c,0xe8,0x09,0xf3,0xed,0xe2,0x4b,0x6d, + 0x41,0xfe,0x71,0xeb,0x74,0xf7,0x8f,0xf1, + 0x52,0xf8,0x30,0xf5,0xfe,0xf9,0x22,0xf8, + 0xc4,0xfb,0xb3,0xfa,0x72,0xfe,0x67,0xfd, + 0x7a,0xff,0xbf,0xfe,0x0f,0x01,0x23,0x00, + 0x30,0x01,0x58,0x00,0x0e,0x01,0x67,0x00, + 0x72,0x00,0x9b,0xff,0x09,0x00,0x87,0xff, + 0xd4,0xff,0x7d,0xff,0xba,0xff,0x85,0xff, + 0xe8,0xff,0xcf,0xff,0xe5,0xff,0xcc,0xff, + 0xe6,0xff,0xe1,0xff,0xf1,0xff,0xf2,0xff, + 0xfb,0xff,0xfd,0xff,0x00,0x00,0x00,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfe,0xff,0xfd,0xff, + 0xf8,0xff,0xf9,0xff,0xf0,0xff,0xf9,0xff, + 0xe6,0xff,0xeb,0xff,0xe0,0xff,0x19,0x00, + 0x19,0x00,0x56,0x00,0x55,0x00,0xb3,0x00, + 0xb2,0x00,0x37,0x01,0x2e,0x01,0x98,0x01, + 0x89,0x01,0x63,0x02,0x44,0x02,0x57,0x03, + 0x0c,0x03,0x33,0x05,0x99,0x05,0xdd,0x06, + 0x8c,0x06,0xc2,0x07,0xb2,0x06,0xa9,0x08, + 0x31,0x07,0x92,0x09,0x28,0x07,0x71,0x0a, + 0x46,0x06,0x2c,0x0c,0xb8,0x01,0xb9,0x46, + 0xd8,0x10,0xc8,0x03,0x32,0x0a,0x42,0x05, + 0x4f,0x08,0x13,0x05,0xea,0x06,0x7a,0x04, + 0xb8,0x05,0xa8,0x03,0x19,0x03,0x99,0x01, + 0x4b,0x02,0x39,0x01,0x2a,0x02,0x48,0x01, + 0xaf,0x01,0xf9,0x00,0x41,0x01,0xb1,0x00, + 0xb2,0x00,0x25,0x00,0x62,0x00,0x0c,0x00, + 0x38,0x00,0xf9,0xff,0x19,0x00,0xec,0xff, + 0x1b,0x00,0x04,0x00,0x0b,0x00,0xf5,0xff, + 0xff,0xff,0xf6,0xff,0xfc,0xff,0xf9,0xff, + 0xfd,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xff,0xff,0xfe,0xff,0xfd,0xff, + 0xfb,0xff,0xfa,0xff,0xf9,0xff,0xfa,0xff, + 0xf8,0xff,0xfb,0xff,0xe9,0xff,0xdd,0xff, + 0xe9,0xff,0xe6,0xff,0xeb,0xff,0xed,0xff, + 0xf3,0xff,0xf9,0xff,0x03,0x00,0x12,0x00, + 0x1a,0x00,0x5e,0x00,0xb4,0x00,0xbf,0x00, + 0x08,0x01,0xea,0x00,0xec,0x00,0x33,0x01, + 0x7e,0x01,0xc7,0x01,0x55,0x02,0x42,0x04, + 0xdd,0x04,0x60,0x05,0xe9,0x05,0x64,0x06, + 0xd4,0x06,0x38,0x07,0x95,0x07,0xe2,0x07, + 0x23,0x48,0x5f,0x08,0x8b,0x08,0x9d,0x08, + 0xa4,0x08,0x83,0x08,0x59,0x08,0x0b,0x08, + 0xbe,0x07,0x50,0x07,0x5e,0x07,0xe0,0x06, + 0x5a,0x06,0xae,0x05,0x3d,0x05,0x07,0x04, + 0xab,0x02,0x6c,0x02,0xdd,0x01,0xb6,0x01, + 0x86,0x01,0x34,0x01,0xe8,0x00,0xad,0x00, + 0x75,0x00,0x4e,0x00,0x28,0x00,0x11,0x00, + 0xfb,0xff,0x09,0x00,0xfb,0xff,0xeb,0xff, + 0xee,0xff,0xf0,0xff,0xf5,0xff,0xf8,0xff, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xff,0xff,0xfc,0xff,0xf3,0xff,0xf2,0xff, + 0xdd,0xff,0xe7,0xff,0xc4,0xff,0xe3,0xff, + 0xb6,0xff,0xe2,0xff,0x76,0xff,0x01,0x00, + 0xa3,0xff,0x55,0x00,0xd9,0xff,0xd4,0x00, + 0x34,0x00,0x7f,0x01,0xa4,0x00,0x3e,0x02, + 0x53,0x01,0xe6,0x03,0x06,0x02,0x7b,0x04, + 0x9a,0x01,0x88,0x03,0x25,0x00,0x17,0x03, + 0x7d,0xfe,0x24,0x02,0x28,0xfb,0x80,0xff, + 0x94,0xf7,0xfd,0xfd,0x0f,0xf3,0xf8,0xfc, + 0x50,0xec,0x93,0xff,0x0a,0xdb,0x20,0x64, + 0x2d,0x13,0x84,0xdd,0x02,0xf6,0xf6,0xe3, + 0x17,0xf0,0xb3,0xe5,0x23,0xee,0x98,0xe7, + 0x1b,0xee,0x95,0xea,0x6e,0xf0,0x6d,0xed, + 0x36,0xf2,0x54,0xf0,0xb0,0xf4,0x4b,0xf4, + 0xb6,0xf7,0x23,0xf7,0x30,0xfa,0x74,0xfa, + 0xb6,0xfc,0x9c,0xfc,0x5c,0xfe,0x48,0xfe, + 0x8a,0xff,0x70,0xff,0x43,0x00,0x1e,0x00, + 0x8c,0x00,0x4f,0x00,0x6b,0x00,0x40,0x00, + 0x53,0x00,0x30,0x00,0x2d,0x00,0x16,0x00, + 0x0d,0x00,0x03,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0x0a,0x00,0x1d,0x00,0x22,0x00, + 0x47,0x00,0x39,0x00,0x71,0x00,0x3b,0x00, + 0x8e,0x00,0x43,0x00,0xa7,0x00,0xea,0xff, + 0x47,0x00,0x09,0xff,0x74,0xff,0xa5,0xfd, + 0x2e,0xfe,0xb7,0xfb,0x79,0xfc,0x35,0xf9, + 0xb0,0xf9,0xc9,0xf5,0x67,0xf7,0x93,0xf2, + 0x30,0xf4,0xa8,0xee,0x23,0xf2,0x97,0xeb, + 0xc5,0xf0,0x47,0xe8,0xea,0xee,0x5e,0xe5, + 0xce,0xef,0xfc,0xe2,0x41,0xf3,0xdb,0xdf, + 0x9d,0xfc,0x24,0xd2,0x5c,0x45,0x06,0x3d, + 0xc5,0xd7,0xb9,0x03,0x48,0xea,0xe9,0xff, + 0xee,0xf1,0x29,0x00,0xe0,0xf6,0x24,0x01, + 0x06,0xfb,0x73,0x03,0xfa,0xfd,0x02,0x04, + 0xa9,0xff,0x37,0x04,0x59,0x01,0xb8,0x04, + 0x99,0x01,0xf0,0x03,0xbf,0x00,0x59,0x02, + 0x4e,0x00,0x8c,0x01,0xf6,0xff,0xde,0x00, + 0xb4,0xff,0x5f,0x00,0x93,0xff,0x09,0x00, + 0x7c,0xff,0xff,0xff,0xb7,0xff,0xf1,0xff, + 0xce,0xff,0xf2,0xff,0xe7,0xff,0xfa,0xff, + 0xfa,0xff,0xff,0xff,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf4,0xff,0xf7,0xff, + 0xe1,0xff,0xf3,0xff,0xcc,0xff,0xfa,0xff, + 0xe8,0xff,0x3a,0x00,0xcd,0xff,0x7b,0x00, + 0x16,0x00,0x19,0x01,0x99,0x00,0x06,0x02, + 0x60,0x01,0x4b,0x03,0x6a,0x02,0x5e,0x04, + 0xfd,0x02,0x2f,0x06,0x78,0x04,0x93,0x0a, + 0xe2,0x08,0xaf,0x0d,0xaa,0x0a,0x9b,0x10, + 0xcb,0x0b,0x16,0x12,0xbd,0x0b,0xcd,0x14, + 0x38,0x0b,0xea,0x17,0x62,0x08,0x77,0x1d, + 0x25,0xfd,0x91,0x41,0x9a,0x7c,0xbf,0xf5, + 0x8f,0x1d,0x07,0x04,0x26,0x15,0x43,0x06, + 0xb4,0x10,0xfa,0x05,0x58,0x0d,0x2a,0x04, + 0xba,0x06,0xff,0x00,0xde,0x04,0x4f,0x00, + 0x5c,0x03,0x5f,0x00,0x3d,0x03,0x32,0x00, + 0x54,0x02,0x7f,0xff,0xf8,0x00,0x55,0xff, + 0x99,0x00,0x56,0xff,0x55,0x00,0x64,0xff, + 0x24,0x00,0x7a,0xff,0x04,0x00,0x7c,0xff, + 0x06,0x00,0xd0,0xff,0x07,0x00,0xdd,0xff, + 0xfe,0xff,0xe9,0xff,0xfb,0xff,0xf5,0xff, + 0xfd,0xff,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xff, + 0xfd,0xff,0xfa,0xff,0xf9,0xff,0xf6,0xff, + 0xf4,0xff,0xf1,0xff,0xdd,0xff,0xd0,0xff, + 0xcb,0xff,0xc0,0xff,0xbe,0xff,0xc0,0xff, + 0xbd,0xff,0xb7,0xff,0xb8,0xff,0xb3,0xff, + 0xb3,0xff,0xb4,0xff,0xbc,0xff,0xe7,0xff, + 0x60,0x00,0x58,0x00,0x3e,0x00,0x67,0x00, + 0xbf,0x00,0xf7,0x00,0x77,0x01,0x9f,0x01, + 0xee,0x02,0x9b,0x04,0xf1,0x04,0x94,0x05, + 0xfa,0x05,0x81,0x06,0xe7,0x06,0x56,0x07, + 0xa6,0x07,0xee,0x47,0x2e,0x08,0x5b,0x08, + 0x69,0x08,0x5e,0x08,0x45,0x08,0x0c,0x08, + 0xd1,0x07,0x64,0x07,0x59,0x07,0x27,0x07, + 0x90,0x06,0x0b,0x06,0x7a,0x05,0xe4,0x04, + 0x5a,0x04,0xd9,0x02,0x06,0x02,0xfd,0x01, + 0xb3,0x01,0x5c,0x01,0x0c,0x01,0xca,0x00, + 0x8f,0x00,0x5f,0x00,0x38,0x00,0x18,0x00, + 0x1c,0x00,0x17,0x00,0x06,0x00,0x01,0x00, + 0xf9,0xff,0xee,0xff,0xf1,0xff,0xf5,0xff, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xff,0xff,0xf8,0xff,0xf7,0xff, + 0xe4,0xff,0xee,0xff,0xcb,0xff,0xf2,0xff, + 0xb3,0xff,0xe2,0xff,0x98,0xff,0x1b,0x00, + 0xb6,0xff,0x99,0x00,0x24,0x00,0x51,0x01, + 0xa1,0x00,0x3b,0x02,0x48,0x01,0x5d,0x03, + 0xfe,0x01,0x80,0x04,0x01,0x03,0x5b,0x06, + 0xcb,0x02,0xcc,0x05,0xc7,0x01,0xbe,0x05, + 0x44,0x00,0x1b,0x05,0xcf,0xfd,0x17,0x03, + 0xf4,0xf8,0x82,0x01,0xd9,0xf3,0x94,0x00, + 0x46,0xec,0x46,0x03,0x43,0xdb,0x93,0x2f, + 0xf8,0x51,0x61,0xd2,0x4e,0xfc,0x4e,0xe0, + 0xf4,0xf2,0x2e,0xe3,0x33,0xef,0xfd,0xe4, + 0x4f,0xee,0x69,0xe8,0xf4,0xef,0x36,0xeb, + 0x79,0xf1,0x58,0xee,0xa5,0xf3,0xd2,0xf1, + 0x0b,0xf7,0xb8,0xf5,0x30,0xfa,0x48,0xf9, + 0x5e,0xfc,0xc0,0xfb,0x27,0xfe,0xb6,0xfd, + 0x7d,0xff,0x20,0xff,0x55,0x00,0xe5,0xff, + 0xa8,0x00,0x51,0x00,0xbc,0x00,0x5e,0x00, + 0x78,0x00,0x44,0x00,0x4c,0x00,0x27,0x00, + 0x1f,0x00,0x0b,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0x0c,0x00,0x1d,0x00,0x28,0x00, + 0x46,0x00,0x46,0x00,0x6d,0x00,0x67,0x00, + 0xa5,0x00,0x56,0x00,0x84,0x00,0xee,0xff, + 0x24,0x00,0x28,0xff,0x36,0xff,0xc5,0xfd, + 0xca,0xfd,0xdb,0xfb,0xe7,0xfb,0x77,0xf9, + 0x8b,0xf9,0xe6,0xf5,0x5c,0xf6,0x05,0xf2, + 0xf8,0xf2,0xd4,0xee,0xa8,0xf0,0xef,0xeb, + 0xff,0xee,0x54,0xe9,0xfc,0xec,0x88,0xe6, + 0x9d,0xed,0x6b,0xe5,0xaa,0xf0,0xc3,0xe3, + 0x46,0xf8,0x0d,0xd9,0xe1,0x65,0x92,0x12, + 0xd1,0xe4,0x61,0xfe,0x55,0xf0,0x2e,0xfe, + 0x6f,0xf6,0x07,0x00,0xc5,0xfa,0x44,0x02, + 0x44,0xff,0x4b,0x04,0x58,0x01,0x1b,0x05, + 0x98,0x02,0x49,0x05,0x8a,0x03,0xef,0x05, + 0x52,0x03,0x19,0x04,0x4f,0x02,0x0a,0x03, + 0x80,0x01,0xfa,0x01,0xc9,0x00,0x1f,0x01, + 0x3f,0x00,0x71,0x00,0xc7,0xff,0x02,0x00, + 0xa3,0xff,0xd4,0xff,0xc0,0xff,0xe8,0xff, + 0xd0,0xff,0xea,0xff,0xe6,0xff,0xf6,0xff, + 0xf9,0xff,0xff,0xff,0x00,0x00,0x00,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfb,0xff,0xf2,0xff, + 0xf6,0xff,0xea,0xff,0x05,0x00,0xf7,0xff, + 0x17,0x00,0x09,0x00,0x31,0x00,0x02,0x00, + 0x60,0x00,0x42,0x00,0xc4,0x00,0xa3,0x00, + 0x52,0x01,0x28,0x01,0x0d,0x02,0xad,0x01, + 0x71,0x02,0xb0,0x02,0xfb,0x04,0x62,0x04, + 0x34,0x06,0x62,0x05,0x76,0x07,0x45,0x06, + 0x69,0x08,0x2e,0x06,0x54,0x09,0x4d,0x06, + 0x73,0x0a,0x95,0x05,0x35,0x0c,0x5d,0x02, + 0x6c,0x15,0x80,0x44,0x5a,0xfe,0x3e,0x0c, + 0x70,0x03,0xf8,0x08,0xde,0x03,0x26,0x07, + 0x76,0x03,0xa8,0x05,0x7f,0x01,0x81,0x02, + 0x8e,0x00,0xa0,0x01,0x0a,0x00,0xea,0x00, + 0xb6,0xff,0xcf,0x00,0xe8,0xff,0x2c,0x00, + 0x68,0xff,0xf5,0xff,0x72,0xff,0xe5,0xff, + 0x86,0xff,0xdd,0xff,0x99,0xff,0xda,0xff, + 0xa1,0xff,0xd3,0xff,0xb9,0xff,0xdc,0xff, + 0xd4,0xff,0xf9,0xff,0xed,0xff,0xfb,0xff, + 0xf5,0xff,0xfc,0xff,0xfb,0xff,0xff,0xff, + 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xfc,0xff,0xfa,0xff,0xf7,0xff, + 0xf3,0xff,0xf1,0xff,0xdf,0xff,0xd0,0xff, + 0xc7,0xff,0xbb,0xff,0xaf,0xff,0xa2,0xff, + 0x96,0xff,0x9a,0xff,0x8f,0xff,0x87,0xff, + 0x78,0xff,0x78,0xff,0x6d,0xff,0x7f,0xff, + 0x75,0xff,0xdc,0xff,0xf0,0xff,0xd9,0xff, + 0x2a,0x00,0x64,0x00,0xbf,0x00,0x1a,0x01, + 0x80,0x01,0x16,0x02,0x22,0x04,0xc1,0x04, + 0x40,0x05,0xc2,0x05,0x3d,0x06,0xb2,0x06, + 0x1a,0x07,0x78,0x07,0xba,0x47,0x00,0x08, + 0x1b,0x08,0x2a,0x08,0x19,0x08,0x01,0x08, + 0xc7,0x07,0x89,0x07,0x2d,0x07,0x4b,0x07, + 0xd2,0x06,0x5d,0x06,0xc3,0x05,0x4d,0x05, + 0x9e,0x04,0x43,0x04,0x11,0x03,0x06,0x02, + 0x03,0x02,0x84,0x01,0x45,0x01,0xec,0x00, + 0xb7,0x00,0x79,0x00,0x53,0x00,0x2b,0x00, + 0x37,0x00,0x23,0x00,0x13,0x00,0x07,0x00, + 0x00,0x00,0xfd,0xff,0xf7,0xff,0xf1,0xff, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xfe,0xff,0xfa,0xff,0xf0,0xff, + 0xed,0xff,0xd9,0xff,0xe2,0xff,0xc8,0xff, + 0xdb,0xff,0x9d,0xff,0xe9,0xff,0xb9,0xff, + 0x3a,0x00,0x07,0x00,0xcd,0x00,0xac,0x00, + 0xc9,0x01,0x78,0x01,0xea,0x02,0x71,0x02, + 0x29,0x04,0x66,0x03,0x4d,0x05,0x62,0x04, + 0xdf,0x06,0x02,0x04,0x9d,0x06,0x6d,0x03, + 0x3e,0x06,0xf4,0x01,0x36,0x05,0x86,0xff, + 0xae,0x02,0xa6,0xfa,0x4d,0x00,0xad,0xf5, + 0x8a,0xfe,0xa9,0xee,0x28,0x00,0x9a,0xdd, + 0x2d,0x67,0xc0,0x0f,0x74,0xdf,0x79,0xf5, + 0xe3,0xe4,0xd1,0xef,0x16,0xe6,0x84,0xed, + 0x35,0xe7,0x1c,0xee,0x83,0xea,0x71,0xef, + 0x0b,0xed,0x6a,0xf1,0x0e,0xf0,0xe9,0xf3, + 0x62,0xf3,0x98,0xf7,0xd2,0xf7,0x8d,0xfa, + 0x78,0xfa,0xb0,0xfc,0xb0,0xfc,0x65,0xfe, + 0x62,0xfe,0x9e,0xff,0x7b,0xff,0x3b,0x00, + 0x1e,0x00,0x8f,0x00,0x64,0x00,0x96,0x00, + 0x64,0x00,0x5c,0x00,0x38,0x00,0x31,0x00, + 0x19,0x00,0x0e,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0x0b,0x00,0x20,0x00,0x28,0x00, + 0x4f,0x00,0x45,0x00,0x86,0x00,0x73,0x00, + 0xbc,0x00,0x59,0x00,0xab,0x00,0xed,0xff, + 0x44,0x00,0x23,0xff,0x90,0xff,0xc4,0xfd, + 0x3c,0xfe,0xd0,0xfb,0x72,0xfc,0x54,0xf9, + 0x47,0xfa,0x59,0xf6,0xec,0xf6,0x90,0xf1, + 0xb4,0xf3,0x2e,0xee,0x75,0xf1,0x0b,0xeb, + 0xe5,0xef,0x60,0xe8,0xc9,0xee,0xbc,0xe4, + 0x9b,0xef,0x1b,0xe3,0x74,0xf3,0x3c,0xe0, + 0xfa,0xfc,0x68,0xd2,0xe5,0x4b,0x90,0x37, + 0x1a,0xda,0xbd,0x04,0x64,0xec,0xc7,0x01, + 0x5c,0xf4,0xba,0x02,0xc1,0xf9,0xd2,0x04, + 0xdc,0xfe,0x65,0x06,0x50,0x01,0x02,0x07, + 0xcc,0x02,0x00,0x07,0x7a,0x03,0x28,0x07, + 0x61,0x03,0x60,0x05,0xaf,0x02,0x16,0x04, + 0xd8,0x01,0xcc,0x02,0x01,0x01,0xb2,0x01, + 0x52,0x00,0xc0,0x00,0xdc,0xff,0x3a,0x00, + 0xa8,0xff,0xf2,0xff,0xa3,0xff,0xef,0xff, + 0xcd,0xff,0xee,0xff,0xe4,0xff,0xf6,0xff, + 0xf8,0xff,0xff,0xff,0x00,0x00,0x00,0x00, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xf9,0xff,0xe0,0xff, + 0xf6,0xff,0xe0,0xff,0x1a,0x00,0xdd,0xff, + 0x47,0x00,0xef,0xff,0xa1,0x00,0x09,0x00, + 0xce,0x00,0x42,0x00,0xa1,0x01,0xe1,0x00, + 0xc6,0x02,0xc7,0x01,0x46,0x04,0xea,0x02, + 0x8f,0x05,0xb3,0x05,0x39,0x0a,0xb7,0x07, + 0xdd,0x0c,0x67,0x09,0x9a,0x0f,0xc5,0x0a, + 0x0b,0x12,0x1e,0x0a,0x38,0x14,0x88,0x09, + 0x88,0x17,0x72,0x06,0xd3,0x1d,0x16,0xfa, + 0x4b,0x48,0x5c,0x76,0xc2,0xf3,0x5f,0x1d, + 0x60,0x02,0x5a,0x14,0xb2,0x04,0x8c,0x0f, + 0xcd,0x04,0xf0,0x0a,0xde,0xff,0xf7,0x05, + 0x24,0xff,0xb8,0x03,0x68,0xfe,0x0f,0x02, + 0xe0,0xfd,0x86,0x01,0xf7,0xfd,0x16,0x00, + 0xda,0xfd,0xc5,0xff,0x13,0xfe,0xa7,0xff, + 0x69,0xfe,0xa9,0xff,0xb1,0xfe,0x8b,0xff, + 0xef,0xfe,0xa4,0xff,0x3b,0xff,0xbd,0xff, + 0x7a,0xff,0xe7,0xff,0xcc,0xff,0xf5,0xff, + 0xe4,0xff,0xfa,0xff,0xf5,0xff,0xfe,0xff, + 0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x50,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0xfe,0xff,0xfc,0xff,0xfa,0xff,0xf7,0xff, + 0xf3,0xff,0xee,0xff,0xda,0xff,0xce,0xff, + 0xc2,0xff,0xb6,0xff,0xa7,0xff,0x9b,0xff, + 0x88,0xff,0x89,0xff,0x81,0xff,0x74,0xff, + 0x65,0xff,0x61,0xff,0x58,0xff,0x64,0xff, + 0x60,0xff,0xa2,0xff,0xc5,0xff,0xc0,0xff, + 0x10,0x00,0x48,0x00,0xa9,0x00,0xfc,0x00, + 0x72,0x01,0xde,0x01,0xe0,0x03,0xb5,0x04, + 0x20,0x05,0xb1,0x05,0x22,0x06,0xa0,0x06, + 0x02,0x07,0x66,0x07,0xa5,0x47,0xea,0x07, + 0x00,0x08,0x10,0x08,0xfe,0x07,0xe5,0x07, + 0xac,0x07,0x69,0x07,0x1f,0x07,0x3c,0x07, + 0xb5,0x06,0x47,0x06,0xab,0x05,0x37,0x05, + 0x8b,0x04,0x2c,0x04,0x28,0x03,0x19,0x02, + 0xef,0x01,0x7d,0x01,0x37,0x01,0xe6,0x00, + 0xac,0x00,0x76,0x00,0x4a,0x00,0x37,0x00, + 0x3d,0x00,0x21,0x00,0x14,0x00,0x07,0x00, + 0x01,0x00,0xfd,0xff,0xfb,0xff,0xf2,0xff, + 0x50,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xfe,0xff,0xfa,0xff,0xf1,0xff, + 0xeb,0xff,0xde,0xff,0xdd,0xff,0xd1,0xff, + 0xc7,0xff,0xb5,0xff,0xde,0xff,0xdf,0xff, + 0x2e,0x00,0x42,0x00,0xbe,0x00,0xf7,0x00, + 0xbd,0x01,0xee,0x01,0xdb,0x02,0x06,0x03, + 0x0e,0x04,0x1b,0x04,0x20,0x05,0x24,0x05, + 0x4e,0x06,0x09,0x05,0x22,0x06,0x9f,0x04, + 0x87,0x05,0x5b,0x03,0x2d,0x04,0x37,0x01, + 0x33,0x01,0xb9,0xfc,0x14,0xfe,0x83,0xf8, + 0x17,0xfb,0x38,0xf3,0x8f,0xf9,0x0e,0xe9, + 0x5c,0x6f,0x48,0xfa,0x57,0xe8,0xdd,0xef, + 0xe5,0xe8,0xad,0xec,0xa4,0xe8,0x65,0xeb, + 0x28,0xe9,0xd5,0xec,0xce,0xeb,0x60,0xee, + 0x1a,0xee,0xa0,0xf0,0xec,0xf0,0x57,0xf3, + 0x19,0xf4,0x7b,0xf7,0x75,0xf8,0x41,0xfa, + 0xf9,0xfa,0x7c,0xfc,0x16,0xfd,0x40,0xfe, + 0xb1,0xfe,0x7c,0xff,0xa6,0xff,0x2a,0x00, + 0x40,0x00,0x82,0x00,0x7a,0x00,0x8d,0x00, + 0x73,0x00,0x59,0x00,0x3e,0x00,0x30,0x00, + 0x1b,0x00,0x0d,0x00,0x50,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0x0c,0x00,0x1e,0x00,0x2b,0x00, + 0x49,0x00,0x4d,0x00,0x84,0x00,0x7d,0x00, + 0xa0,0x00,0x68,0x00,0x7e,0x00,0x02,0x00, + 0x01,0x00,0x3d,0xff,0x35,0xff,0xf0,0xfd, + 0xc3,0xfd,0x0e,0xfc,0xd6,0xfb,0xac,0xf9, + 0x84,0xf9,0xda,0xf6,0xb5,0xf5,0x26,0xf2, + 0x9e,0xf2,0x0f,0xef,0x27,0xf0,0x47,0xec, + 0x54,0xee,0x14,0xea,0xae,0xec,0x49,0xe7, + 0x28,0xed,0xba,0xe6,0xd6,0xef,0xdc,0xe5, + 0x78,0xf6,0x8b,0xdd,0xc8,0x6a,0x09,0x0a, + 0x49,0xe9,0x0e,0xfd,0x03,0xf3,0x0d,0xfe, + 0xbb,0xf8,0x78,0x00,0x22,0xfd,0xc9,0x03, + 0x52,0x01,0x6c,0x05,0x50,0x03,0x47,0x06, + 0x6a,0x04,0x67,0x06,0xdb,0x04,0x62,0x06, + 0x2a,0x04,0x08,0x05,0x58,0x03,0xc7,0x03, + 0x56,0x02,0x88,0x02,0x5d,0x01,0x72,0x01, + 0x7c,0x00,0x96,0x00,0x00,0x00,0x19,0x00, + 0xbe,0xff,0xdb,0xff,0xaf,0xff,0xe1,0xff, + 0xd3,0xff,0xe7,0xff,0xe6,0xff,0xf4,0xff, + 0xf9,0xff,0xfe,0xff,0x00,0x00,0x00,0x00, + 0x50,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0xfa,0xff,0xeb,0xff, + 0x00,0x00,0xf1,0xff,0x0e,0x00,0xf3,0xff, + 0x28,0x00,0x01,0x00,0x5b,0x00,0x15,0x00, + 0x71,0x00,0x38,0x00,0xe2,0x00,0x92,0x00, + 0x7d,0x01,0x0f,0x01,0x4c,0x02,0x99,0x01, + 0x60,0x03,0x7d,0x03,0x28,0x05,0x5b,0x04, + 0x7b,0x06,0x35,0x05,0xc9,0x07,0xe6,0x05, + 0xba,0x08,0x90,0x05,0xca,0x09,0x4c,0x05, + 0x3e,0x0b,0xc9,0x03,0x4b,0x0e,0x9a,0xfc, + 0x99,0x41,0x38,0x1a,0x11,0xff,0xca,0x0b, + 0x8f,0x02,0xa4,0x08,0xef,0x02,0xaf,0x06, + 0x93,0x02,0xb1,0x03,0x32,0x00,0x3b,0x02, + 0xba,0xff,0x40,0x01,0x55,0xff,0x84,0x00, + 0x20,0xff,0x44,0x00,0xed,0xfe,0xd5,0xff, + 0xfc,0xfe,0xb7,0xff,0x1d,0xff,0xb4,0xff, + 0x49,0xff,0xbc,0xff,0x61,0xff,0xbc,0xff, + 0x8b,0xff,0xce,0xff,0xaf,0xff,0xde,0xff, + 0xcc,0xff,0xf4,0xff,0xed,0xff,0xfb,0xff, + 0xf7,0xff,0xfe,0xff,0xfe,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x00,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00, + 0x04,0x00,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x40,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x02,0x00,0x03,0x00,0x03,0x00,0x03,0x00, + 0x03,0x00,0x03,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, + 0x00,0x00,0x02,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0xb5,0xff,0x00,0x00, + 0x04,0x00,0x00,0x00,0xc4,0xff,0x00,0x00, + 0x08,0x00,0x00,0x00,0xd3,0xff,0x00,0x00, + 0x0c,0x00,0x00,0x00,0xe2,0xff,0x00,0x00, + 0x10,0x00,0x00,0x00,0xf1,0xff,0x00,0x00, + 0x14,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x18,0x00,0x00,0x00,0x0f,0x00,0x00,0x00, + 0x1c,0x00,0x00,0x00,0x1e,0x00,0x00,0x00, + 0x20,0x00,0x00,0x00,0x2d,0x00,0x00,0x00, + 0x24,0x00,0x00,0x00,0x3c,0x00,0x00,0x00, + 0x28,0x00,0x00,0x00,0x4b,0x00,0x00,0x00, + 0x2c,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x30,0x00,0x00,0x00,0x00,0x00,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x39,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x54,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line4_28mm_pm90deg_16khz.conf b/tools/topology/topology2/include/components/tdfb/line4_28mm_pm90deg_16khz.conf new file mode 100644 index 000000000000..9e757b4f6e89 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line4_28mm_pm90deg_16khz.conf @@ -0,0 +1,172 @@ +# Created with script example_two_beams.m 23-Oct-2023 +# cd tools/tune/tdfb; matlab -nodisplay -nosplash -nodesktop -r example_two_beams +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0x14,0x05,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x14,0x05,0x00,0x00,0x08,0x00,0x02,0x00, + 0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xfb,0xff, + 0xec,0xff,0xd1,0xff,0xa9,0xff,0x72,0xff, + 0x2b,0xff,0xd8,0xfe,0x79,0xfe,0x16,0xfe, + 0xb0,0xfd,0x4f,0xfd,0xf5,0xfc,0xc5,0xfc, + 0xac,0xfc,0xd6,0xfc,0x64,0xfc,0x87,0xfc, + 0x38,0xfd,0x90,0xfd,0x09,0xfe,0x70,0xfd, + 0x14,0xfc,0xfe,0xfb,0x2c,0xfc,0x75,0xfc, + 0x47,0xfd,0xa0,0xff,0xd1,0x01,0xfa,0x07, + 0x86,0x10,0xcc,0x13,0x24,0x57,0x65,0x18, + 0x52,0x18,0x89,0x17,0x7b,0x15,0x23,0x10, + 0x2a,0x09,0x76,0x05,0x94,0x02,0x7b,0x01, + 0x21,0x00,0x6c,0xfe,0xc9,0xfd,0x48,0xfe, + 0x9b,0xfe,0x09,0xff,0x45,0xff,0x72,0xff, + 0xc4,0xff,0xf9,0xff,0x17,0x00,0x27,0x00, + 0x2f,0x00,0x31,0x00,0x2c,0x00,0x24,0x00, + 0x1b,0x00,0x13,0x00,0x0b,0x00,0x05,0x00, + 0x40,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x03,0x00,0x08,0x00,0x24,0x00,0x32,0x00, + 0x81,0x00,0x8e,0x00,0x19,0x01,0xfe,0x00, + 0xb0,0x01,0x24,0x01,0xbf,0x01,0x3e,0x00, + 0x89,0x00,0xe7,0xfd,0x09,0xfe,0x9e,0xfa, + 0xc9,0xfa,0xa2,0xf6,0x6f,0xf9,0x75,0xf7, + 0x2e,0xfd,0x20,0xfc,0x3f,0x09,0x2f,0x0a, + 0x96,0x18,0x83,0x12,0x3e,0x1c,0xd1,0x05, + 0x08,0x0d,0x0b,0xdb,0x17,0x0e,0xf9,0x39, + 0x70,0xa7,0x4f,0xc7,0xf7,0xb2,0x34,0xc9, + 0x0b,0xc9,0x67,0xe5,0xb8,0xe9,0xa7,0xfd, + 0x35,0x01,0x53,0x0e,0xda,0x0b,0xa7,0x11, + 0x8f,0x0e,0x6c,0x10,0x67,0x0c,0x08,0x0c, + 0xe5,0x07,0x97,0x07,0xbf,0x04,0x69,0x04, + 0x7e,0x02,0x58,0x02,0x43,0x01,0x38,0x01, + 0x9e,0x00,0x90,0x00,0x40,0x00,0x31,0x00, + 0x10,0x00,0x05,0x00,0x40,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x05,0x00,0x0f,0x00,0x32,0x00, + 0x3e,0x00,0x93,0x00,0x99,0x00,0x3d,0x01, + 0x38,0x01,0x5d,0x02,0x67,0x02,0x6e,0x04, + 0x9b,0x04,0xa0,0x07,0xb3,0x07,0x0d,0x0c, + 0x2d,0x0c,0xa0,0x10,0x60,0x0e,0x20,0x12, + 0xc0,0x0b,0x10,0x0f,0x9f,0x01,0xf2,0xfe, + 0x3d,0xea,0x16,0xe7,0xc2,0xc9,0x8b,0xca, + 0x38,0xb2,0x9e,0xc8,0x8e,0xa4,0x45,0x2e, + 0xe9,0x1a,0xbe,0xd5,0xbb,0x0d,0x8c,0x03, + 0xdb,0x1c,0xab,0x11,0xa9,0x19,0x24,0x0a, + 0x5d,0x0a,0x39,0xfc,0xb9,0xfd,0x54,0xf7, + 0xd2,0xf9,0x5f,0xf6,0xe0,0xfa,0x53,0xfa, + 0x19,0xfe,0xaa,0xfd,0x90,0x00,0x16,0x00, + 0xc6,0x01,0x0f,0x01,0xb9,0x01,0xf4,0x00, + 0x20,0x01,0x8b,0x00,0x85,0x00,0x30,0x00, + 0x25,0x00,0x07,0x00,0x03,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x02,0x00,0x05,0x00, + 0x0c,0x00,0x11,0x00,0x1e,0x00,0x20,0x00, + 0x33,0x00,0x2a,0x00,0x3b,0x00,0x1a,0x00, + 0x2b,0x00,0xe7,0xff,0xe3,0xff,0x58,0xff, + 0x6b,0xff,0xe4,0xfe,0xd3,0xfe,0x12,0xfe, + 0x11,0xfe,0xfb,0xfd,0x5c,0x00,0xf8,0x00, + 0xf5,0x02,0x96,0x04,0x8b,0x09,0x9c,0x0e, + 0x78,0x16,0xcf,0x15,0xca,0x1a,0xa4,0x13, + 0xb0,0x56,0xa4,0x19,0x47,0x0e,0x7c,0x0a, + 0xc9,0x00,0xd3,0x00,0x9d,0xfc,0x2d,0xfd, + 0xa1,0xfb,0x83,0xfc,0x9f,0xfb,0xb0,0xfd, + 0xc1,0xfd,0xe0,0xfd,0x0b,0xfd,0xcf,0xfc, + 0x38,0xfc,0xff,0xfc,0x98,0xfc,0xe3,0xfc, + 0xe5,0xfc,0x61,0xfd,0xa4,0xfd,0x20,0xfe, + 0x70,0xfe,0xdd,0xfe,0x26,0xff,0x74,0xff, + 0xa7,0xff,0xd2,0xff,0xec,0xff,0xfb,0xff, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x02,0x00,0x05,0x00,0x0c,0x00,0x11,0x00, + 0x1e,0x00,0x20,0x00,0x33,0x00,0x2a,0x00, + 0x3b,0x00,0x1a,0x00,0x2b,0x00,0xe7,0xff, + 0xe3,0xff,0x58,0xff,0x6b,0xff,0xe4,0xfe, + 0xd3,0xfe,0x12,0xfe,0x11,0xfe,0xfb,0xfd, + 0x5c,0x00,0xf8,0x00,0xf5,0x02,0x96,0x04, + 0x8b,0x09,0x9c,0x0e,0x78,0x16,0xcf,0x15, + 0xca,0x1a,0xa4,0x13,0xb0,0x56,0xa4,0x19, + 0x47,0x0e,0x7c,0x0a,0xc9,0x00,0xd3,0x00, + 0x9d,0xfc,0x2d,0xfd,0xa1,0xfb,0x83,0xfc, + 0x9f,0xfb,0xb0,0xfd,0xc1,0xfd,0xe0,0xfd, + 0x0b,0xfd,0xcf,0xfc,0x38,0xfc,0xff,0xfc, + 0x98,0xfc,0xe3,0xfc,0xe5,0xfc,0x61,0xfd, + 0xa4,0xfd,0x20,0xfe,0x70,0xfe,0xdd,0xfe, + 0x26,0xff,0x74,0xff,0xa7,0xff,0xd2,0xff, + 0xec,0xff,0xfb,0xff,0x00,0x00,0x00,0x00, + 0x40,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00, + 0x0f,0x00,0x32,0x00,0x3e,0x00,0x93,0x00, + 0x99,0x00,0x3d,0x01,0x38,0x01,0x5d,0x02, + 0x67,0x02,0x6e,0x04,0x9b,0x04,0xa0,0x07, + 0xb3,0x07,0x0d,0x0c,0x2d,0x0c,0xa0,0x10, + 0x60,0x0e,0x20,0x12,0xc0,0x0b,0x10,0x0f, + 0x9f,0x01,0xf2,0xfe,0x3d,0xea,0x16,0xe7, + 0xc2,0xc9,0x8b,0xca,0x38,0xb2,0x9e,0xc8, + 0x8e,0xa4,0x45,0x2e,0xe9,0x1a,0xbe,0xd5, + 0xbb,0x0d,0x8c,0x03,0xdb,0x1c,0xab,0x11, + 0xa9,0x19,0x24,0x0a,0x5d,0x0a,0x39,0xfc, + 0xb9,0xfd,0x54,0xf7,0xd2,0xf9,0x5f,0xf6, + 0xe0,0xfa,0x53,0xfa,0x19,0xfe,0xaa,0xfd, + 0x90,0x00,0x16,0x00,0xc6,0x01,0x0f,0x01, + 0xb9,0x01,0xf4,0x00,0x20,0x01,0x8b,0x00, + 0x85,0x00,0x30,0x00,0x25,0x00,0x07,0x00, + 0x03,0x00,0x00,0x00,0x40,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x03,0x00,0x08,0x00, + 0x24,0x00,0x32,0x00,0x81,0x00,0x8e,0x00, + 0x19,0x01,0xfe,0x00,0xb0,0x01,0x24,0x01, + 0xbf,0x01,0x3e,0x00,0x89,0x00,0xe7,0xfd, + 0x09,0xfe,0x9e,0xfa,0xc9,0xfa,0xa2,0xf6, + 0x6f,0xf9,0x75,0xf7,0x2e,0xfd,0x20,0xfc, + 0x3f,0x09,0x2f,0x0a,0x96,0x18,0x83,0x12, + 0x3e,0x1c,0xd1,0x05,0x08,0x0d,0x0b,0xdb, + 0x17,0x0e,0xf9,0x39,0x70,0xa7,0x4f,0xc7, + 0xf7,0xb2,0x34,0xc9,0x0b,0xc9,0x67,0xe5, + 0xb8,0xe9,0xa7,0xfd,0x35,0x01,0x53,0x0e, + 0xda,0x0b,0xa7,0x11,0x8f,0x0e,0x6c,0x10, + 0x67,0x0c,0x08,0x0c,0xe5,0x07,0x97,0x07, + 0xbf,0x04,0x69,0x04,0x7e,0x02,0x58,0x02, + 0x43,0x01,0x38,0x01,0x9e,0x00,0x90,0x00, + 0x40,0x00,0x31,0x00,0x10,0x00,0x05,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xfb,0xff,0xec,0xff,0xd1,0xff, + 0xa9,0xff,0x72,0xff,0x2b,0xff,0xd8,0xfe, + 0x79,0xfe,0x16,0xfe,0xb0,0xfd,0x4f,0xfd, + 0xf5,0xfc,0xc5,0xfc,0xac,0xfc,0xd6,0xfc, + 0x64,0xfc,0x87,0xfc,0x38,0xfd,0x90,0xfd, + 0x09,0xfe,0x70,0xfd,0x14,0xfc,0xfe,0xfb, + 0x2c,0xfc,0x75,0xfc,0x47,0xfd,0xa0,0xff, + 0xd1,0x01,0xfa,0x07,0x86,0x10,0xcc,0x13, + 0x24,0x57,0x65,0x18,0x52,0x18,0x89,0x17, + 0x7b,0x15,0x23,0x10,0x2a,0x09,0x76,0x05, + 0x94,0x02,0x7b,0x01,0x21,0x00,0x6c,0xfe, + 0xc9,0xfd,0x48,0xfe,0x9b,0xfe,0x09,0xff, + 0x45,0xff,0x72,0xff,0xc4,0xff,0xf9,0xff, + 0x17,0x00,0x27,0x00,0x2f,0x00,0x31,0x00, + 0x2c,0x00,0x24,0x00,0x1b,0x00,0x13,0x00, + 0x0b,0x00,0x05,0x00,0x00,0x00,0x01,0x00, + 0x02,0x00,0x03,0x00,0x00,0x00,0x01,0x00, + 0x02,0x00,0x03,0x00,0x01,0x00,0x01,0x00, + 0x01,0x00,0x01,0x00,0x02,0x00,0x02,0x00, + 0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x39,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x54,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line4_28mm_pm90deg_48khz.conf b/tools/topology/topology2/include/components/tdfb/line4_28mm_pm90deg_48khz.conf new file mode 100644 index 000000000000..150519bdac18 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line4_28mm_pm90deg_48khz.conf @@ -0,0 +1,172 @@ +# Created with script example_two_beams.m 23-Oct-2023 +# cd tools/tune/tdfb; matlab -nodisplay -nosplash -nodesktop -r example_two_beams +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0x14,0x05,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x14,0x05,0x00,0x00,0x08,0x00,0x02,0x00, + 0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00, + 0x00,0x00,0x0f,0x00,0xa6,0xff,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff, + 0xfc,0xff,0xf7,0xff,0xef,0xff,0xe7,0xff, + 0xdb,0xff,0xd4,0xff,0xca,0xff,0xbc,0xff, + 0xae,0xff,0xa4,0xff,0x98,0xff,0x99,0xff, + 0x90,0xff,0xbb,0xff,0xd3,0xff,0xcd,0xff, + 0x0e,0x00,0x3e,0x00,0x94,0x00,0xe2,0x00, + 0x53,0x01,0xbf,0x01,0xad,0x03,0x87,0x04, + 0xfc,0x04,0x96,0x05,0x11,0x06,0x96,0x06, + 0xfe,0x06,0x65,0x07,0xa1,0x47,0xe6,0x07, + 0xf4,0x07,0xf9,0x07,0xd8,0x07,0xad,0x07, + 0x60,0x07,0x07,0x07,0xa5,0x06,0xa1,0x06, + 0x05,0x06,0x81,0x05,0xd6,0x04,0x51,0x04, + 0xa2,0x03,0x36,0x03,0x53,0x02,0x79,0x01, + 0x49,0x01,0xed,0x00,0xb4,0x00,0x7a,0x00, + 0x53,0x00,0x33,0x00,0x1b,0x00,0x11,0x00, + 0x40,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xfe,0xff,0xfe,0xff,0xfc,0xff, + 0x09,0x00,0x11,0x00,0x3b,0x00,0x5c,0x00, + 0xbe,0x00,0xee,0x00,0x84,0x01,0xc0,0x01, + 0x86,0x02,0xb9,0x02,0x98,0x03,0xca,0x03, + 0xda,0x04,0x07,0x04,0x13,0x05,0xf1,0x03, + 0xd9,0x04,0x03,0x03,0xd4,0x03,0x22,0x01, + 0x23,0x01,0xd9,0xfc,0x22,0xfe,0xa6,0xf8, + 0x25,0xfb,0x4a,0xf3,0x92,0xf9,0x0f,0xe9, + 0x56,0x6f,0x4b,0xfa,0x79,0xe8,0x0b,0xf0, + 0x52,0xe9,0x35,0xed,0x8b,0xe9,0x75,0xec, + 0xad,0xea,0x6f,0xee,0xe0,0xed,0x8d,0xf0, + 0xba,0xf0,0x46,0xf3,0xf0,0xf3,0x41,0xf6, + 0x3b,0xf7,0x06,0xfa,0xff,0xfa,0x6d,0xfc, + 0x18,0xfd,0x22,0xfe,0x99,0xfe,0x40,0xff, + 0x84,0xff,0xd7,0xff,0xea,0xff,0x08,0x00, + 0x08,0x00,0x09,0x00,0x40,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x03,0x00,0x07,0x00,0x10,0x00,0x00,0x00, + 0x00,0x00,0xc3,0xff,0xb5,0xff,0x1e,0xff, + 0xed,0xfe,0xe8,0xfd,0x98,0xfd,0x10,0xfc, + 0xb3,0xfb,0x95,0xf9,0x6a,0xf8,0x57,0xf5, + 0x4c,0xf5,0xfa,0xf1,0x7a,0xf2,0xb6,0xee, + 0x23,0xf0,0xe8,0xeb,0xf7,0xed,0x8f,0xe8, + 0xe2,0xed,0x6d,0xe7,0x22,0xf0,0x26,0xe6, + 0x86,0xf6,0x9d,0xdd,0xc1,0x6a,0x08,0x0a, + 0x55,0xe9,0x13,0xfd,0x28,0xf3,0x16,0xfe, + 0xee,0xf8,0x73,0x00,0x48,0xfd,0x88,0x03, + 0x36,0x01,0xde,0x04,0xe7,0x02,0x5b,0x05, + 0xa8,0x03,0x1f,0x05,0xbd,0x03,0xb4,0x04, + 0xec,0x02,0x57,0x03,0x15,0x02,0x2f,0x02, + 0x3e,0x01,0x38,0x01,0x95,0x00,0x89,0x00, + 0x27,0x00,0x25,0x00,0x00,0x00,0x03,0x00, + 0xfc,0xff,0xff,0xff,0x00,0x00,0x00,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x17,0x00,0x06,0x00, + 0x2a,0x00,0x18,0x00,0x6c,0x00,0x4e,0x00, + 0xdd,0x00,0xa9,0x00,0x86,0x01,0x1f,0x01, + 0x7d,0x02,0xaf,0x02,0x20,0x04,0x9b,0x03, + 0x87,0x05,0x90,0x04,0xfd,0x06,0x68,0x05, + 0x25,0x08,0x47,0x05,0x69,0x09,0x27,0x05, + 0x09,0x0b,0xbf,0x03,0x37,0x0e,0x9c,0xfc, + 0x95,0x41,0x37,0x1a,0x11,0xff,0xb9,0x0b, + 0x88,0x02,0x7c,0x08,0xdb,0x02,0x6d,0x06, + 0x71,0x02,0x72,0x03,0x2d,0x00,0x00,0x02, + 0xc3,0xff,0x11,0x01,0x73,0xff,0x6a,0x00, + 0x54,0xff,0x32,0x00,0x3f,0xff,0xe3,0xff, + 0x5e,0xff,0xd6,0xff,0x87,0xff,0xdb,0xff, + 0xb2,0xff,0xe7,0xff,0xcf,0xff,0xef,0xff, + 0xea,0xff,0xfa,0xff,0xfb,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x40,0x00,0x01,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x17,0x00,0x06,0x00,0x2a,0x00,0x18,0x00, + 0x6c,0x00,0x4e,0x00,0xdd,0x00,0xa9,0x00, + 0x86,0x01,0x1f,0x01,0x7d,0x02,0xaf,0x02, + 0x20,0x04,0x9b,0x03,0x87,0x05,0x90,0x04, + 0xfd,0x06,0x68,0x05,0x25,0x08,0x47,0x05, + 0x69,0x09,0x27,0x05,0x09,0x0b,0xbf,0x03, + 0x37,0x0e,0x9c,0xfc,0x95,0x41,0x37,0x1a, + 0x11,0xff,0xb9,0x0b,0x88,0x02,0x7c,0x08, + 0xdb,0x02,0x6d,0x06,0x71,0x02,0x72,0x03, + 0x2d,0x00,0x00,0x02,0xc3,0xff,0x11,0x01, + 0x73,0xff,0x6a,0x00,0x54,0xff,0x32,0x00, + 0x3f,0xff,0xe3,0xff,0x5e,0xff,0xd6,0xff, + 0x87,0xff,0xdb,0xff,0xb2,0xff,0xe7,0xff, + 0xcf,0xff,0xef,0xff,0xea,0xff,0xfa,0xff, + 0xfb,0xff,0xff,0xff,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x40,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x03,0x00,0x07,0x00, + 0x10,0x00,0x00,0x00,0x00,0x00,0xc3,0xff, + 0xb5,0xff,0x1e,0xff,0xed,0xfe,0xe8,0xfd, + 0x98,0xfd,0x10,0xfc,0xb3,0xfb,0x95,0xf9, + 0x6a,0xf8,0x57,0xf5,0x4c,0xf5,0xfa,0xf1, + 0x7a,0xf2,0xb6,0xee,0x23,0xf0,0xe8,0xeb, + 0xf7,0xed,0x8f,0xe8,0xe2,0xed,0x6d,0xe7, + 0x22,0xf0,0x26,0xe6,0x86,0xf6,0x9d,0xdd, + 0xc1,0x6a,0x08,0x0a,0x55,0xe9,0x13,0xfd, + 0x28,0xf3,0x16,0xfe,0xee,0xf8,0x73,0x00, + 0x48,0xfd,0x88,0x03,0x36,0x01,0xde,0x04, + 0xe7,0x02,0x5b,0x05,0xa8,0x03,0x1f,0x05, + 0xbd,0x03,0xb4,0x04,0xec,0x02,0x57,0x03, + 0x15,0x02,0x2f,0x02,0x3e,0x01,0x38,0x01, + 0x95,0x00,0x89,0x00,0x27,0x00,0x25,0x00, + 0x00,0x00,0x03,0x00,0xfc,0xff,0xff,0xff, + 0x00,0x00,0x00,0x00,0x40,0x00,0x02,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xfe,0xff, + 0xfe,0xff,0xfc,0xff,0x09,0x00,0x11,0x00, + 0x3b,0x00,0x5c,0x00,0xbe,0x00,0xee,0x00, + 0x84,0x01,0xc0,0x01,0x86,0x02,0xb9,0x02, + 0x98,0x03,0xca,0x03,0xda,0x04,0x07,0x04, + 0x13,0x05,0xf1,0x03,0xd9,0x04,0x03,0x03, + 0xd4,0x03,0x22,0x01,0x23,0x01,0xd9,0xfc, + 0x22,0xfe,0xa6,0xf8,0x25,0xfb,0x4a,0xf3, + 0x92,0xf9,0x0f,0xe9,0x56,0x6f,0x4b,0xfa, + 0x79,0xe8,0x0b,0xf0,0x52,0xe9,0x35,0xed, + 0x8b,0xe9,0x75,0xec,0xad,0xea,0x6f,0xee, + 0xe0,0xed,0x8d,0xf0,0xba,0xf0,0x46,0xf3, + 0xf0,0xf3,0x41,0xf6,0x3b,0xf7,0x06,0xfa, + 0xff,0xfa,0x6d,0xfc,0x18,0xfd,0x22,0xfe, + 0x99,0xfe,0x40,0xff,0x84,0xff,0xd7,0xff, + 0xea,0xff,0x08,0x00,0x08,0x00,0x09,0x00, + 0x40,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0xff,0xff,0xfc,0xff,0xf7,0xff, + 0xef,0xff,0xe7,0xff,0xdb,0xff,0xd4,0xff, + 0xca,0xff,0xbc,0xff,0xae,0xff,0xa4,0xff, + 0x98,0xff,0x99,0xff,0x90,0xff,0xbb,0xff, + 0xd3,0xff,0xcd,0xff,0x0e,0x00,0x3e,0x00, + 0x94,0x00,0xe2,0x00,0x53,0x01,0xbf,0x01, + 0xad,0x03,0x87,0x04,0xfc,0x04,0x96,0x05, + 0x11,0x06,0x96,0x06,0xfe,0x06,0x65,0x07, + 0xa1,0x47,0xe6,0x07,0xf4,0x07,0xf9,0x07, + 0xd8,0x07,0xad,0x07,0x60,0x07,0x07,0x07, + 0xa5,0x06,0xa1,0x06,0x05,0x06,0x81,0x05, + 0xd6,0x04,0x51,0x04,0xa2,0x03,0x36,0x03, + 0x53,0x02,0x79,0x01,0x49,0x01,0xed,0x00, + 0xb4,0x00,0x7a,0x00,0x53,0x00,0x33,0x00, + 0x1b,0x00,0x11,0x00,0x00,0x00,0x01,0x00, + 0x02,0x00,0x03,0x00,0x00,0x00,0x01,0x00, + 0x02,0x00,0x03,0x00,0x01,0x00,0x01,0x00, + 0x01,0x00,0x01,0x00,0x02,0x00,0x02,0x00, + 0x02,0x00,0x02,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x5a,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xac,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x39,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0xc7,0xff, + 0x00,0x00,0x00,0x00,0x00,0x00,0x54,0xff, + 0x00,0x00,0x00,0x00" +} diff --git a/tools/topology/topology2/include/components/tdfb/line4_pass.conf b/tools/topology/topology2/include/components/tdfb/line4_pass.conf new file mode 100644 index 000000000000..d32da6170539 --- /dev/null +++ b/tools/topology/topology2/include/components/tdfb/line4_pass.conf @@ -0,0 +1,16 @@ +# Exported with script example_pass_config.m 23-Oct-2023 +# cd tools/tune/tdfb; octave --no-window-system example_pass_config.m +Object.Base.data."tdfb_config" { + bytes " + 0x53,0x4f,0x46,0x34,0x00,0x00,0x00,0x00, + 0x34,0x00,0x00,0x00,0x00,0xa0,0x01,0x03, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x34,0x00,0x00,0x00,0x04,0x00,0x04,0x00, + 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x1e,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, + 0x02,0x00,0x03,0x00,0x01,0x00,0x02,0x00, + 0x04,0x00,0x08,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00" +}