#!/bin/sh -e

version="$1"
bootopt=""

[ -x /usr/sbin/update-initramfs ] || exit 0

# passing the kernel version is required
if [ -z "${version}" ]; then
	echo >&2 "W: initramfs-tools: ${DPKG_MAINTSCRIPT_PACKAGE:-kernel package} did not pass a version number"
	exit 0
fi

# exit if custom kernel does not need an initramfs
if [ "$INITRD" = 'No' ]; then
	exit 0
fi

# absolute file name of kernel image may be passed as a second argument;
# create the initrd in the same directory
if [ -n "$2" ]; then
	bootdir=$(dirname "$2")
	bootopt="-b ${bootdir}"
fi

# avoid running multiple times
if [ -n "$DEB_MAINT_PARAMS" ]; then
	eval set -- "$DEB_MAINT_PARAMS"
	if [ -z "$1" ] || [ "$1" != "remove" ]; then
		exit 0
	fi
fi

# delete initramfs
# shellcheck disable=SC2086
update-initramfs -d -k "${version}" ${bootopt} >&2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #!/bin/sh

BOOTDIR=/boot
CONF=/etc/initramfs-tools/update-initramfs.conf
mode=""
version=""
update_initramfs=yes
backup_initramfs=no

set -e

[ -r ${CONF} ] && . ${CONF}

if [ -n "$DPKG_MAINTSCRIPT_PACKAGE" ] && [ $# = 1 ] && [ "$1" = -u ]; then
	if dpkg-trigger --no-await update-initramfs; then
		echo "update-initramfs: deferring update (trigger activated)"
		exit 0
	fi
fi

usage()
{
	cat << EOF

Usage: update-initramfs {-c|-d|-u} [-k version] [-v] [-b directory]

Options:
 -k version	Specify kernel version or 'all'
 -c		Create a new initramfs
 -u		Update an existing initramfs
 -d		Remove an existing initramfs
 -b directory	Set alternate boot directory
 -v		Be verbose

See update-initramfs(8) for further details.

EOF
}

usage_error()
{
	if [ -n "${1:-}" ]; then
		printf "%s\\n\\n" "${*}" >&2
	fi
	usage >&2
	exit 2
}

mild_panic()
{
	if [ -n "${1:-}" ]; then
		printf "%s\\n" "${*}" >&2
	fi
	exit 0
}

panic()
{
	if [ -n "${1:-}" ]; then
		printf "%s\\n" "${*}" >&2
	fi
	exit 1
}

verbose()
{
	if [ "${verbose}" = 1 ]; then
		printf "%s\\n" "${*}"
	fi
}

set_initramfs()
{
	initramfs="${BOOTDIR}/initrd.img-${version}"
}


# backup initramfs while running
backup_initramfs()
{
	[ ! -r "${initramfs}" ] && return 0
	initramfs_bak="${initramfs}.dpkg-bak"
	[ -r "${initramfs_bak}" ] && rm -f "${initramfs_bak}"
	ln -f "${initramfs}" "${initramfs_bak}" \
		|| cp -a "${initramfs}" "${initramfs_bak}"
	verbose "Keeping ${initramfs_bak}"
}

# keep booted initramfs
backup_booted_initramfs()
{
	initramfs_bak="${initramfs}.dpkg-bak"

	# first time run thus no backup
	[ ! -r "${initramfs_bak}" ] && return 0

	# chroot with no /proc
	[ ! -r /proc/uptime ] && rm -f "${initramfs_bak}" && return 0

	# no kept backup wanted
	[ "${backup_initramfs}" = "no" ] && rm -f "${initramfs_bak}" && return 0

	# no backup yet
	if [ ! -r "${initramfs}.bak" ]; then
		mv -f "${initramfs_bak}" "${initramfs}.bak"
		verbose "Backup ${initramfs}.bak"
		return 0
	fi

	# keep booted initramfs
	boot_initramfs=
	uptime_days=$(awk '{printf "%d", $1 / 3600 / 24}' /proc/uptime)
	if [ -n "$uptime_days" ]; then
		boot_initramfs=$(find "${initramfs}.bak" -mtime "+${uptime_days}")
	fi
	if [ -n "${boot_initramfs}" ]; then
		mv -f "${initramfs_bak}" "${initramfs}.bak"
		verbose "Backup ${initramfs}.bak"
		return 0
	fi
	verbose "Removing current backup ${initramfs_bak}"
	rm -f "${initramfs_bak}"
}

# nuke generated copy
remove_initramfs_bak()
{
	[ -z "${initramfs_bak:-}" ] && return 0
	rm -f "${initramfs_bak}"
	verbose "Removing ${initramfs_bak}"
}


generate_initramfs()
{
	echo "update-initramfs: Generating ${initramfs}"
	OPTS="-o"
	if [ "${verbose}" = 1 ]; then
		OPTS="-v ${OPTS}"
	fi
	# shellcheck disable=SC2086
	if mkinitramfs ${OPTS} "${initramfs}.new" "${version}"; then
		mv -f "${initramfs}.new" "${initramfs}"
		# Guard against an unclean shutdown
		sync -f "${initramfs}"
	else
		mkinitramfs_return="$?"
		remove_initramfs_bak
		rm -f "${initramfs}.new"
		echo "update-initramfs: failed for ${initramfs} with $mkinitramfs_return." >&2
		exit $mkinitramfs_return
	fi
}

# Invoke bootloader
run_bootloader()
{
	# invoke policy conformant bootloader hooks
	if [ -d /etc/initramfs/post-update.d/ ]; then
		run-parts --arg="${version}" --arg="${initramfs}" \
			/etc/initramfs/post-update.d/
		return 0
	fi
}

# ro /boot is not modified
ro_boot_check()
{
	# check irrelevant inside of a chroot
	if [ ! -r /proc/mounts ] || ischroot; then
		return 0
	fi

	# shellcheck disable=SC1004
	boot_opts=$(awk '/boot/{if ((match($4, /^ro/) || match($4, /,ro/)) \
		&& $2 == "/boot") print "ro"}' /proc/mounts)
	if [ -n "${boot_opts}" ]; then
		echo "W: /boot is ro mounted." >&2
		echo "W: update-initramfs: Not updating ${initramfs}" >&2
		exit 0
	fi
}

get_sorted_versions()
{
	version_list="$(
		linux-version list |
		while read -r version; do
		      test -e "${BOOTDIR}/initrd.img-$version" && echo "$version"
		done |
		linux-version sort --reverse
		)"
	verbose "Available versions: ${version_list}"
}

set_current_version()
{
	if [ -f "/boot/initrd.img-$(uname -r)" ]; then
		version=$(uname -r)
	fi
}

set_linked_version()
{
	linktarget=
	if [ -e /initrd.img ] && [ -L /initrd.img ]; then
		linktarget="$(basename "$(readlink /initrd.img)")"
	fi

	if [ -e /boot/initrd.img ] && [ -L /boot/initrd.img ]; then
		linktarget="$(basename "$(readlink /boot/initrd.img)")"
	fi

	if [ -z "${linktarget}" ]; then
		return
	fi

	version="${linktarget##initrd.img-}"
}

set_highest_version()
{
	get_sorted_versions
	if [ -z "${version_list}" ]; then
		version=
		return
	fi
	# shellcheck disable=SC2086
	set -- ${version_list}
	version=${1}
}

create()
{
	if [ -z "${version}" ]; then
		usage_error "Create mode requires a version argument"
	fi

	set_initramfs

	generate_initramfs

	run_bootloader
}

update()
{
	if [ "${update_initramfs}" = "no" ]; then
		echo "update-initramfs: Not updating initramfs."
		exit 0
	fi

	if [ -z "${version}" ]; then
		set_highest_version
	fi

	if [ -z "${version}" ]; then
		set_linked_version
	fi

	if [ -z "${version}" ]; then
		set_current_version
	fi

	if [ -z "${version}" ]; then
		verbose "Nothing to do, exiting."
		exit 0
	fi

	set_initramfs

	ro_boot_check

	backup_initramfs

	generate_initramfs

	run_bootloader

	backup_booted_initramfs
}

delete()
{
	if [ -z "${version}" ]; then
		usage_error "Delete mode requires a version argument"
	fi

	set_initramfs

	echo "update-initramfs: Deleting ${initramfs}"

	rm -f "${initramfs}" "${initramfs}.bak"
}

# Defaults
verbose=0

##

OPTIONS=$(getopt -o "k:cudvtb:h?" --long help -n "$0" -- "$@") || usage_error

eval set -- "$OPTIONS"

while true; do
	case "$1" in
	-k)
		version="$2"
		shift 2
		;;
	-c)
		mode="c"
		shift
		;;
	-d)
		mode="d"
		shift
		;;
	-u)
		mode="u"
		shift
		;;
	-v)
		verbose="1"
		shift
		;;
	-t)
		# accepted for compatibility, but ignored
		shift
		;;
	-b)
		BOOTDIR="$2"
		if [ ! -d "${BOOTDIR}" ]; then
			echo "E: ${BOOTDIR} is not a directory." >&2
			exit 1
		fi
		shift 2
		;;
	-h|-\?|--help)
		usage
		exit 0
		;;
	--)
		shift
		break
		;;
	esac
done

if [ $# -ne 0 ]; then
	printf "Extra argument '%s'\\n\\n" "$1" >&2
	usage_error
fi

# Validate arguments
if [ -z "${mode}" ]; then
	usage_error "You must specify at least one of -c, -u, or -d."
fi

if [ "${version}" = "all" ] \
	|| { [ "${update_initramfs}" = "all" ] && [ -z "${version}" ]; }; then
	case "${mode}" in
	c)
		version_list="$(linux-version list)"
		;;
	d | u)
		get_sorted_versions
		;;
	esac
	if [ -z "${version_list}" ]; then
		verbose "Nothing to do, exiting."
		exit 0
	fi

	OPTS="-b ${BOOTDIR}"
	if [ "${verbose}" = "1" ]; then
		OPTS="${OPTS} -v"
	fi
	for u_version in ${version_list}; do
		verbose "Execute: ${0} -${mode} -k \"${u_version}\" ${OPTS}"
		# shellcheck disable=SC2086
		"${0}" -${mode} -k "${u_version}" ${OPTS}
	done
	exit 0
fi


case "${mode}" in
	c)
		create
		;;
	d)
		delete
		;;
	u)
		update
		;;
esac
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    # update-initramfs(8) completion

_update_initramfs()
{
	local cur prev valid_options

	_get_comp_words_by_ref cur prev

	# The only option that takes an argument is -k
	if [[ "$prev" == '-k' ]]; then
		# Complete with kernel versions
		_kernel_versions
		COMPREPLY=( $( compgen -W '${COMPREPLY[@]} all' -- "$cur" ) )
		return;
	fi

	# Complete with available options (obtained from -h)
	valid_options=$( update-initramfs -h 2>&1 | \
		sed -e '/^ -/!d;s/^ \(-\w\+\).*/\1/' )
	COMPREPLY=( $( compgen -W "$valid_options" -- $cur ) )
}

complete -F _update_initramfs update-initramfs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           #!/bin/sh

exec >&3

echo "-- initramfs sizes"
ls -lh /boot/initrd.img-*

echo "-- /proc/cmdline"
cat /proc/cmdline
echo

if [ -r  /etc/initramfs-tools/conf.d/resume ]; then
	echo "-- resume"
	cat  /etc/initramfs-tools/conf.d/resume
fi

echo "-- /proc/filesystems"
grep -v nodev /proc/filesystems
echo

echo "-- lsmod"
lsmod
echo

if [ -r /etc/initramfs-tools/modules ]; then
	echo "-- /etc/initramfs-tools/modules"
	sed 's/#.*$//;/^[[:space:]]*$/d' /etc/initramfs-tools/modules
	echo
fi

if [ -r /etc/kernel-img.conf ]; then
	echo "-- /etc/kernel-img.conf"
	cat /etc/kernel-img.conf
	echo
fi

if [ -r /etc/initramfs-tools/initramfs.conf ]; then
	echo "-- /etc/initramfs-tools/initramfs.conf"
	sed 's/#.*$//;/^[[:space:]]*$/d' /etc/initramfs-tools/initramfs.conf
	echo
fi

if [ -r /etc/initramfs-tools/update-initramfs.conf ]; then
	echo "-- /etc/initramfs-tools/update-initramfs.conf"
	sed 's/#.*$//;/^[[:space:]]*$/d' /etc/initramfs-tools/update-initramfs.conf
	echo
fi

if [ -r /etc/crypttab ]; then
	echo "-- /etc/crypttab"
	cat /etc/crypttab
	echo
fi

if [ -r /proc/mdstat ]; then
	echo "-- /proc/mdstat"
	cat /proc/mdstat
	echo
fi

if grep -rq "MODULES=dep" /etc/initramfs-tools/ ; then
	echo "-- /sys/block"
	ls /sys/block
	echo
fi

echo "-- mkinitramfs hooks"
ls /usr/share/initramfs-tools/hooks /etc/initramfs-tools/hooks/
echo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Xr#}WtU$%pHv-k-őKVTr3 	sB~4]-zf4rVފv1_S΋i#NΥ6[YM+m#jCxrOI]Aܒj*^Ok4CdUF<ظsIސU)l#\ÚV:ĞkIS_*SKZ͌٩.ZT%$N
; xb7dTzNJDxDﰬhDoZ_:'r1Ob%TA^rA|qWϕք6K55b-Lhj|s/o]JXQ:J_
ӊ9b˳+I f )d(l`["QTOEdf਽&.[x?|E+j`
}Dwp@o_-GRWJRyona@:)'pL+Gekџ} 7&PsX6SsOOg$(4Pڊ͈5ki0oؿBJnAM-5A)`΁:kPqZDPڊ
i)ZS.Al\/dvV8H;1;n!M%|5+Yn)vro7Q&"M08K3Dh eQ:Ph]"ں2ڍ]\_ۑ^߂ 1ˊxLO!pE¿YHz26hj	"xHCjl$/A5A{Hta\CliwMLliSD3Nv-?3)N6`ˆ	t뛳7		PE<><@	4
k{ ϙZie٠<(Gokt1vOۋ48a?yVEhgJp"~Ai0<pU];sA:㜊TAZʲ[7Ӟ
Uc<*z+d_x,|? 9쬂2j?DSl+YDĞ&/'QB=EzLӘ5mEs.'q!b"_o7[Q3ǑHWh\Gz'/NDХSPgE]7QůlϳѤ,1^?3[_=GlH\R,7Qbeb2s
A,Acn@+UKCUp'*fw:~{~oŽjUP}ᣲ~ՊC*xǉPY(|1#da,|>Io6R`Τ<x\-\zQ159-8UelkR{)`;7JaR^јdcal[t7{{#eaR?ٙòB)a4"WJײ4(Gͪm-P.d|򙲟,fCõU+Rc'Cp8JǤKMd
r'8]4nM_%γ[9Әz,|222*2+e§Q4YSeKjReяEL/'I9LF>X?6_*Rֱ^sRA#ar#b-XhMibCf`8_ꀡdD"Ӌ0{ZJ!~\nٸdVi<reE[5?
j:  樝>:{mx5eϣB!v9{
-0=IvcoJXB-Y9<xzy[T|Jۏr6
}.L!w{P=Ύit<Nʓ^V:s                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 TODO
====

 o Grep for TODO and FIXME and do those. =)

 o Exclude list of hooks for admin.

 o Easier generation for remote boxes, see #570522.

 o "Fix" sed magic for lib dependence,
   copy_exec, maybe use dracut copy logic.

 o root loop support.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Zr7?O~U"9S%Hd[eYImR*-XΕ9t8žn 3Re*Ѱ׿n@i6,<v:w$e)_D.B%Ťrr#aJ!kڲW'RMײ,,{洬#䌶	ȋ&q5w<O˱oTuSW7Y{+X+ˢۊu(ZIVVwV0VR	#f>6-V?idoRP%@ &͂<=FV^ݦ9:.Hԓ\\вkuQF	BW-?'/8'[CҲ^I"VSM+_E䵼uCnwOϞsQ	=?X VUVEb_7ֿЛ{h(>kh	S6?8;&m96&&6DȮ*} סW1:(Th-|e;T8?e!d#`Ŀ4(a6JKܷa'3yU`П-D.[L``cFv3lthpireDܶId+ZHD`O.ke[vlAwg]Ri](\{f/v7YVvmǘBdidH! "jrrh@ >ߨo۽ɿiCC܉8UKV]Y(.&\tɁZ{/䮀4ɋ
#=oN}ҡsLlO#gm-Dof#2҆-a
kLFW!IdAޅ181dHC(ȉzֈQ]|9(=RʼjHq)Bdƹؾ@1'Ge5HZ9dosC+XZBBM䗟>hy"-
ѐ3!=> WP'r=n|;V7DNxMx#H+'M{hΚMvTu
M$-+A%֪yG")YB2WvQB73Z!b-{>)tUUZhS	&;ĶXl3q-]Л^m6/Ra7ZBL=[lΆTF0f]̴gנ%׬Kjq4M:	0UL,L0vŰCa:q=ww',}#X"A~gHΡz|nZNhR@5*Wl[zIp~J3
l+ppb h5J&o~x#@9Wo__~<;)(͜8z1 Ұ)'lH"ZH*&ZsApŧoHY=PPϓ
>(e9eN)?~slRC訰rk
0,&T .^Jd; UdX5KJ;(,[s^i*m6xCٮ {uX|)
.qT"%cOE,aՊqmG+BR^JSYuhT / ewBgU ZŮvxE!<0:A

AxD;G}s۷DqWoh<⺔N RxEu-}6d:mG`a"{$t<5hhRY"WH )%@¨|qы-$m[x-
Qkm`j0}MoGz~q$m@bBk# UR*1S}j{[r]P匧)b,enhΌh.jɵ%9Fiq-0HV
^+@[ͨc!Yy%Yϰa)Z\M@w]KpҭrѥUؾԤB{0Ea@7[	W	up/uYv7hH;BZY!@۾71GO^@B7iP\B1Iʶ2`þ'VlÍ6~ݒZ\&[KUC!lxEY%j߲ɫ
Y(p
hwRkeFd
IchLQP#l@5L҄@ %EO>W{(?v>ib!|	'=@86
{Msfmg74rxvmwnG7Cqƻ9]p;F; U4gX B*ʨ!<2ۊc˳O~1M55KYM L&f4Pz|-;꙯ ݳaSh!wr~o]	ūމ斵c	/Xz	53-/j4t@9%2
k_
%d`Z`aCbb(e٢ˡy9ʃMY6D$`> O@/iTxNw&Y&##o+"z!;VLF hzgpc/bhb& lIN.z9eҔʳ+9}]zduoCLϹAcʹ)qSbowz.g4uS!P.5EkE&޿:\S֚Vs^٧e J`s %׍ aAՋ7踞e
eQ
<\XRñ
IV&:=-oja"GP QR?+܉#oۗ 1QS{	>G/W'%ۋJ&hf$CEZPٵa^6J6 KV&P6 o/uLtߩ^Dql}hk5PX{0	doݧFtK	;5?R,zn 3$"cWOv!)n9P/x4JfQ+we`ajԳ]19X#tcz1PA? {S֫1Eg"RY砐&jz8IDF~fj_^5wùvD*lɪXP<{s(vWՃ
 Zb٪BXZPv3L#y8NDYVU<l?I=ٕls?2,vBylHeW}@t	ƘG(Tiyis}w8wNu72h[C!8~JVH$fG?z,Dld)%CF"&~Wҝn-bys?Kw]HT7[	|soh7vTU:{ˠ
x<
2Nߘsg pz<|<\ 4Ǭk6hʝ v6aXTPWԩdGIj!xLeA-=#M|2]jš{azQËo	@cA]EJ89*0$H>yP (u}4NZ	`*2GH,ߪvL=S<x{)ni^mV?*GxR ̽5͜9$-T;ܺ><zs&X -{,ۉLuI3oOfxd&(~#{F&jgQ+*ax=bb{h(ȣq֦
,;ECno7uY
QI1pɦ|l3lP_PX-@FAJOe6:GӔ^u:2E?Tu9ܙ	#8߲a'}<tA(L57xO? ێN=/vzx/"zഅ	/o$I,Ap1f혠8DM:i{ D^'GʀM!OO,	l+;{r\H=L|ןmv^y⇾UvCh!g'n([On7Oe%;)Z1oTe'$P̡N|01!R-H-dn9?#tEs/6Ab?F,oC$1n'Zy^Q@;؄zQDDSTTT]m0S;Qv\XL+Lx@5~Yp |dxasgX[PDq_qn=swH2=d05R6> oo R}Œ<k_^Iy; {V^0p&vnr*5yٴc]E3O
xpȀfߙ8~*Ves)p@8;}vN.*ˡY[yf9L%]aOdǤ;
̵il=pq+Ҵ7w_n@#qZ{h	3IS%ze7Α<kxT
|4 kڄ8}3
>{jηɶ}n.)ߍp-7I%8+ԹOAd
`=:065ī	i?_
>&g`P(Z$04Mul:F.MN"wݾq8oҬѓMPpfsb?]؁	?v8xGg8nI}Uj8f/yq@s=*L@ݜן↜f=WDI5Sϲr0l9+Vc8*[%	oZs?K?#TDl>\vTO=}h'<u`1Ъ=?12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  This package was debianized by Jeff Bailey <jbailey@ubuntu.com> on
Thu, 27 Jan 2005 15:23:52 -0500.

The current Debian maintainer are maximilian attems <maks@debian.org>
and Michael Prokop <mika@debian.org>.

The current ubuntu release can be found at:
http://archive.ubuntu.com/ubuntu/pool/main/i/initramfs-tools/

The Debian tree is maintained with "git" at:
https://anonscm.debian.org/git/kernel/initramfs-tools.git
https://anonscm.debian.org/cgit/kernel/initramfs-tools.git

Authors: maximilian attems <maks@debian.org>,
	 Jeff Bailey <jbailey@ubuntu.com>,
	 David Härdeman <david@hardeman.nu>,
	 Martin Michlmayr <tbm@cyrius.com>,
	 Michael Prokop <mika@debian.org>,
	 Scott James Remnant <scott@ubuntu.com>

Copyright: 2005 - 2011 maximilian attems
	   2005 Jeff Bailey
	   2005 - 2007 David Härdeman
	   2008 - 2010 Martin Michlmayr
	   2007 - 2011 Michael Prokop
	   2005 - 2009 Scott James Remnant

License:

GPL v2 or any later version

On Debian systems, the complete text of the GNU General Public License version
2 can be found in `/usr/share/common-licenses/GPL-2'.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     # upstart will never be fixed, so it is correct to not specify a version
initramfs-tools: breaks-without-version upstart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            mQo0)N<uR1lZ=TU6LP	ir^;~c<w.<%H~48x%y6@p0:'tFT]֥H#m*,
ՈO0
^C+,KrXucZAUrm2z	8l
^+eBpVҊ;I.ӏp~q<MtGd/t -,hv[QJuۼK9U7h]Xps&R5;X#g	:5vHyn
BPzASkkek^EwP8!VX4hLHuAP	|B\Y/ʺ.%8w`mK.AѶxIg&ESv+@k(%\|g |B[YV
ac<bkoxykaF:
=}#;YRbJqŸ6[h34f@CݫBTh<M~
(	C&Ɍ=&G1\|7wnvx%_1,D                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Un6}WlyhӠX,uİ4XK@Rv˿wo`[&3g9C%;x~-ƃd1w˷˫Vʺpˁ7r4956zetOd~h\z\ga9jPḡjxtq:Erd<Iynᯰ=E2#0a}s򜆘\Y̼;I-}[O:QdOt1y|_2ԑi>QLVDL<K|&f^6+Ն(
0KǗjsLQ,~+u
%=3U%Fu9N!<]5
5%bсW5fh5V:FK؅SJoGuSnqB]EY[
&0*Z9SQrܨE)	0(u}dT,2,Lb>$ll-MmaK`<ϲn*Mxed8d=ᵭ`˲3vִR&pT:,BUzm8-@zz!gYAg	eQ(M[	MOIr^VٲM6J9YIҜß+{'1ix{[g2CqǡM<ť0*)à`JXuvM
V4Y(j+1x(FYE3ǃAUCĔ P> CX

n˔;ldJC{y}YݼOB<[|{<G:9HR!>_d˹T.J.뫈vp!8O1IE<5zZ=ox*{R5|VI7ZSZK]}苟(-
tMVZ^4.ִD'qbc}?[3Mqoz}[b"ǀ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               /.
/etc
/etc/initramfs-tools
/etc/initramfs-tools/conf.d
/etc/initramfs-tools/update-initramfs.conf
/etc/kernel
/etc/kernel/postinst.d
/etc/kernel/postinst.d/initramfs-tools
/etc/kernel/postrm.d
/etc/kernel/postrm.d/initramfs-tools
/usr
/usr/sbin
/usr/sbin/update-initramfs
/usr/share
/usr/share/bash-completion
/usr/share/bash-completion/completions
/usr/share/bash-completion/completions/update-initramfs
/usr/share/bug
/usr/share/bug/initramfs-tools
/usr/share/bug/initramfs-tools/script
/usr/share/doc
/usr/share/doc/initramfs-tools
/usr/share/doc/initramfs-tools/NEWS.Debian.gz
/usr/share/doc/initramfs-tools/TODO
/usr/share/doc/initramfs-tools/changelog.gz
/usr/share/doc/initramfs-tools/copyright
/usr/share/lintian
/usr/share/lintian/overrides
/usr/share/lintian/overrides/initramfs-tools
/usr/share/man
/usr/share/man/man5
/usr/share/man/man5/update-initramfs.conf.5.gz
/usr/share/man/man8
/usr/share/man/man8/update-initramfs.8.gz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   initramfs-tools
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                uL  .   tL  ..  zL  cli.js  {L  constants.js.map|L  
isLoopback.js   }L  xoa-updater.js.map  ~L  xoa-updater.js  L  constants.jsL  
cli.js.map  L  
server.js.map   L  _pMemoize.jsL  	server.js   L  	config.js   L  isLoopback.js.map   L  
config.js.map   L _pMemoize.js.map                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9Package: initramfs-tools
Status: install ok unpacked
Priority: optional
Section: utils
Installed-Size: 58
Maintainer: Debian kernel team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Version: 0.142+deb12u3
Provides: linux-initramfs-tool
Depends: initramfs-tools-core (= 0.142+deb12u3), linux-base
Suggests: bash-completion
Breaks: e2fsprogs (<< 1.42.13), initscripts (<< 2.88dsf-59.3~), upstart
Conflicts: linux-initramfs-tool, usplash (<< 0.5.50)
Conffiles:
 /etc/initramfs-tools/update-initramfs.conf newconffile
 /etc/kernel/postinst.d/initramfs-tools newconffile
 /etc/kernel/postrm.d/initramfs-tools newconffile
Description: generic modular initramfs generator (automation)
 This package builds a bootable initramfs for Linux kernel packages.  The
 initramfs is loaded along with the kernel and is responsible for
 mounting the root filesystem and starting the main init system.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Package: linux-base
Status: install ok unpacked
Priority: optional
Section: kernel
Installed-Size: 77
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Version: 4.9
Replaces: kernel-common (<= 13.018+nmu1)
Depends: debconf (>= 0.5) | debconf-2.0
Breaks: kernel-common (<= 13.018+nmu1), linux-perf (<< 5.16.2-1~exp1)
Description: Linux image base package
 This package contains files and support scripts for all Linux
 images.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Package: linux-base
Status: install ok half-configured
Priority: optional
Section: kernel
Installed-Size: 77
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Version: 4.9
Replaces: kernel-common (<= 13.018+nmu1)
Depends: debconf (>= 0.5) | debconf-2.0
Breaks: kernel-common (<= 13.018+nmu1), linux-perf (<< 5.16.2-1~exp1)
Description: Linux image base package
 This package contains files and support scripts for all Linux
 images.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Package: linux-base
Status: install ok installed
Priority: optional
Section: kernel
Installed-Size: 77
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Version: 4.9
Replaces: kernel-common (<= 13.018+nmu1)
Depends: debconf (>= 0.5) | debconf-2.0
Breaks: kernel-common (<= 13.018+nmu1), linux-perf (<< 5.16.2-1~exp1)
Description: Linux image base package
 This package contains files and support scripts for all Linux
 images.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Package: libklibc
Status: install ok unpacked
Priority: optional
Section: libs
Installed-Size: 97
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: klibc
Version: 2.0.12-1
Description: minimal libc subset for use with initramfs
 klibc is intended to be a minimalistic libc subset for use with
 initramfs.  It is deliberately written for small size, minimal
 entanglement, and portability, not speed.  It is definitely a work in
 progress, and a lot of things are still missing.
Homepage: https://git.kernel.org/cgit/libs/klibc/klibc.git
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Package: libklibc
Status: install ok half-configured
Priority: optional
Section: libs
Installed-Size: 97
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: klibc
Version: 2.0.12-1
Description: minimal libc subset for use with initramfs
 klibc is intended to be a minimalistic libc subset for use with
 initramfs.  It is deliberately written for small size, minimal
 entanglement, and portability, not speed.  It is definitely a work in
 progress, and a lot of things are still missing.
Homepage: https://git.kernel.org/cgit/libs/klibc/klibc.git
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Package: libklibc
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 97
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: amd64
Multi-Arch: same
Source: klibc
Version: 2.0.12-1
Description: minimal libc subset for use with initramfs
 klibc is intended to be a minimalistic libc subset for use with
 initramfs.  It is deliberately written for small size, minimal
 entanglement, and portability, not speed.  It is definitely a work in
 progress, and a lot of things are still missing.
Homepage: https://git.kernel.org/cgit/libs/klibc/klibc.git
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Package: klibc-utils
Status: install ok unpacked
Priority: optional
Section: libs
Installed-Size: 569
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: amd64
Multi-Arch: foreign
Source: klibc
Version: 2.0.12-1
Depends: libklibc (= 2.0.12-1)
Description: small utilities built with klibc for early boot
 This package contains a collection of programs that are linked
 against klibc. These duplicate some of the functionality of a
 regular Linux toolset, but are typically much smaller than their
 full-function counterparts.  They are intended for inclusion in
 initramfs images and embedded systems.
Homepage: https://git.kernel.org/cgit/libs/klibc/klibc.git
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Package: klibc-utils
Status: install ok half-configured
Priority: optional
Section: libs
Installed-Size: 569
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: amd64
Multi-Arch: foreign
Source: klibc
Version: 2.0.12-1
Depends: libklibc (= 2.0.12-1)
Description: small utilities built with klibc for early boot
 This package contains a collection of programs that are linked
 against klibc. These duplicate some of the functionality of a
 regular Linux toolset, but are typically much smaller than their
 full-function counterparts.  They are intended for inclusion in
 initramfs images and embedded systems.
Homepage: https://git.kernel.org/cgit/libs/klibc/klibc.git
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Package: klibc-utils
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 569
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Architecture: amd64
Multi-Arch: foreign
Source: klibc
Version: 2.0.12-1
Depends: libklibc (= 2.0.12-1)
Description: small utilities built with klibc for early boot
 This package contains a collection of programs that are linked
 against klibc. These duplicate some of the functionality of a
 regular Linux toolset, but are typically much smaller than their
 full-function counterparts.  They are intended for inclusion in
 initramfs images and embedded systems.
Homepage: https://git.kernel.org/cgit/libs/klibc/klibc.git
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Package: initramfs-tools-core
Status: install ok unpacked
Priority: optional
Section: utils
Installed-Size: 161
Maintainer: Debian kernel team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Source: initramfs-tools
Version: 0.142+deb12u3
Replaces: initramfs-tools (<< 0.121~)
Depends: klibc-utils (>= 2.0.4-8~), cpio (>= 2.12), kmod, udev, coreutils (>= 8.24), logsave | e2fsprogs (<< 1.45.3-1~)
Recommends: busybox (>= 1:1.22.0-17~) | busybox-static (>= 1:1.22.0-17~), zstd
Suggests: bash-completion
Breaks: busybox (<< 1:1.22.0-17~), busybox-static (<< 1:1.22.0-17~), initramfs-tools (<< 0.121~)
Conffiles:
 /etc/initramfs-tools/initramfs.conf newconffile
Description: generic modular initramfs generator (core tools)
 This package contains the mkinitramfs program that can be used to
 create a bootable initramfs for a Linux kernel.  The initramfs should
 be loaded along with the kernel and is then responsible for mounting
 the root filesystem and starting the main init system.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Package: initramfs-tools-core
Status: install ok unpacked
Priority: optional
Section: utils
Installed-Size: 161
Maintainer: Debian kernel team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Source: initramfs-tools
Version: 0.142+deb12u3
Replaces: initramfs-tools (<< 0.121~)
Depends: klibc-utils (>= 2.0.4-8~), cpio (>= 2.12), kmod, udev, coreutils (>= 8.24), logsave | e2fsprogs (<< 1.45.3-1~)
Recommends: busybox (>= 1:1.22.0-17~) | busybox-static (>= 1:1.22.0-17~), zstd
Suggests: bash-completion
Breaks: busybox (<< 1:1.22.0-17~), busybox-static (<< 1:1.22.0-17~), initramfs-tools (<< 0.121~)
Conffiles:
 /etc/initramfs-tools/initramfs.conf 7cd32817dcb81991da2e2a928a32fdb0
Description: generic modular initramfs generator (core tools)
 This package contains the mkinitramfs program that can be used to
 create a bootable initramfs for a Linux kernel.  The initramfs should
 be loaded along with the kernel and is then responsible for mounting
 the root filesystem and starting the main init system.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Package: initramfs-tools-core
Status: install ok half-configured
Priority: optional
Section: utils
Installed-Size: 161
Maintainer: Debian kernel team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Source: initramfs-tools
Version: 0.142+deb12u3
Replaces: initramfs-tools (<< 0.121~)
Depends: klibc-utils (>= 2.0.4-8~), cpio (>= 2.12), kmod, udev, coreutils (>= 8.24), logsave | e2fsprogs (<< 1.45.3-1~)
Recommends: busybox (>= 1:1.22.0-17~) | busybox-static (>= 1:1.22.0-17~), zstd
Suggests: bash-completion
Breaks: busybox (<< 1:1.22.0-17~), busybox-static (<< 1:1.22.0-17~), initramfs-tools (<< 0.121~)
Conffiles:
 /etc/initramfs-tools/initramfs.conf 7cd32817dcb81991da2e2a928a32fdb0
Description: generic modular initramfs generator (core tools)
 This package contains the mkinitramfs program that can be used to
 create a bootable initramfs for a Linux kernel.  The initramfs should
 be loaded along with the kernel and is then responsible for mounting
 the root filesystem and starting the main init system.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     Package: initramfs-tools-core
Status: install ok installed
Priority: optional
Section: utils
Installed-Size: 161
Maintainer: Debian kernel team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Source: initramfs-tools
Version: 0.142+deb12u3
Replaces: initramfs-tools (<< 0.121~)
Depends: klibc-utils (>= 2.0.4-8~), cpio (>= 2.12), kmod, udev, coreutils (>= 8.24), logsave | e2fsprogs (<< 1.45.3-1~)
Recommends: busybox (>= 1:1.22.0-17~) | busybox-static (>= 1:1.22.0-17~), zstd
Suggests: bash-completion
Breaks: busybox (<< 1:1.22.0-17~), busybox-static (<< 1:1.22.0-17~), initramfs-tools (<< 0.121~)
Conffiles:
 /etc/initramfs-tools/initramfs.conf 7cd32817dcb81991da2e2a928a32fdb0
Description: generic modular initramfs generator (core tools)
 This package contains the mkinitramfs program that can be used to
 create a bootable initramfs for a Linux kernel.  The initramfs should
 be loaded along with the kernel and is then responsible for mounting
 the root filesystem and starting the main init system.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           Package: initramfs-tools
Status: install ok unpacked
Priority: optional
Section: utils
Installed-Size: 58
Maintainer: Debian kernel team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Version: 0.142+deb12u3
Provides: linux-initramfs-tool
Depends: initramfs-tools-core (= 0.142+deb12u3), linux-base
Suggests: bash-completion
Breaks: e2fsprogs (<< 1.42.13), initscripts (<< 2.88dsf-59.3~), upstart
Conflicts: linux-initramfs-tool, usplash (<< 0.5.50)
Conffiles:
 /etc/initramfs-tools/update-initramfs.conf newconffile
 /etc/kernel/postinst.d/initramfs-tools newconffile
 /etc/kernel/postrm.d/initramfs-tools newconffile
Description: generic modular initramfs generator (automation)
 This package builds a bootable initramfs for Linux kernel packages.  The
 initramfs is loaded along with the kernel and is responsible for
 mounting the root filesystem and starting the main init system.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Package: initramfs-tools
Status: install ok unpacked
Priority: optional
Section: utils
Installed-Size: 58
Maintainer: Debian kernel team <debian-kernel@lists.debian.org>
Architecture: all
Multi-Arch: foreign
Version: 0.142+deb12u3
Provides: linux-initramfs-tool
Depends: initramfs-tools-core (= 0.142+deb12u3), linux-base
Suggests: bash-completion
Breaks: e2fsprogs (<< 1.42.13), initscripts (<< 2.88dsf-59.3~), upstart
Conflicts: linux-initramfs-tool, usplash (<< 0.5.50)
Conffiles:
 /etc/initramfs-tools/update-initramfs.conf e2026d4603e7161efaccca519aeb1297
 /etc/kernel/postinst.d/initramfs-tools newconffile
 /etc/kernel/postrm.d/initramfs-tools newconffile
Description: generic modular initramfs generator (automation)
 This package builds a bootable initramfs for Linux kernel packages.  The
 initramfs is loaded along with the kernel and is responsible for
 mounting the root filesystem and starting the main init system.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              L  .   wL  ..  L  package.jsonL  index.jsL  
index.d.ts  L  LICENSE L 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         tL  .   wL  ..  L  package.jsonL  index.jsL  	readme.md   L  
index.d.ts  L license                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ԘL  .   wL  ..  L  package.jsonL  dist M  LICENSE M 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 {ƌL  .   wL  ..  L quickjs-emscripten                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        `뗍L  .   wL  ..  M log                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       KD[L  .   wL  ..  M  package.jsonM  index.jsM  LICENSE M  CHANGELOG.mdM 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ފ}L  .   wL  ..  M  package.jsonM  LICENSE 
M  dangerous.jsM  safer.jsM  	Readme.md   M  tests.jsM pPorting-Buffer.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             b8  ^^^^^^,  $       ,  4    ZZ U   	|@t     p p0dQ PQ  

0  ?#"  
R -, ,    ,  t,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              	 	  +@   	 	 / ///K/"OAIJbJ9"@2eHuR ``? &	 aADriAۉ)'rjBܻ*'A,2`@#s"#6P>>D	 =>I =>E	 = V& <<ۂ`<(+Lr`899 
!DC	 P +.R("3I	 2D	 2E	 1F	 1r`'/A	 /C	 ./dP(D"e[$,CaVWh12l7)(,sU5U',V6dBTtA  	    @     4     $ O  (  D"      \  $-  5 H6    ,! "  #      $  (   <  D @ 6       R2\e$	 "b#X%2g'	Gr"pK%R C`24	 	Gr$bgGr& 	 cQCQ 	 2  - @ $-  @ DL4L1PL2" 	 	 $-   = //"OCW"sbr!S#3`)@@	@)p@se4uBfwP`k 
`h %H'vb$##!P2a@y! #!U(%E
E
	E@i%i
(@I) (&Oih 	    @   $-  ;    ; /////k8/;$"O8 W{br&8 #hd(L4nwt|7f9$"L7d4FVEU66
	A	Aw56Ufa1X(֏&Omlkjih 	    $-  "  CQCqP( CeAA2dbgN)@	$VC`=p=@8&V.("Gc s0gs0f|`lcaC#y#p3`>p8p f#` p gp9& c|g<`@{ Ky p0#c>s8s0`y  6)V(WSPj#*Vz #PWj #+P,V
'{#Wj'{#8#)8#r%!g{&br !`	&C`pa"@
("r!g{ "tDL2 b"P
)@	@0+A4  @  @ 5 5     $-  H-  4  //Ch/\j/'"O#k'Y&ӓaq51
 	@	@w %PH1 E	 Vaveqnyc9,90)yPg)@y$$@)e u!P`xfai"A" )h#3gGJ) GJ{ :Jɫ  )&Okjih 	 	 -    $-  //"OCYPa q` 0Ch%>TtNeu `%up%`pbr-c1 pQdqtMeQ בVx&c`)@@	@d/tD<4BeuR$dtDL4$t<4Fe	 AddH	 U)E@%"&Oih 	  	 `.     $-  4  X       0= 8Q!7P g(wa'Ca! bf,glaAb{!r"rC"IZ+Ed 	  	  .    /Ch/x/H/8/8//"OTcCjRtz 3Ae%%ѣg]f wa'AdГd@U
)EJ%$@d ۏi&Olkjih 	   H-  X       0=   ScSas$ql3r `fv666>`ca21b6	 CbrB$,2$r<2"g!V`7
`p b("C`2p@fC`/p@~8#C`Cf2vF|6bb("gwp` '2&C`2p@>("q` !
)tDSgwL1dup`K 
`f 'F`%tB! 	 $-  / /////S/#`R|p"OcY;)2!X)HMNbgj(G'LLKv䆕KL `F } M ``	 @hxsdtjsUlA`c
f\6v``0s 	 sbrcscsssbr!h`
lVclVT`4br!h`p!jsl`pZ
3 fdtAb/-h8c`(Ȅ c`(wqg}d\4t@`USl|b$j dgLeE{%Y"#`a;( @      $-  5 D @   "  $3  IS`0?09z0<h&2f3/gwq`)ZT`pV4tMhJJ,:5:detu/C1QedA
ugw|fq`vdza&A*
 (UX%+(@;("IS8(e Иt@eAt-r&	 *EQ`Ht aW`@E	 :glc|,s22#hH8$xmԠ8 (  <	 8!  -  4  0!   0= $-  `.  d-    h-  brn~P)@p@v!`U !d!eC`]f9&a"gdwtfpb@`,eb,6v``5!uu#`:p@X%5r,b $2Wr `qd	@@9$$A! `9$ K !a'_P'e["!.^.
dI 
c1-NMThWM@dLM*e5 GЃd@qUX%UBFTUcs1dRtMawr#s#61giRw}`# >
jQ!8dA	 &mP58 	)@@	@/p@0dtB /dA ~`M0eU^Ww~e))M	 )"&mdUP4Wfi'x'<QW 'rN	 M	  dVbeX%uQb+.%P B cX3Me!{`zhܮ`    @8    p-  4         @-  ,!      0= [\j 檕wL XXYhH88`~~U֒gbe(GR['S(7cE7
3a	LA	L1	L81<M@dr(~`ڏhIIN	 B۝Z*ht
-dUzDS`pC<!,  @`Sh9  $t$t@`H $tq$tA`HR$tHPl88K J1ڹ 1ݛ 1թ 1 Y @k 0 $t!$t1$e-Ne,uN+ +@dtA`x(d(ˁh !qL!
	 W$h' ~^d&Onmlkjih 	   ( D = "  D $-  -  @ Mb    `.  { {      , 8!  { { D"  { { P      / /// ///["OGPZbtScC<33a$qL1m^=`>c`L0a13]n=0cs32 r! GuޏvGԆCf|vFL:F'XRiW8l7,w<r'?q"-;a|qP60Ԡ :;;<BjAYbh`TU{g f788bcm!-2c5<3,5ba(B4"al(A!(11
	A	A	A21$##ڑ ق*)"A(R b(Pr$t%W$"$r%fl66cbDrHv"abdWtQ@1
bB,2$r2!S33Vc`퍃bB   	 -  = $-  6 6 0=  7 ; = ; 86 `Y  5 D @ Mb6 `y  = Sc3<4BgV7PLl32e 5 q!gwqfm`i 'q`
`'Sgwu% 'R$R#QQcC!R<33#2Fe*x`yfnP~]+ P &Onmlkjih 	   	    -  (= 	`:R 0
+A  	  	   3  "  H3  /Ch/c{s{#`"O\p$y\\4@gpp#s`#s\	@a0`gޔ  #y$$64̠	 L4M#	 	 b ~    
   JVffrxsiIcS`L3>`b&s`R PCf\6`agb	B"0w	   (LM RixQSu2)pdLf	FFb8{	 ,5PadtuC'fCo7Bk@A@(biRbb" >p(9S[96d`(t9I47Rb &6H	 H	  p(3\8P	))
T0҄UBVT.B&UQt1	 ,C	 P!2p@( @('	  %(C	 	 #@e	 !	  P(ׂR!I	 	 H	 &Oih 	   	  |    | |  | 8!  -  $-  5 5 { ,3  D"  { 4  =   $     t  D   3    <  4,  X,  /Sa/Sh/Ci/"O RS4eq!u!%u!%ua%01 QPdۃeKd(t$ t$t3e$1/KTWqb-`'&Okjih 	 @	 8!  / // / d
"O1d1!t1$t1$t1$GvS[[#jz& %h#cegEw\5$u5<1F%N{N#dj@tzk({h<xcdy{Psz |ru=<g=m5,5l SaGq%qf8q!q!,8q q!f;R443	 3B{RP;ڏ+ /ѳeYXj.)J.)'`$)@!t*$#cC<33i\9Wl3Kr#ra@qT""B(&!Ԭ8PbrQ"ICV cTIt 8SI3T&Okjih 	 @ | 4     $-      @-  x-    ! !  = (= D"  @| /Sb/Sh/Ci"OSarPg!fwTa'41!QP1URdeJ b1(r1"r1"r1" 
egcy T/J	 TAa`$&Ojih 	 	 8!    B`AQ0S4R"$4 2  ////V"Oi`$9	 aqb-`60TAfemg]a7dx	 IJۧR!`⍓`GHH	  ߏhٯ`EB`r!	 SVB@6]Z?@G	 +Sf=5=ؕS1`3;@	  eد	 88bg+y%R&hqb(HT)	+("(J	 *&FeT[S3A`4	 A` CcQ$s#s#sq#BBXT#4`!"+	 B @eB+RH	 {R&Okjih 	  @	  ! $-  ,!   @-  4! @|   x-  0= .  8-   <!                 o`+@	 	 	        	 	 	 	 b@"r "!-  	"O4Lb
 c8#7	 0WCe,5F^dp"&O 	  -    -   fH6|gB6ww ` b#x'+E~d 	 	 -  -    v/$f/CaV////////"O0Ƞ/j%zk@	 a`j0z`z br,c	3
 	 #cC<2,2,6ni`	eu\fF6bX XpX݂'B-p0ucUc'0dX5X70[ %	 U%N	 Qg
	 x"sId>CfgdDslrm|/.Mb@".C-??@Nd8
	HHL	 eX:SdRf) 3t84 !B/b'Md	LN	L,3C d	 `aq/ dvb/Bh%E	 	  ma P!idH$I֜l
&yy0 N|lgG+dI	 dH$adH$3C`H &Onmlkjih D#  -  -  -  -         -        "!d;$B cde ` hY @;    3  /Ca/q/Ch"OSi`f`fAR.FaRQUTSxgh|`gjp:F(A1'B{!BV,2By"+!RY&"Ca1dDPL4k$B%!Nr`rseLM
gL' CjKBbhf(BIk"a`(AE!(1E1
	A	A	Ar1A B0"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"*"**chB*"*"*"*"*"*"*"*"**SjRbb`(B."a`(A)!(1E1
	A	A	Ar1& "'"*A&т B !Rjbb(J+*Rdb`(D$44
	A	A	Ar1󋉯	 Rj :F"#h"`a 1Ddresg12    X   Y `X $-  0X D @ MbX hb X rhb`(H(rbba(B"2B2`Rh 8B C
 
#"d		I("pP)&Ojih 	 `X hY @;  3  R(""#8"  i"!2"	pB!r p" @Tf4+%R# 	  	  3     X    @ ,X     B2  -    X "O4Ce
@		c?4@ucBb)#2$&O 	    7 7 
"aA
B 
2fH&rbB

`2dbg"a%Ar  7 7 <7    @ 7 $7 (7 ,7 "aAR`

#K!QV	aRWrSUS$0tBbB 	 	  7  7    7 /Ch/C/////"OAdMd4`pb-cV3	 M?Fg}k;.n 
i	II	K	IKy*nCl|dMeANeMJ:adqk`I+eM
d:һ e*Bdc?=ef5l|gei|71y|9uKdhe592	 SiY+	E	E	IK%y);@eMIm 9ѣ`0deA/d4tгe@bz@,dce#; )SdFe`㋃l|@	 ?5Ju
Ba!$&Onmlkjih 	  	 L         7 7 Ad+AMdL  	%\#C`x.$,"* (8B6@4>2<NXLVJTHRdpbn`l^j@@ @@@@  @@@@ @@@@@  @@@@ (@@@@(@  @@@@(@ @@@@(@@  @ 	 h&C`H5l0g1uuSa)!Ac0a+A3`!  !  !  "  Cbr&0\  	 c)#8#uuC\ uCbr^&0 @0urc)#8#uC\ ^uCbrc(CC^fFk#&06 @0΍uȯru\ uCbr]&0 @0u\  c)#8#uC\ u^uCbrcC^f)FFk#&06 @0ur	 h&l4g0C` 6@T$\eX`%Y`%c`	@@@V$V$	&h&FT$ C`	 R#gGGG<7s`p  rUI"S`,uY s`	 .  .  b9""!`{ !2$ 	 	  @     v  /Lh/si/\jж/"O@lk aeq!dq t!If ` "&Okjih 	 "  8!   /Nd"O>Q`0D`p<#eH$df
6\6 tp&9$
Af F&Oh 	   	 2  $-  "  2  /8"OP 6B	 6 66Ղ#D55т%u5b%'4҂ "c39$B" R`1%Rg0y&b%R`/% B!"##F	 +7'*+r% H$$$$$*$$(2$p"$b$vb$R$ r$$$$$$$2$"$$$$$$$$$ H	 B F	 cQ  $-  "  X     @ !  0=  H!  5 @   @ 0X X D"        xV4  ///////"Okl,B	 `0@Ȇ c;$LeP"`gv`i|hjJ*`
n	N~n}~~ rm@0ym=`yN	 yAdx ` "`@Q`uٚS8#L rJPfl`@ %ǝp$WPÚeEEE55Pajbr2p`e+MUwSzfy=3T`Ќ4@8Wx'ُ`hSfvZq&v&v&WI	 WI%`? .``>Rjh`OB	 ``MC	 `fJD	 fF`Dp` '`:ٓP	`B7%Q!`2ڣP:/ (CV9&ckKv6pieE`pm-'@/3l,!+0` #"	 '#bI" (b[+4#G/`"e\m-)B Ҁ` (DB&K	 4            | "  p   .  $-  8!  4  8-  0! ! P)  +  +   ( "      #  	\,ڠ` *&Onmlkjih 	 	 .   /@/5/Si/Ck//"O7@	 &9h  1`Ѓe@peP,гef5@df:h8b-v8 a:	@#&Omlkjih 	 (<  d,  ,        8!  /@/5/Sj/Ck"O @	 iy ))ӈ62dV6B/d4e@x8f&Okjih 	 	 <  d,  ,   8!  c9""!`!eY$B!``@

	  
w(B#|t	As# _	 H!   z3  L3  .   `.  /"OhxAddLb#``Gcs0e
\hv8@fl6m#	 	  B B z  L`rNdD2U)Q/#`  q/ki%Q/d#`NaAf c>dDeu`Qg_}fRga)!Qk!	 #`NbBcs1hdV4LgTp&	 #`NgGfvaadCbBr62y,,b#	 	 ,XGh BwTCfv&v`bv`c,e<`@Y%L`hV0  _T	 0P	 7[@h6X@h6hxd1@
a qeu`!
q@%dp(
-`!#`/NhH,(#	 #`%NdD"br!c8#P` %	 #`NhHb.cC_PH	 @ CP	CP@h@h鯌e&Oh 	 l(  .     z      8!  .  `.  .  '      /
"OTH$UX%


&Oh+B	 	A	 P&Oh 	 	 .  ,  ,  <  l(  /
"OTH$UX%


&Oh+B	 	@	 Q&Oh 	 	 .  ,  ,  <  '  BUG: %s()@%d "Unknown command %x
"  handle_cmd  BUG: %s()@%d "len > AR9170_USB_EP_CTRL_MAX" BUG: %s()@%d "!fw.usb.ep0_txrx_buffer || !fw.usb.ep0_txrx_len"  usb_ep0rx_data  usb_ep0tx_data  usb_ep0rx   usb_ep0tx                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       	.  	    @  @  @ @ 	.  	        @ @ OTAR       }   @  TXSQ -  MOTD8   Community AR9170 Linux  1.9.6               DBG      (-          -  CHK  p]|D LAST                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       - 3Com Megahertz 3CCFEM556 LAN + 56k Modem   V!   M    k    CIS!  g	Ud0 CIS! ' w	U#0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          , 3Com Megahertz 3CXEM556 LAN + 56k Modem   5 !   L    i    CIS!  c	Ud0 CIS! ' 	c	U#0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ADVANTECH COMpad-32/85 1.0  ! a0`0`@`P``                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ADVANTECH COMpad-32/85B-4   ! `@0`@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        )Multifunction Card   NSC MF LAN/Modem  u  !   I    j    CIS!  wyUe0(@  CIS! @w	U#0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         SS8  !9Allied Telesis,K.K Ethernet LAN Card CentreCOM LA-PCM   ` ` `@``````` ` `@``````                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     "MultiTech PCMCIA 56K DataFax      ! 'gAUUU`(```                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         PCMCIA Ethernet   !  	Ue0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LINKSYS PCMLM28    C!  /Ua 0a a@a`a a a@a`a a a@a`                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PMX    PE-200 ETHERNET R01 ! UQ 0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                #KTI PE520 PLUS PCMCIA Ethernet   a ! 	Ue0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PCMCIA RS-COM 2P   ! a0aPXa`h                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A  ?! * Sierra Wireless AirCard 555 A555 Rev 1  s`0?```#                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A  ! 7 Sierra Wireless AC710/AC750 GPRS Network Adapter R1  sxMU]%`0```#                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A  ! / Sierra Wireless AC850 3G Network Adapter R1  sxMU]%`H0`G`H`G#                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               A $TAMARACK Ethernet A 004743118001 !  ?UM]F&Q 0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @                                                                                                                                                                                             `   Oa  ~.  G؄Y     
 ~     
 ~N+D   DE   
 ~P+
 ~F+DE  
 ~  E
 ~  ~
 ~Xk
 ~  ~
 ~X
 ~  ~
 ~X
 ~                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ISCUOEMB                  _      	| n
 _      	| n
 _      	| n
 _      	| n
       _      	| n
 _      	| n
 _      	| n
 _      	| n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     # _      C        0                                                  a        u^23014       t t       tt     0 tt    @ t    P ttt    ` t u0{     p uPүҬt      ty.z {      t     t     T`      9@n  @     

     
D 
     DT      T
      3ӕ2޻      2Õ3
4    0 

      @  t    P 빁
    `  

    p  

     Vtt      ot     t$)t     @W`U+D%t      5     
t      t	     
t ޺      
t	D      ЅЄЃЂІ2       Ô
P#$t    0 4 ͣ    @ ""AdT    P T{Kd    `     p tЅ     ЄЃЂІ2     t     }u     2儵3	     2 1     ЅЄЃЂІ2      K} 23     010        y     t y      t&    0 "  23"3u    @ 3 t 4"3    P 2Õ4@u4     ` 0    p  40     ЄЃЂІ2u0     債1"0"      8 601"     u~ y     0111     	@`"     ~ tt     "0"^      <d      @      	   2	     0   @     @ @  LPr      P "A C M E   u s     ` b   w i d g e t     p s .A C M E   U      S B   s e r i a      l   w i d g e t      4 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         #       0          C                                                        u^23014       t t       tt    0 tt t@    @ t t    P tt    ` t    p ttt      ttSu0     {DuPүҬt      ty.z {      t     t          T` ]@n      D@&..      .h      
D&      TT&    0 . 3ӕ2    @ 2Õ3.    P 4&..      `  t    p &빁.      .&     . .     &.Vt     tZ& o     ttl&     )tÛ@W`U+%     t 5     &.      t t&     	&
t       &.t	    0 D ЅЄЃ    @ І2 Ô
P#$    P Ft4 ͣ    ` ""AdT    p TK&     d     tt      t Ѕ     ЄЃЂІ2     t     t     }u2     3	2       mt ЅЄ     ЃЂІ2       K} 230    0 10      @ yt    P  y    ` t&"      p 23"3u3      t 4"3ӕ2Õ     4@u4      0      p0ЅЄ     ЂІ2u0     債1"0"t      > <01     "u~       y0111     	@t      `"~     0 tt"    @ 0"^<d    P      ` @	      p  2	        @ @         "A C M      E   u s b   w i      d g e t s .A C      M E   U S B   s      e r i a l   w i      d g e t 4 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              W                              ЅЄЃЂІ2 ttu uht~ x`T`t        xt t"ttttt t tT`ttttttttt ttt ېzuu ېuz |ЅЄЃЂItxt"u'u""uuu uu Ҍ"T|Dz0҂Ҁ#zҀ| z}Ҁ0M{ z}Ҁ0Mҁ"uu ux{"tttttt tt t ېtt ېtt^t_t\tuu"[`m]\`Zp		p	" xyt##		#### І2 T pbt tTp t ]t ЅЄЃЂІ2ttt "ttt " x,#sGZ`f0	gb7Zx`Dx75xz	# 7t _t ЅЄЃЂІ2"TD0Lz0҂Ҁ#z0҂Ҁ#҅"bt t" xH#sDB@%8xyx	t t" 7_t ЅЄЃЂІ2         ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ЅЄЃЂІ2t tttttttt htp`
T`t"tt	$t%t tttttttt t  t?(t0t8tup "tt t ^t _t$\t `t uu"  #s up t tT`tؐttt ttT`uu uuuz {ؐ|t	tؐttt Dupt _t  ЅЄЃЂІ2         ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Q                                                                                                                                                                                                                                                                       [                ЅЄЃЂІ2Аt _tЅЄЃЂІ2 r`3u pqypqsspur t x##$ ЅЄЃЂІ2 t̐t̐ht̐qt uu  x`T`txv ur xv uu`turt" 0"0噐 "TD@҅"TD`҅ڈ"tttttt tt t tt ttpt̐^t_t\t҈uu"҅" x`yT p1 ,xt҇ t 𣅂pqxsurTp t  ]t ЅЄЃЂІ2t̐t̐t "t̐t̐t "҅   t҅t ttxttt" x#s7U[j
rՀwǀrur q?aࣀtxxxsqurX:2!?t _t ЅЄЃЂІ2y			"y`			"Ty#DTyJTy#T҆"t ̐t" x#s;971/҇ yt ̐t" _t ЅЄЃЂІ2        xt t"t̅tttt ̐t ̐tT`t̐tttttttt t̐t̐t zuu uz |ЅЄЃЂItxt"         ""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @ `P0pH(hX8xD$dT4tL,l\<|B"bR2r
J*jZ:zF&fV6vN.n^>~A!aQ1q	I)iY9yE%eU5u
M-m]=}C#cS3sK+k[;{G'gW7wO/o_?You are about to report a bug on a firmware package.
This package does not contain any drivers and is probably not responsible
for the bug you have found.

If you want to report a bug in a Linux kernel module, use the 'modinfo'
command to find where it is installed and then give the filename to
'reportbug'.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Wr}߯*A.(bTdkeokkɱ 2Hb\ηBIQKs>}\^̍tDIIćնR,dXBu՛7Do{yO]c[#EEwXo|),H֒PG{/ŭR~q	Ɣ5g,dܭyϓFWtvqN.KU/#,<y8]"oIs=Dz$˭V;QR]uX/QjȟtUl塞]95~۵-j{kTehЮZNR#[t%!;(h- 0/yu{l4n,1	Y
L+ѠFQ|RșLXIVRהH٪v
$tCwR!Yetj41+W
'm BauN'tE2Kcfպ%WzQ+DORWePsO[.bg,gMs[VU,h纪LkJ=ۨ"KҠDVƏbiJ-
\ɲ8",ghsHKV"i=`RGGkQZ^r$:bqgͱ]"#[%ē7SZ L,!='[*$Etn6"
Эؕ06 UmQ\ClCSl @Zh~JB9jIͺv`/fϼ3 OkD5ߩ@̑RpUWa7jP$fv=PEk!WhAIBWl8kP7+l7߉E'o?C^	Ws;Xwgm{pnY8ҽB`~^q"Gb{w\8
~͛o0eugry+oYJl6 
eSGԱ
8i75xp7ڎt~
ik7\Ҳg{Dgr2 :tNgpcO Vz]g6
{.جk^"J5_
-8J&Cx_
*sZ| x0cY݆,O{l(齜yO8~Q|wLK35f&v_9wugrz˷a\E7fč	EqvitX:p+$.{۫YpJ/q+YZ6a]f?6rȋ<VгwUEtCuw]
V&Isѕ2
 y
:DD	4fQ%{	DϺZ
wAǪ*"@jI~o;~4SpKm⿚$Iz,$iA얼Wto0q.5u}ܵB([WL&ItZi&I/x8KS E6ه,|B<6C hKgWx;|\ҭJ3^f;8Lr%hdfk7YkY
O, =l;?L{K/e9~d:I5"e{)fsOQ~=y#&qܺAd; .wah<	/z/O)˥ĬnKf:B|n.n>6}K]@܍xw	4wq0#<ܮzn;KvX3m

׵I ǓїV_SU-lw<OGW䄾FY<6?Q<	Of,}_
ÁYfS|@UQ)CkOP%6!
] ǳAyi-|u8NQ'oTz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: linux-firmware
Upstream-Contact: linux-firmware@kernel.org
Source: https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git
Files-Excluded:
# Undistributable because:
# - licence doesn't mention redistribution
 3com/3C359.bin
 tr_smctr.bin
# - licence allows redistribution only as part of a kernel
 emi26/*.fw
 emi62/*.fw
 keyspan/mpr.fw
 keyspan/usa*.fw
 rsi_91x.fw
 sdd_sagrad_1091_1098.bin
 slicoss/*.sys
 sxg/*.sys
 wsm_22.bin
# - licence is supposedly GPL, but no source is visible
 adaptec/starfire_*.bin
 atmsar11.fw
 cpia2/stv0672_vp4.bin
 edgeport/*
 ositech/Xilinx7OD.bin
 sb16/*.csp
 ti_3410.fw
 ti_5052.fw
 whiteheat.fw
 whiteheat_loader.fw
 yamaha/yss225_registers.bin
# - licence is GPL, but source is elsewhere
 atusb/*
# - licence is unknown
 LICENCE.*
 LICENSE.*
 Makefile
 README
 WHENCE
 acenic/*
 configure
 copy-firmware.sh
 ess/maestro3_*.fw
 intelliport2.bin
 korg/k1212.dsp
 lgs8g75.fw
 mts_mt9234*.fw
 myricom/lanai.bin
 qlogic/isp1000.bin
 sun/cassini.bin
 ttusb-budget/dspbootcode.bin
 vicam/firmware.fw
 yam/*
 yamaha/ds1*.fw
# Non-free
 3com/typhoon.bin
 RTL8192E/*
 advansys/*
 agere_*_fw.bin
 amd/*
 amd-ucode/*
 amdgpu/*
 ar3k/*
 ar5523.bin
 ar7010*.fw
 ar9170*.fw
 ar9271.fw
 as102_*
 ath10k/*
 ath3k-1.fw
 ath6k/*
 ath9k_htc/*
 atmel/*
 brcm/*
 bnx2/*
 bnx2x-*
 bnx2x/*
 cadence/*
 cavium/*
 cbfw-*.bin
 cmmb_*.inp
 ct2fw-*.bin
 ctefx.bin
 ctfw-*.bin
 ctspeq.bin
 cxgb3/*
 cxgb4/*
 dabusb/*
 dpaa2/*
 dvb-fe-xc*.fw
 dvb-usb-dib*.fw
 dvb-usb-it*.fw
 dvb-usb-terratec-*.fw
 dvb_nova_*.inp
 e100/*
 ene-ub6250/*
 f2255usb.bin
 go7007/*
 hfi1_*.fw
 htc_*.fw
 i2400m-*.sbcf
 i6050-*.sbcf
 i915/*
 imx/*
 inside-secure/*
 intel/*
 isdbt_*.inp
 iwlwifi-*
 kaweth/*.bin
 libertas/*
 lbtf_usb.bin
 liquidio/*
 matrox/*
 mediatek/*
 mellanox/*
 meson/*
 microchip/*
 moxa/*
 mrvl/*
 mt76*.bin
 mts_cdma.fw
 mts_edge.fw
 mts_gsm.fw
 mwl8k/*
 mwlwifi/*
 myri10ge_*.dat
 netronome/*
 nvidia/*
 phanfw.bin
 qat_*.bin
 qca/*
 qcom/*
 qed/*
 ql*_fw.bin
 qlogic/1*.bin
 qlogic/sd7220.fw
 r128/*
 r8a779x_usb3_*
 radeon/*
 rockchip/*
 rp2.fw
 rsi/*
 rt*.bin
 rtl_bt/*
 rtl_nic/*
 rtlwifi/*
 rtw88/*
 s5p-mfc*.fw
 sms1xxx-*
 TDA7706*
 tdmb*
 tehuti/*
 ti-connectivity/*
 ti-keystone/*
 tigon/*
 tlg2300_firmware.bin
 ueagle-atm/*
 v4l-cx*.fw
 vntwusb.fw
 vpu_?.bin
 vxge/*
 wil6210.*

Files: GPL-2
Copyright: 1989, 1991, Free Software Foundation, Inc.
License: verbatim-FSF

Files: GPL-3
Copyright: 2007, Free Software Foundation, Inc.
License: verbatim-FSF

Files: av7110/*
Copyright: 2001, Convergence integrated media GmbH
           2006, Matthieu CASTET
License: GPL-2+

Files: carl9170fw/* carl9170-1.fw
Copyright: 2000-2005, ZyDAS Technology Corporation
           2007-2009, Atheros Communications, Inc.
	   2008-2009, Johannes Berg <johannes@sipsolutions.net>
           2009-2011, Christian Lamparter <chunkeey@googlemail.com>
License: GPL-2+

Files: carl9170fw/carlfw/src/ashlsi3.S carl9170fw/carlfw/src/udivsi3_i4i-Os.S
Copyright: 1994-1995, 1997-2006, Free Software Foundation, Inc.
License: GPL-2+

Files: carl9170fw/carlfw/src/memcpy.S carl9170fw/carlfw/src/memset.S
Copyright: 1999, Niibe Yutaka
License: GPL-2

Files: carl9170fw/carlfw/src/printf.c
Copyright: 2004, 2008, Kustaa Nyholm
License: LGPL-2.1+

Files: carl9170fw/config/*
Copyright: 2002-2005, Roman Zippel <zippel@linux-m68k.org>
           2002-2005, Sam Ravnborg <sam@ravnborg.org>
License: GPL-2

Files: carl9170fw/extra/FindGPERF.cmake
 carl9170fw/extra/FindPackageHandleStandardArgs.cmake
 carl9170fw/extra/GCCVersion.cmake
Copyright: 2006-2009, Kitware, Inc.
           2006-2008, Andreas Schneider <mail@cynapses.org>
	   2006, Tristan Carel
           2007, Wengo
           2007, Mike Jackson
           2008, Andreas Pakulat <apaku@gmx.de>
           2008-2009, Philip Lowman <philip@yhbt.com>
License: BSD-3-clause-Kitware

Files: carl9170fw/extra/FindUSB-1.0.cmake
Copyright: 2009, Andreas Schneider <mail@cynapses.org>
License: BSD-3-clause-Schneider

Files: carl9170fw/include/linux/ieee80211.h
Copyright: 2001-2002, SSH Communications Security Corp and Jouni Malinen <jkmaline@cc.hut.fi>
           2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
           2005, Devicescape Software, Inc.
           2006, Michael Wu <flamingice@sourmilk.net>
License: GPL-2

Files: carl9170fw/include/shared/fwcmd.h carl9170fw/include/shared/fwdesc.h
 carl9170fw/include/shared/hw.h carl9170fw/include/shared/wlan.h
 carl9170fw/tools/lib/carlfw.c carl9170fw/tools/lib/carlfw.h
 carl9170fw/tools/src/checksum.c carl9170fw/tools/src/eeprom_fix.c
 carl9170fw/tools/src/fwinfo.c carl9170fw/tools/src/miniboot.c
 carl9170fw/tools/src/wol.c
Copyright: 2008, Johannes Berg <johannes@sipsolutions.net>
           2009-2011, Christian Lamparter <chunkeey@googlemail.com>
License: GPL-2

Files: carl9170fw/include/shared/phy.h
Copyright: 2008-2009 Atheros Communications Inc.
License: permissive-Atheros

Files: carl9170fw/tools/include/list.h
Copyright: 2003-2006, Thomas Graf <tgraf@suug.ch>
License: LGPL-2.1

Files: cis/src/* cis/3CCFEM556.cis cis/3CXEM556.cis cis/COMpad2.cis
 cis/COMpad4.cis cis/DP83903.cis cis/LA-PCM.cis cis/MT5634ZLX.cis
 cis/NE2K.cis cis/PCMLM28.cis cis/PE-200.cis cis/PE520.cis cis/RS-COM-2P.cis
 cis/tamarack.cis
Copyright: 1998-2000, David A. Hinds
License: GPL-2 or MPL-1.1

Files: av7110/Makefile check_whence.py cis/Makefile dsp56k/Makefile
       dsp56k/concat-bootstrap.pl keyspan_pda/Makefile
Copyright: 2011, 2016, Ben Hutchings <ben@decadent.org.uk>
License: GPL-2+

Files: cis/SW_*_SER.cis
Copyright: 2002-2005, Sierra Wireless
License: GPL-3
Comment: These binary files are understood to be the preferred form for
 modification.  They follow the PCMCIA Card Information Structure (CIS)
 format.  The pcmcia-cs project <http://pcmcia-cs.sourceforge.net/>
 distributes tools for converting between CIS and an unofficial text
 format.

Files: dsp56k/*
Copyright: 1996-1997, Frederik Noring
License: GPL-2+

Files: isci/*
Copyright: 2011-2012, Intel
License: GPL-2

Files: keyspan_pda/*
Copyright: 1999-2000, Brian Warner <warner@lothar.com>
           2001, Cristian M. Craciunescu <cristi@dnt.ro>
License: GPL-2+

Files: usbdux/* usbdux*.bin
Copyright: 2004, 2009, 2010, 2015, Bernd Porr <mail@berndporr.me.uk>
License: GPL-2+

Files: debian/*
Copyright: 2006-2009 Bastian Blank <waldi@debian.org>
           2009-2018, 2020, Ben Hutchings <ben@decadent.org.uk>
License: GPL-2+

Files: debian/config/* debian/*.metainfo.xml
Copyright: 2010-2013, 2016, Ben Hutchings <ben@decadent.org.uk>
License: CC0-1.0

License: BSD-3-clause-Kitware
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 1. Redistributions of source code must retain the copyright
    notice, this list of conditions and the following disclaimer.
 .
 2. Redistributions in binary form must reproduce the copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 .
 3. Neither the name of Kitware, Inc., the Insight Software Consortium,
    nor the names of their contributors may be used to endorse or promote
    products derived from this software without specific prior written
    permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: BSD-3-clause-Schneider
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 1. Redistributions of source code must retain the copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. The name of the author may not be used to endorse or promote products
    derived from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: CC0-1.0
 To the extent possible under law, Ben Hutchings has waived all
 copyright and related or neighboring rights to the firmware-free
 metadata.
 .
 On Debian systems, the text of CC0 1.0 Universal can be found in
 /usr/share/common-licenses/CC0-1.0.

License: GPL-2
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, version 2.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 On Debian systems the text of the GPL version 2 can be found in
 /usr/share/common-licenses/GPL-2.

License: GPL-2+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 On Debian systems the text of the GPL version 2 can be found in
 /usr/share/common-licenses/GPL-2.

License: GPL-3
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, version 3.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 On Debian systems the text of the GPL version 3 can be found in
 /usr/share/common-licenses/GPL-3.

License: LGPL-2.1
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation, version 2.1.
 .
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
 .
 On Debian systems the text of the LGPL version 2.1 can be found in
 /usr/share/common-licenses/LGPL-2.1.

License: LGPL-2.1+
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 .
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
 .
 On Debian systems the text of the LGPL version 2.1 can be found in
 /usr/share/common-licenses/LGPL-2.1.

License: MPL-1.1
 The contents of this file are subject to the Mozilla Public License
 Version 1.1 (the "License"); you may not use this file except in
 compliance with the License. You may obtain a copy of the License at
 https://www.mozilla.org/MPL/
 .
 Software distributed under the License is distributed on an "AS IS"
 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 License for the specific language governing rights and limitations
 under the License.
 .
 On Debian systems the text of the MPL version 1.1 can be found in
 /usr/share/common-licenses/MPL-1.1.

License: permissive-Atheros
 Permission to use, copy, modify, and/or distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
 copyright notice and this permission notice appear in all copies.
 .
 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

License: verbatim-FSF
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         <?xml version="1.0" encoding="UTF-8"?>
<component type="firmware">
  <id>org.debian.packages.firmware_linux_free</id>
  <name>Binary firmware for various drivers in the Linux kernel</name>
  <summary>Binary firmware for  This package contains firmware which was previously included in the Linux kernel and which is compliant with the Debian Free Software Guidelines. . Most firmware previously included in the Linux kernel is non-free and has been moved to the firmware-linux-nonfree package..</summary>
  <metadata_license>CC0-1.0</metadata_license>
  <provides>
    <firmware type="runtime">av7110/bootcode.bin</firmware>
    <firmware type="runtime">carl9170-1.fw</firmware>
    <firmware type="runtime">cis/3CCFEM556.cis</firmware>
    <firmware type="runtime">cis/3CXEM556.cis</firmware>
    <firmware type="runtime">cis/COMpad2.cis</firmware>
    <firmware type="runtime">cis/COMpad4.cis</firmware>
    <firmware type="runtime">cis/DP83903.cis</firmware>
    <firmware type="runtime">cis/LA-PCM.cis</firmware>
    <firmware type="runtime">cis/MT5634ZLX.cis</firmware>
    <firmware type="runtime">cis/NE2K.cis</firmware>
    <firmware type="runtime">cis/PCMLM28.cis</firmware>
    <firmware type="runtime">cis/PE-200.cis</firmware>
    <firmware type="runtime">cis/PE520.cis</firmware>
    <firmware type="runtime">cis/RS-COM-2P.cis</firmware>
    <firmware type="runtime">cis/SW_555_SER.cis</firmware>
    <firmware type="runtime">cis/SW_7xx_SER.cis</firmware>
    <firmware type="runtime">cis/SW_8xx_SER.cis</firmware>
    <firmware type="runtime">cis/tamarack.cis</firmware>
    <firmware type="runtime">dsp56k/bootstrap.bin</firmware>
    <firmware type="runtime">isci/isci_firmware.bin</firmware>
    <firmware type="runtime">keyspan_pda/keyspan_pda.fw</firmware>
    <firmware type="runtime">keyspan_pda/xircom_pgs.fw</firmware>
    <firmware type="runtime">usbdux_firmware.bin</firmware>
    <firmware type="runtime">usbduxfast_firmware.bin</firmware>
    <firmware type="runtime">usbduxsigma_firmware.bin</firmware>

  </provides>
</component>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      /.
/lib
/lib/firmware
/lib/firmware/av7110
/lib/firmware/av7110/bootcode.bin
/lib/firmware/carl9170-1.fw
/lib/firmware/cis
/lib/firmware/cis/3CCFEM556.cis
/lib/firmware/cis/3CXEM556.cis
/lib/firmware/cis/COMpad2.cis
/lib/firmware/cis/COMpad4.cis
/lib/firmware/cis/DP83903.cis
/lib/firmware/cis/LA-PCM.cis
/lib/firmware/cis/MT5634ZLX.cis
/lib/firmware/cis/NE2K.cis
/lib/firmware/cis/PCMLM28.cis
/lib/firmware/cis/PE-200.cis
/lib/firmware/cis/PE520.cis
/lib/firmware/cis/RS-COM-2P.cis
/lib/firmware/cis/SW_555_SER.cis
/lib/firmware/cis/SW_7xx_SER.cis
/lib/firmware/cis/SW_8xx_SER.cis
/lib/firmware/cis/tamarack.cis
/lib/firmware/dsp56k
/lib/firmware/dsp56k/bootstrap.bin
/lib/firmware/isci
/lib/firmware/isci/isci_firmware.bin
/lib/firmware/keyspan_pda
/lib/firmware/keyspan_pda/keyspan_pda.fw
/lib/firmware/keyspan_pda/xircom_pgs.fw
/lib/firmware/usbdux_firmware.bin
/lib/firmware/usbduxfast_firmware.bin
/lib/firmware/usbduxsigma_firmware.bin
/usr
/usr/share
/usr/share/bug
/usr/share/bug/firmware-linux-free
/usr/share/bug/firmware-linux-free/presubj
/usr/share/doc
/usr/share/doc/firmware-linux-free
/usr/share/doc/firmware-linux-free/changelog.Debian.gz
/usr/share/doc/firmware-linux-free/copyright
/usr/share/metainfo
/usr/share/metainfo/firmware-linux-free.metainfo.xml
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     L  .   wL  ..  M  package.json	M  dist
M 	README.md                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ELF          >                    \          @     @ , +          GNU Ff߶шAѠk~        Linux                Linux   6.1.0-35-amd64      HGHtHPH9tH    HPH    1    UHSGt/1HUHcH4%   =   u2H=        ;]rHE H9E(uH}    H} []    f.         HHHH    L@HH II        AVAUATIUHH    SHO HWLG(HHH
I    Et$MIE   I4$LHHPH9   1HB(HHPH9t%   =   tDH    H    IT$DHHH vDHH    H    HHAIH        Ac[]A\A]A^    H
H    H    DH    H1    1f.         H=        ff.     @     AVLv(AUIATUSHHЃ?HL$I$I$I9tdHkI9t(H HE(HhHI9tHE H% H9sLe0HLL    tLu0I](Me0M4$[]A\A]A^    HLL    tLsI](Me0M4$fD      AVAUATUSH.   ?       DpA3   IH=    H
      H   EHXD
  H HCH=    HL	HID$HH    H   I	HXL(A     HsHCHHI<$jHsHHI<$QH   H{(    tHS(HC0HBHH     HC(H"HC01[]A\A]A^    HC    HsH=        1HCf.         AWIAVIAUI     ATI"    USHnHuaz%   =   ulH{(    tHS(HC0HBHLk(H=    LILc0    H=    H    HEHtHH]L9uH]%   =   tILII>[]A\A]A^A_    H%   =   uHGHHG(
         ATIUSHHH8HpHoI9u1BHCHHHC(    HE(HU(HH(I9tHH%   =   tM$$Md$[]A\             H9  AWAVAUATUHSHH  k  LjI!^  IHWII܉I!HI)Lg Lg(G3I  x  H    IHj  H H@AGt   ЃHIH H@A9WsL      AGH<        IGH  E1HŉD$D$I)Ã3   H=    
      HH   HcHB    L	  urI?HH$HE9wH$rRH
IGHH9rEHDAHIOIHI)b1H[]A\A]A^A_    A^HEtIGH=    H4H    HuI    I?    렸    f.         AWAVAULl
ATIUHSHH0LD$eH%(   HD$(1HD$HD$HD$ L3L9  MI8  L    tIIFHBHH     INIH"IFID$HH HHDI9rH9r΁      tH9rPI9rK      Ht$L$    $HT$(eH+%(     H0[]A\A]A^A_       tLL@  INHHLy8HL$LH$    H$HL$tILzHQ8HY@L;MFLHMp8L$L    L$MwMx8IX@L3L;M~LIN    tIVIFHBHINHT$LH     IFH"IFID$HI)D$(HL$ HH$    (H$HD$L|$ IFINL9
HD$H|$H9t!H|$HD$ HL$HWHQH
H8HG1~INH^HQI9tJHLINȁ      6H      !LL$$HQ         AWAVIHAUATUSHĀIVH4$eH%(   HD$x1HD$XL9HD$XHD$`LHFH9K  MB  HIIHHH	HrL	H!LH!H	  IF H9  H9  H)L9   ID LH9  I   H|$8L$$MAHl$PHI)ID$LEEȸA9DGE9G)  D$A9*  L$   EHAMMM   H$   AVHp  D9r/I>DˉHHH0H9tH@II(  9sAAD9L$  A미HT$xeH+%(     H[]A\A]A^A_    HD$8LD$HLl$hMHl$@DHLd$0MH$MoAGLd$hLd$pIG  l$1LLl$MHl$pIUHcHL<LMw8L    tLt$pMg8Io@Lu A;]rH\$hMl$Ll$L9  LIIHLl$(Ll$0HD$    9  =   tHLe  INHT$hLHY8HL$HHT$    HT$HL$Y  HZHQ8La@H\$hMFHLMp8LD$L    tLD$LsIX8M`@Lt$hLt$hM9  LH8  L    tIIFHBHH     IH"IFIFȉ?9rIwHH HHt2L9rH<$H9r%   =   uL9r	H9L$HLT$(I9MLGIL#L$ I9ICHL	HL9-L9I99=   AMHl$@LD$HIM   H\$hHD$hE9l$
  @%   =     D9tJL$EMA9  LLqtLLDl$D$Lc|$L$DL$I   HLD$MHE Lm(LHE     D$tHU(HE0HBHHM Lt$`LD$H     HT$XHE(H"LHE0IGHI)G(    D$tHD$XLl$`HE(Lu0M.   DHH)hHD$XHL$XHl$PH9tHUHD$`HL$XHQH
H(HE1MD9DE1HLH8H9t&LXMtICI?H% H H9sM{؃9sMkI؃?%   =   OL$ELILAIHKHl$@MLD$HHt9HQI9   Ht'HKȁ      uH         Lc&AVH\$hH\$hH\$ptcLl$E1MHLL$Hl$pIUIcHL4HM~8L    tL|$pI^8In@L} AE;erMHl$Ll$H$ILHL`HQ/LLLD$DL$$,LD$DL$$1MHt$XL    AAD9L$tA             AWAVAUATAUSH(eH%(   HD$ 1HD$HD$HD$HH9tH*HH9jt*HD$ eH+%(     H(D[]A\A]A^A_    HM؉%   =     HGIIHHHm  H9d  HHuE1H9tH    tHU HEHBHH     HuLeHE H"HEHE؀HEI>HMIFLHt$HIF(L}HEHE    HT$H% H$HT$    tHT$HD$Ld$LbHUHEH$ILHt$LAąuL}HEHHE    tHU HEHBHH     HMHHHE H"HEIFHI)F(L+L    tImLm H]H+yA/        E11ɺ   H   H        HH        H                                                                                                            vtq
&;[y7"D-Ij@             drm_buddy_init  drm_buddy_fini  drm_get_buddy  drm_buddy_free_block  drm_buddy_free_list  drm_buddy_block_trim  drm_buddy_alloc_blocks  drm_buddy_block_print  drm_buddy_print                                                                                                                          drivers/gpu/drm/drm_buddy.c %#018llx-%#018llx: %llu
 order-%d  free: %lluKiB free: %lluMiB , pages: %llu
 drm_buddy_block   chunk_size: %lluKiB, total: %lluMiB, free: %lluMiB
 license=Dual MIT/GPL description=DRM Buddy Allocator depends=drm retpoline=Y intree=Y name=drm_buddy vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                             (  0  (                   0                                   (  0  (                   0                         (  0  (                   0                         (    0  8  0  (                                                                                   (    0  8  H  8  0  (                     H                             (    0  8  h  8  0  (                     h                         (    0  8    8  0  (                                              (    0  8  `  8  0  (                     `                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           m    __fentry__                                              9[    __x86_return_thunk                                      H*    kmem_cache_free                                         z    kfree                                                   Rw(    drm_printf                                              "    kmem_cache_create                                       O)    kmem_cache_destroy                                      h    __list_add_valid                                        Ph    kmem_cache_alloc                                        UrS    __list_del_entry_valid                                  Qs    __SCT__cond_resched                                     E:#    __kmalloc                                               F    __sw_hweight64                                          V
    __stack_chk_fail                                        e:X    module_layout                                                    	         	                                                              (          (                                                      v                                         i	                                                                drm_buddy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0             ^  ;       ; =     ; ? @   b  k                    
        <     g         :        ;       
        <               > ;   H   }  -       Q A @   PL A    [  A    %  k      ?v  `   @  ; `            @ ;   0   9  a        C @   <       <        -        -      > -   @         A        B <    x   ,<             
      D 5  < B<    G       
      D 2y  A 5  < R<    I       
     D L  -   \  -     -   h< -   F"  a        v<    K       
     D W	 -   F"  a   <    M       
     D < a   L  -     -   F"  a   <    O       
      D  a   <    Q       
      D 2y  A <    S <    S       
A 2y  A <    V       
     D 2y  A <    X       
      D =    Z       
     D   -    -   =    \        
t             ^              
_ drm_printer printfn puts drm_buddy_block tmp_link drm_buddy n_roots max_order drm_buddy_module_init drm_buddy_module_exit drm_buddy_print drm_buddy_block_print min_page_size drm_buddy_alloc_blocks drm_buddy_block_trim dfs __alloc_range drm_buddy_free_list drm_buddy_free_block __drm_buddy_free drm_get_buddy split_block drm_buddy_fini drm_buddy_init   drm_buddy.ko    Z	R                                                                                                                                               $                      
                     
                +     
                 ?     
                Z     
                t     
                     
                      
                     
                     5                                     A                  M       	       1    V              E    e       <       ]                   f           $       n    
                     
                     H                   
                    
                     $                   
                      
 .               :     `               R    
 /               q    
 D                    0                   
 E                   
 Y                    <               
    
 Z               ,    
 o               M                    l    
 p                   
                                         
                    
                                    3    
                M    
                i     T                  $                            5                                                     f          P                                                                    2                   ^                                            P      x          "                                                                 /                                                             5           
            s           &                                                W    p      "                           	                                (                            *                     A                     D            /                       T                     _                         0       f       s                     }                      __crc_drm_buddy_init __crc_drm_buddy_fini __crc_drm_get_buddy __crc_drm_buddy_free_block __crc_drm_buddy_free_list __crc_drm_buddy_block_trim __crc_drm_buddy_alloc_blocks __crc_drm_buddy_block_print __crc_drm_buddy_print __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 __kstrtab_drm_buddy_init __kstrtabns_drm_buddy_init __ksymtab_drm_buddy_init __kstrtab_drm_buddy_fini __kstrtabns_drm_buddy_fini __ksymtab_drm_buddy_fini __kstrtab_drm_get_buddy __kstrtabns_drm_get_buddy __ksymtab_drm_get_buddy __kstrtab_drm_buddy_free_block __kstrtabns_drm_buddy_free_block __ksymtab_drm_buddy_free_block __kstrtab_drm_buddy_free_list __kstrtabns_drm_buddy_free_list __ksymtab_drm_buddy_free_list __kstrtab_drm_buddy_block_trim __kstrtabns_drm_buddy_block_trim __ksymtab_drm_buddy_block_trim __kstrtab_drm_buddy_alloc_blocks __kstrtabns_drm_buddy_alloc_blocks __ksymtab_drm_buddy_alloc_blocks __kstrtab_drm_buddy_block_print __kstrtabns_drm_buddy_block_print __ksymtab_drm_buddy_block_print __kstrtab_drm_buddy_print __kstrtabns_drm_buddy_print __ksymtab_drm_buddy_print slab_blocks drm_buddy_module_init drm_buddy_module_exit list_insert_sorted.isra.0 split_block __drm_buddy_free __alloc_range __UNIQUE_ID_license259 __UNIQUE_ID_description258 __UNIQUE_ID___addressable_cleanup_module257 __UNIQUE_ID___addressable_init_module256 .LC0 __this_module cleanup_module kfree kmem_cache_create __fentry__ init_module __stack_chk_fail kmem_cache_alloc __sw_hweight64 __list_add_valid kmem_cache_free __list_del_entry_valid __x86_return_thunk drm_printf __SCT__cond_resched __kmalloc kmem_cache_destroy           E             Q   '          Q   1          E   _             g          O             B             B             E                                 T             E                                 T   a            5       i         T               M                T               [                T            Q               ?                T               5                T            E               
         X   !         E            M            Q            M            E   %            2         J   \            u         J            P            Q   .            3         O   Q         E            P                        O                        O   !         E   Q         E            U            Q            E   K         W            L            W                        J   {         Q                        O            B            B            Q            E   B         P            ?            Q   -	         M   c	         M   	         P   	         M   
         I   
         E            Q   
         M   
         M   
         M            P            P            M            M   B         ?   d         I   q         E            Q   3         P            M            P   f         M            I             E                j                 D   '             1          Q              G                     *                     +                     C                     -                     .                     K                     '                      (           $          V           (                     ,                     0          N           4          !           8          "           <          ?           @          $           D          %           H          S           L                     P                     T          H           X          0           \          1           `          R           d                     h                                                                                                 0                                                                     (                    0                    8                   @             P      H                    P             P      X                   `                   h             
      p             p                                        &                                                                                                z                                             $                   (                   ,             0                                          /                    0                    6                    :                                                                                        $                    (                    ,                    0                    4                    8                    <                    @                    D                   H                   L                   P                   T                   X                   \                   `                    d                   h                    l             '      p             -      t             2      x             3      |             4                                                                                                                                                                                                                                                                                                                                                                                            F                   P                   W                   \                   a                   m                   x                   y                                                                                                                                                                         H                  P                  W                  [                  \                         $                  (                  ,                  0                  4                  8                  <                  @                  D                  H                  L                  P            p      T            q      X            r      \            t      `            v      d            x      h            z      l                  p                  t                  x                  |                                                                                                                                                                                                                                                                                          
                  
                  
                  
                  
                  
                  
                  
                  
                  {                  |                  }                                                                                                            h                   p                  w                  y                  {                  }                                                                               $                  (                  ,                  0                  4                  8                  <                  @                  D                    H            5                                      >                                         >                        Y                >           $                   (          >           0                   4          >           <                   @          >           H                   L          >           T             F      X          >           `                   d          >           l                   p          >           x                   |          >                                        >                                        >                                        >                                        >                                        >                                        >                                        >                      A                      F                                         U           8         F           P         A            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .altinstr_replacement .rela__ksymtab __kcrctab .rela.altinstructions __ksymtab_strings .rela__mcount_loc .rodata.str1.1 .rodata.str1.8 .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela__bug_table .rela.exit.data .rela.init.data .rela.static_call_sites .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                         @       $                              .                     d       <                              ?                                                         :      @               X;      p      )                    J                     2      5                              E      @               C      x       )                    U                     g                                    p                     l      l                              k      @               @D            )                    z                           $                                                                                              @               F      0       )                          2                                                                             x                                    @               F      h      )                          2               4      z                                   2                     4                                                                                                                 0                                    @               `H             )                                               r                             	                    '      L                                  @               I      
      )                                                                            (                    @"                                    #     @               HW      `      )                    N                    #                                     9                    #                                    4     @               Z             )                    I                     #                                    D     @               Z             )                    Y                    (#                                    T     @               Z      0       )                     q                    @#                    @               l     @               [      0       )   "                                     &                                         0               &      P                                                  '                                                          '      F                                                  X,                                                          p,      X      *   ?                 	                      4                                                         8[                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  6H]O?p/{9~3|xh%)p?^ݔ1Pg3RxҵŵXf{omci,cvtLa WRQ RœT!
٫=2ٙi1X	"swAŞ-NUV[s#hj%Q	=u =LQW@`:恨
.`|"fW&`|FK(~d         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    h          @     @ ) (          GNU b(=BMQZI        Linux                Linux   6.1.0-35-amd64      x  Px  t1    USH    HH= w.   uHp  1[]    H   HH    HH       1    ǃx      f.         ATUHHH    u7LP  L    uH<LD$    D$H]A\    ff.         AULP  ATAUHLS    |  x
D|  DL    []A\A]    f    x  tbSHx  u4   u1  Hp  H߉у    Hǃp      [    H   Hp  H                 UHP  SHH    H_H[]    D      US|  HHoH  ~     PH0E11H}    H      H      HHǃ      H   ǃ|  udH    HCH1Hx     HCH[1]H@ Hx0    HgH    YH    KHHEhHS0   Hs(Hx0HH    uf    UHP  SHH    1tH    H       []         AWAVAUATUHSHL7H_MfxI+HM$   M$P  L    I   L9s4I$p  HtJA$|  xHHuLH+    H    LD$    D$H[]A\A]A^A_            ATUSHoxHH    u6LP  L    x  t!x  L    H[]A\             ATH    IUSHDx  H    H    E$  HH    H        M$  HH    [H    ]A\    ff.      HH׉Hp    H    uH   Hp  HH    f    AUAATIUH  SHG0H H@HHc  H    HH=    H0   .  HHLE       Ņ   H    Ņ   HP  H    H        H  H    H        H  H  H  HCH   @@l H[]A\A]        ƃ   H    ŅuWHP  H    H        H  H    H        H  H  H  H[]A\A]    H    HHc    H[]A\A]    Hǃ0      H=      
      HHH"ff.     @     1$@     ATIԺ   USHHH  H HHH= wL  Hپ   1H        H[]A\    ff.     @     ATUHHSHBBJt	HrHutB   HrHZ1_IH= w-HHH    MtA$td~Iu1H[]A\    HcH v9sB
H9s   Hrz   LD$    D$렉D$L    D$t        ATUSLgxHI$P  H    LH    H[]A\    @ USH    Hu!HP  H    HzH[]    ff.         USH    Hu!HP  H    H5H[]        H    uH   Hp  HH        ATUHHH    u7LP  L    uHLD$    D$H]A\    ff.     @     ATUHHH    u7LP  L    uHLD$    D$H]A\    f.         ATIUH  SHH      tf  u"H   Ht"H8L    Hǃ      [H]A\    H  LP      L    HL    [H]A\    @ [ff.         US  H   H    H  t$H    x  uzH    H[]    Ht0HCVE11H6Hx    H      H      Hp   tHP  H    HH    x  tX;ff.         AUATIUHP  SH    Hc؅tH[]A\A]    I$  HtH    H[]A\A]    I$    uoLHc؅uI$    uyI$   I$p  I|$H    HAH= w=ID$11HHx    AŅuI$  pH    H    LIcLf         ATUHSHHH    urHF (H    LP  L    t
H[]A\    HLD$    D$uH} H H}     HE   uQ1HFx    1HF`    H       uHtոt+þ   H    1eH    HE1RH    1C9     ff.         AWAVAUL  ATIUSHLH    ŅtH[]A\A]A^A_      P  urH   HtyH8L    Aƅu!A|$ $  I$H  L    DH       1    H       Dǃ      H  AD$ I$LP  Ic     L5    L#5    L    tH>LD$    D$u   uDH   Hp  L   AH    H  H1I$AD$ L    IHP  H    HH    H   LAH8    ff.     f+                                                                                                                                                                                                                             :@HVމ1skv*5^|Dku
pN                                                                                                                                                                                                                                                        drm_gem_shmem_create  drm_gem_shmem_free  drm_gem_shmem_get_pages  drm_gem_shmem_put_pages  drm_gem_shmem_pin  drm_gem_shmem_unpin  drm_gem_shmem_vmap  drm_gem_shmem_vunmap  drm_gem_shmem_madvise  drm_gem_shmem_purge_locked  drm_gem_shmem_purge  drm_gem_shmem_dumb_create  drm_gem_shmem_vm_ops  drm_gem_shmem_mmap  drm_gem_shmem_print_info  drm_gem_shmem_get_sg_table  drm_gem_shmem_get_pages_sgt  drm_gem_shmem_prime_import_sg_table  Failed to get pages (%ld)
 					X %.*spages_use_count=%u
 %.*svmap_use_count=%u
 %.*svaddr=%p
 &shmem->pages_lock &shmem->vmap_lock size = %zu
                                                                                                                                                                                              drivers/gpu/drm/drm_gem_shmem_helper.c  Failed to vmap pages, error %d
         license=GPL v2 import_ns=DMA_BUF description=DRM SHMEM memory-management helpers import_ns=DMA_BUF depends=drm retpoline=Y intree=Y name=drm_shmem_helper vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                       (                                                                                                                                (    0  8  @  8  0  (                     @                                                                                              (                 (                 (                 (                                                            (               (                                                                                                                                                                                                                                                        (                 (                 (                     (               (                                   (    0  8  @  8  0  (                     @                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      25    sme_me_mask                                             w2~    ___drm_dbg                                              R"    vmf_insert_pfn                                          rԃ    drm_gem_get_pages                                       o[    dma_buf_vmap                                            3NI    vm_get_page_prot                                        O[    sg_free_table                                           :=    invalidate_mapping_pages                                Oi    unmap_mapping_range                                         vunmap                                                  >(    dma_buf_mmap                                            z    kfree                                                   ˍ    drm_gem_create_mmap_offset                              P    drm_gem_object_init                                     m    __fentry__                                              pHe    __x86_indirect_thunk_rax                                jV    drm_gem_private_object_init                             _i    refcount_warn_saturate                                  n݋    set_pages_array_wb                                      w    drm_gem_object_free                                     &;    drm_gem_vm_close                                        >Y    drm_gem_vm_open                                         4dk    drm_gem_object_release                                  KM    mutex_lock                                              x    vmap                                                    S    drm_gem_handle_create                                       __mutex_init                                            u    mutex_lock_interruptible                                5S    drm_prime_pages_to_sg                                   aҌ    __default_kernel_pte_mask                               pP    pgprot_writecombine                                     9[    __x86_return_thunk                                      n     dma_buf_vunmap                                          Ӟ    mutex_trylock                                           le    vmemmap_base                                            Ȣ*    shmem_truncate_range                                    ɞ.    set_pages_array_wc                                      Rw(    drm_printf                                                  dma_map_sgtable                                         82    mutex_unlock                                            $*    drm_gem_free_mmap_offset                                2"    dma_unmap_sg_attrs                                           kmalloc_trace                                           ({    drm_gem_put_pages                                       1Y    kmalloc_caches                                          DS    drm_prime_gem_destroy                                   e:X    module_layout                                                    	         	        	        ,	        ?	        H	        	        	        	        	        
	         	        
	         	        {	         	         	        	        	        0	                                                                        drm_shmem_helper                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         l  l  K         
t             :    /          
; ;       ; 	  h   ;        rN            @   ;    `           4       ;              < Y  @         
> 	<               rN            @        `   @~       <         !      $<   `   K       -< K      << K       K      M< K       b< K   (   w< K   0   < K   8   h  F @   < *     9  o     Y  =    < `   @  _ v   <      m *    <      < *    @      < k   @  < `     < G     O2 `      p D    < `   @  L3  `     <    @  = G     *  	         A =        0      "  E @   "= ?      )=       4=      < k     >= F    E=    @  O= `     [= `      c=     j=   @  u= %     =        H/  0      "    @   4 q    u  t   = k       v    = v @  n_ K     h  F   = *      = K      =   @  "= ?     = G    = G     ]     = G      `      = `     = G     > `    	  > K   	  l x 	  3> *   
  D> *   
  M> *   @
  ^> `   
  + *     p>       z> h @  > G  @-  >   @.  > z  /  > | @/  > p /  > ~ /         D        C >   @    2M       I    >      `  `   @  ? K      K     ?   8   %  1M      G%  `   @         H !? 	  H   7? P     A? U @   Q? W    e? ]    p? a    }? c @  ? e   ? g   ? g           
J ?              
N     E     B     O        L        ?        M ?               
Q       
T     O        R        S       
        E        V ?             
X     E     Z        \ ?               
[        Y       
       E     _        ` @               ^       
       E     _     K          b       
_     E        d       
        _        f @ h  @  %  G      %@ H    6@ i   B@ G     <      L@     U@ G    ]@      d@ `     l@ *  @  @    `  @ E3    @ `      @      @ Q    @    	  @ `    
  @    
  @ `   
      @  A `     A `      A `     ,A     
  6A     
  AA    @
  KA    `
  &  j 
  VA   
  ^A K      kA K     xA K     A R  @  A G     A `      A l   A l   A l    A l @  A l   B l   B l     B l @  +B l   6B l   AB l    MB l @  YB l   eB l   qB l    |B l @  B l   B l   B l    B l @  B l   B l   B l    C l @  +C l   DC l   ]C l    }C l @  C l   C l   C l    C l @  C l   D l   D l    :D l @  OD l   fD l   vD l    D l @  D l   D l   D l    D l @  D l   E l   E l    4E l @  IE l   ^E l   yE l    E l @  E l   E l   E l     
F l @   (F T      8F T      FF K      ZF K      xF K      F K      F K      F K      F l  !  F T   @!  F T   `!  G _ !  G o !         G        K  G               k -G               
m        n >      JG     ^G    sG    G              6 `       G k      '  *     G      N       Y   @   G     G W    G W    d  W @  G    G    ~@     G  @  H    H    +H     <H  @  VH    eH    qH     H  @  
       _      H        ?      ws  ?   @  3;	 ?     = *          H    @  V             
r        s H   P   ,         *         H   @   "  E          H `      H G           u H               w H      H ,      H  @          y 
I               { I               }       
       E                      
       E     B               
        E     B               
        E     B     K                 
        v         'I   P    0      6I        "  E @   @      CI       Q             !G S  @  LI S    B S    ZI S     &  Ȉ 	  9,
 `   	  ,  Ɉ @
         
       
     E     Q                         
       E     B     T       T                        
       E     B            ;B                
     E     S                
     E     S      O                
                             
       B     E             @               
       B     E     T       *                
       B     E     T           `I                ̈     @  ͈ @                  
         oI   0   '  G      I 3     4 3  @  I       I      I  @   b  k                    
             g                        
                        I 
     I     I    I    I    I    I    J    J    J    )J 	   7J 
             L  -   @     -            <D  `      CJ `     ^  1     NJ 1    [J 1    q -   @  hJ -     rJ -                    
 J      J      CJ `   @   J      4     J 4    J 3     J    @                
                                            J      H ,      J  @   J 3    0  k     J   `   
       Y   @   0      J     1     v  @  F    K    G Ĉ    G ƈ @  ?                  
       
                       
            B               
             B               
                                           
S                            
                      
O                     
            S         È       
             S         ň K       '        p  2   @   ]  `                     ǈ !K    ˈ       
       E     k       B -K      =K    FK    QK    _K    lK            ʈ }K 
    D       M
 G  
  KX      K      K      K `      K     K     Q  O    K G   
  )  k      K    @  K K   `         
Έ        Έ        ψ               
 "  E ڧ  S  Q  O  L    ӈ       
O  (L Ј .L    Ո JL    Ո       
    (L ш 5   eL    lL    ؈       
   (L Ј f     L    ڈ L      L      L            
   /  B "  E    L    ߈       
K   (L Ј L           
    (L Ј M           
   (L Ј K    "M           
    (L Ј   S  8M           
   (L Ј   S  MM     `M           
   (L Ј tM     M     M     M     M     M           
Ј "  E   Q   N           
Ј "  E   Q   %  K   N           
   B  f     3N           
    B    S  MN           
   B    S  iN           
O  B  N           
    B  N           
   B  N           
    5   eL    B  N     N     drm_magic_t drm_mode_fb_cmd2 fb_id pixel_format pitches modifier drm_mode_create_dumb pitch drm_file stereo_allowed universal_planes aspect_ratio_allowed writeback_connectors was_master is_master master_lookup_lock lhead object_idr syncobj_idr syncobj_table_lock driver_priv fbs fbs_lock pending_event_list event_space event_read_lock drm_master unique unique_len magic_map lessor lessee_id lessee_list lessees leases lessee_idr drm_device if_version dev_private render driver_features unplugged anon_inode struct_mutex master_mutex filelist_mutex filelist_internal clientlist_mutex clientlist vblank_disable_immediate vblank_time_lock vbl_lock max_vblank_count vblank_event_list num_crtcs mode_config object_name_lock object_name_idr vma_offset_manager vram_mm switch_power_state fb_helper drm_modeset_acquire_ctx stack_depot trylock_only drm_modeset_lock drm_mode_config_funcs fb_create get_format_info output_poll_changed mode_valid atomic_check atomic_commit atomic_state_alloc atomic_state_clear atomic_state_free drm_framebuffer drm_format_info drm_mode_status drm_display_mode drm_atomic_state drm_mode_config connection_mutex acquire_ctx idr_mutex tile_idr fb_lock num_fb fb_list connector_list_lock num_connector connector_ida connector_list connector_free_list connector_free_work num_encoder encoder_list num_total_plane plane_list crtc_list property_list privobj_list min_width min_height max_width max_height fb_base poll_enabled poll_running delayed_event output_poll_work blob_lock property_blob_list edid_property dpms_property path_property tile_property link_status_property plane_type_property prop_src_x prop_src_y prop_src_w prop_src_h prop_crtc_x prop_crtc_y prop_crtc_w prop_crtc_h prop_fb_id prop_in_fence_fd prop_out_fence_ptr prop_crtc_id prop_fb_damage_clips prop_active prop_mode_id prop_vrr_enabled dvi_i_subconnector_property dvi_i_select_subconnector_property dp_subconnector_property tv_subconnector_property tv_select_subconnector_property tv_mode_property tv_left_margin_property tv_right_margin_property tv_top_margin_property tv_bottom_margin_property tv_brightness_property tv_contrast_property tv_flicker_reduction_property tv_overscan_property tv_saturation_property tv_hue_property scaling_mode_property aspect_ratio_property content_type_property degamma_lut_property degamma_lut_size_property ctm_property gamma_lut_property gamma_lut_size_property suggested_x_property suggested_y_property non_desktop_property panel_orientation_property writeback_fb_id_property writeback_pixel_formats_property writeback_out_fence_ptr_property hdr_output_metadata_property content_protection_property hdcp_content_type_property preferred_depth prefer_shadow prefer_shadow_fbdev quirk_addfb_prefer_xbgr_30bpp quirk_addfb_prefer_host_byte_order async_page_flip fb_modifiers_not_supported normalize_zpos modifiers_property cursor_width cursor_height suspend_state helper_private drm_property drm_mode_config_helper_funcs DRM_SWITCH_POWER_ON DRM_SWITCH_POWER_OFF DRM_SWITCH_POWER_CHANGING DRM_SWITCH_POWER_DYNAMIC_OFF final_kfree drm_driver postclose lastclose unload master_set master_drop gem_create_object prime_handle_to_fd prime_fd_to_handle gem_prime_import gem_prime_import_sg_table gem_prime_mmap dumb_create dumb_map_offset dumb_destroy patchlevel num_ioctls drm_minor kdev debugfs_list debugfs_lock drm_vblank_crtc drm_vma_offset_manager vm_lock vm_addr_space_mm drm_vram_mm drm_fb_helper drm_gem_object handle_count vma_node import_attach _resv drm_ioctl_desc drm_prime_file_private dmabufs drm_printer printfn puts drm_debug_category DRM_UT_CORE DRM_UT_DRIVER DRM_UT_KMS DRM_UT_PRIME DRM_UT_ATOMIC DRM_UT_VBL DRM_UT_STATE DRM_UT_LEASE DRM_UT_DP DRM_UT_DRMRES drm_mm_node hole_stack rb_hole_size rb_hole_addr hole_size subtree_max_hole drm_mm color_adjust head_node holes_size holes_addr scan_active drm_vma_offset_node vm_node vm_files drm_gem_object_funcs print_info get_sg_table drm_gem_lru drm_ioctl_t drm_ioctl_flags DRM_AUTH DRM_MASTER DRM_ROOT_ONLY DRM_UNLOCKED DRM_RENDER_ALLOW drm_gem_shmem_object pages_use_count madv madv_list pages_mark_dirty_on_put pages_mark_accessed_on_put vmap_lock vmap_use_count map_wc drm_gem_shmem_prime_import_sg_table shmem drm_gem_shmem_get_pages_sgt drm_gem_shmem_get_sg_table indent drm_gem_shmem_print_info drm_gem_shmem_mmap drm_gem_shmem_vm_close drm_gem_shmem_vm_open drm_gem_shmem_fault drm_gem_shmem_dumb_create drm_gem_shmem_purge drm_gem_shmem_purge_locked drm_gem_shmem_madvise drm_gem_shmem_vunmap drm_gem_shmem_vmap drm_gem_shmem_unpin drm_gem_shmem_pin drm_gem_shmem_put_pages drm_gem_shmem_put_pages_locked drm_gem_shmem_get_pages drm_gem_shmem_get_pages_locked drm_gem_shmem_free drm_gem_shmem_create __drm_gem_shmem_create drm_gem_shmem_object_mmap drm_gem_shmem_object_vunmap drm_gem_shmem_object_vmap drm_gem_shmem_object_get_sg_table drm_gem_shmem_object_unpin drm_gem_shmem_object_pin drm_gem_shmem_object_print_info drm_gem_shmem_object_free  drm_shmem_helper.ko Ts                                                                                                                     !                      
                      
                5     	                 S     	                q     	                     	                     	                      	 $                    	                     	                    	                .    
                N    
                i    
                    	                    
                    
                    
                    c              %                  2    o              K    {       	       a                  u           <                                     $           
                     
                                         
                    
 )               9                    V    
 *               x    
 B                                        
 C                   
 [                    H               &    
 \               B    
 n               `                    |    
 o                   
                     T                   
                    
                     `               1    
                P    
                q     l                   
                    
                                        
                    
                >     <               c    
                    
                     0                   
                    
               	                    -    
               L    
 &              m     T                   
 '                  
 :                   <                   
 ;                  
 T              -     $               P    
 U              u    
 p                   0                   
 q                  
               	     $               5	    
               c	    
               	     H               	                   	    @      x       	    @             
          X       )
                 I
                `
   !                 h
   !                 p
           `       
    `      <       
          4       
     	      )       
    P	      Q       
    
             
                 '    
             A                 [                   r                      !       0           Q                                                                                                      
                      .                                                            N       	                       `                                  (                     K
                 6                               9       O                                          c                     p                     v                                                                                                                                                             +                  T       w                   {    
             
                     #
                     4
                     D
                     [
                                          f
                     |
                     
                     
                     
                     7    P      r       	          a       j    	      V       
                     
                     
                                                               #                     8                     K                     V                     f                     s                     	                 H                                                     C    
                        =                                                                                            __crc_drm_gem_shmem_create __crc_drm_gem_shmem_free __crc_drm_gem_shmem_get_pages __crc_drm_gem_shmem_put_pages __crc_drm_gem_shmem_pin __crc_drm_gem_shmem_unpin __crc_drm_gem_shmem_vmap __crc_drm_gem_shmem_vunmap __crc_drm_gem_shmem_madvise __crc_drm_gem_shmem_purge_locked __crc_drm_gem_shmem_purge __crc_drm_gem_shmem_dumb_create __crc_drm_gem_shmem_vm_ops __crc_drm_gem_shmem_mmap __crc_drm_gem_shmem_print_info __crc_drm_gem_shmem_get_sg_table __crc_drm_gem_shmem_get_pages_sgt __crc_drm_gem_shmem_prime_import_sg_table __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 __kstrtab_drm_gem_shmem_create __kstrtabns_drm_gem_shmem_create __ksymtab_drm_gem_shmem_create __kstrtab_drm_gem_shmem_free __kstrtabns_drm_gem_shmem_free __ksymtab_drm_gem_shmem_free __kstrtab_drm_gem_shmem_get_pages __kstrtabns_drm_gem_shmem_get_pages __ksymtab_drm_gem_shmem_get_pages __kstrtab_drm_gem_shmem_put_pages __kstrtabns_drm_gem_shmem_put_pages __ksymtab_drm_gem_shmem_put_pages __kstrtab_drm_gem_shmem_pin __kstrtabns_drm_gem_shmem_pin __ksymtab_drm_gem_shmem_pin __kstrtab_drm_gem_shmem_unpin __kstrtabns_drm_gem_shmem_unpin __ksymtab_drm_gem_shmem_unpin __kstrtab_drm_gem_shmem_vmap __kstrtabns_drm_gem_shmem_vmap __ksymtab_drm_gem_shmem_vmap __kstrtab_drm_gem_shmem_vunmap __kstrtabns_drm_gem_shmem_vunmap __ksymtab_drm_gem_shmem_vunmap __kstrtab_drm_gem_shmem_madvise __kstrtabns_drm_gem_shmem_madvise __ksymtab_drm_gem_shmem_madvise __kstrtab_drm_gem_shmem_purge_locked __kstrtabns_drm_gem_shmem_purge_locked __ksymtab_drm_gem_shmem_purge_locked __kstrtab_drm_gem_shmem_purge __kstrtabns_drm_gem_shmem_purge __ksymtab_drm_gem_shmem_purge __kstrtab_drm_gem_shmem_dumb_create __kstrtabns_drm_gem_shmem_dumb_create __ksymtab_drm_gem_shmem_dumb_create __kstrtab_drm_gem_shmem_vm_ops __kstrtabns_drm_gem_shmem_vm_ops __ksymtab_drm_gem_shmem_vm_ops __kstrtab_drm_gem_shmem_mmap __kstrtabns_drm_gem_shmem_mmap __ksymtab_drm_gem_shmem_mmap __kstrtab_drm_gem_shmem_print_info __kstrtabns_drm_gem_shmem_print_info __ksymtab_drm_gem_shmem_print_info __kstrtab_drm_gem_shmem_get_sg_table __kstrtabns_drm_gem_shmem_get_sg_table __ksymtab_drm_gem_shmem_get_sg_table __kstrtab_drm_gem_shmem_get_pages_sgt __kstrtabns_drm_gem_shmem_get_pages_sgt __ksymtab_drm_gem_shmem_get_pages_sgt __kstrtab_drm_gem_shmem_prime_import_sg_table __kstrtabns_drm_gem_shmem_prime_import_sg_table __ksymtab_drm_gem_shmem_prime_import_sg_table drm_gem_shmem_get_pages_locked drm_gem_shmem_put_pages_locked drm_gem_shmem_fault drm_gem_shmem_vm_open drm_gem_shmem_object_print_info __drm_gem_shmem_create __key.1 __key.0 drm_gem_shmem_funcs drm_gem_shmem_vm_close drm_gem_shmem_object_unpin drm_gem_shmem_object_get_sg_table drm_gem_shmem_object_pin drm_gem_shmem_object_vunmap drm_gem_shmem_object_free drm_gem_shmem_object_mmap drm_gem_shmem_object_vmap __UNIQUE_ID_license350 __UNIQUE_ID_import_ns349 __UNIQUE_ID_description348 __UNIQUE_ID_import_ns329 .LC1 sme_me_mask ___drm_dbg vmf_insert_pfn drm_gem_get_pages dma_buf_vmap __this_module vm_get_page_prot sg_free_table invalidate_mapping_pages unmap_mapping_range dma_buf_mmap kfree drm_gem_create_mmap_offset drm_gem_object_init __fentry__ __x86_indirect_thunk_rax drm_gem_private_object_init refcount_warn_saturate set_pages_array_wb drm_gem_object_free drm_gem_vm_close drm_gem_vm_open drm_gem_object_release mutex_lock drm_gem_handle_create __mutex_init mutex_lock_interruptible drm_prime_pages_to_sg __default_kernel_pte_mask pgprot_writecombine __x86_return_thunk dma_buf_vunmap mutex_trylock vmemmap_base shmem_truncate_range set_pages_array_wc drm_printf dma_map_sgtable mutex_unlock drm_gem_free_mmap_offset dma_unmap_sg_attrs kmalloc_trace drm_gem_put_pages kmalloc_caches drm_prime_gem_destroy                               %          q   I             \             h                     t          m                                                                                (            :            A                                                                                                            /            ;         w   G         ~   w                                 y            {                           %            -            9            A            |                                 n                                                   0            <            Q            Z                   r            "       z                                           :                                                  Q                                                       D            x                                                        _                                                   r                                                       %                    ,            _       1            ?                    F            r       K            n            v                     ~                                              D                                           <                   A         m   M            a                                    9            K            a            |                                                                                    	            A	            o	            	            	            	            	            	            	            
            *
            V
            m
            
         |   
            
            
            
            
            
            	         ~   &            2         w   >         ~   W            g                                                                        $            G            g         w   o         ~                                                   

         v   9
         }   a
            p
            
            
            
            
                     r   ?            K            (       W         m            l                                                    '            ;            K            j                                            &                     '                     s                     8                     9                                          ,                      -           $                     (          J           ,          K           0                     4          >           8          ?           <                     @          ;           D          <           H                     L          )           P          *           T          z           X          /           \          0           `          o           d          2           h          3           l                     p          5           t          6                      x                                           !                     u                     A                     B                                          #                      $           $                     (          P           ,          Q           0          p           4          M           8          N           <                     @          G           D          H           H                     L          S           P          T           T                     X          D           \          E                                            `      (             @                                                         P	                                       	                                      
                   
                                                                                                      @                          (                   0                    8             @      @                   H             P      P                   X                   `                   h                   p             `      x             `                                      	                   
                   
                                                         
                                       K
                    C                                        H                                        9                                                         8                                             $             m      (                   ,             L      0                   4             	      8             	      <                   @                   D                   H             
                                                              !                    G                    H                    M                                                                    $                    (                    ,                    0                    4                    8                    <                    @                    D                    H                    L                   P                   T             /      X             0      \             4      `             6      d             >      h             @      l             S      p                   t                   x                   |                                                                                                                                                                                                                                                                                                                                                 7                   8                   =                   @                   G                   I                   K                   M                   N                   R                   V                                                                                                                                                                                                                                                                   8      $            9      (            ;      ,            @      0            H      4            P      8            W      <            b      @            e      D                  H                  L                  P                  T                  X                  \                  `                  d                  h                   l            (      p                  t                  x                  |                                                h                  i                  k                  m                  r                                                                                                                                                                                                                                           I                  J                  L                  Q                  `                  g                  h                  o                  s                                                                                                             Y                  `                  g                  h                  i                                                                               $                  (                  ,                  0                  4                  8                  <                  @                  D                  H                  L            	      P            	      T            	      X            	      \             	      `            I	      d            P	      h            R	      l            S	      p            Z	      t            	      x            	      |            	                  	                  	                  	                  	                  	                  	                  	                  	                  	                   
                  
                  
                  
                  
                  #
                  f
                  j
                  l
                  q
                  
                  
                  
                  
                  
                  
                  
                  
                  
                                                      
                                                                                                                                                                                            $                  (                  ,                  0                  4                  8                  <                  @                  D                  H                  L                  P                  T                  X                  \                  `                  d                  h                  l            
      p            
      t            
      x            
      |            
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  s                                                                         k                                        k                                        k           $                   (          k           0             @      4          k           <             D      @          k           H             
      L          k           T                   X          k           `             	      d          k           l             E	      p          k           x             	      |          k                        	                k                         
                k                        
                k                        
                k                        u                k                        y                k                        _                k                                        k                        T                k            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela__ksymtab .rela__ksymtab_gpl __kcrctab __kcrctab_gpl .rela.rodata __ksymtab_strings .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .modinfo .rela.retpoline_sites .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela__bug_table .data .gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                        @       $                              .                     d       <                              ?                                                         :      @               ؀      0      &                    J                     (      x                              E      @                           &                    Y                           `                              T      @               ؒ      @      &                    g                            (                              q                     (                                                          `                                           @                            &                          2               @                                        2                                                                                                                 @               8      (      &                          2               @      H                                                                                            @               `      0       &                                                                                                  f                                          @                            &                                        j      L                                    @                           &                                                                           !                    \                                        @               p            &                    0                                                          @                    +                                    ;     @                           &                    L                    ,                                     R                     -                    @               l                    0                                     q     0               0      P                             z                     0                                                          0      0                                                  a                                                          a      8      '   l                 	                      q                                                         ȴ                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  zkO,7qDTp/2L+n|v㻀E]L뒉/u#`#u|-Q?tOwzX7@}Uikǫj{Srɥ wݠǐ#{ua`t{*Vq׉9݂i-îO<ob6:۷5J/^rJ^lV!MZkl߀hˉro	YUkh4-
)         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    N          @     @ !            GNU o)z˔qV        Linux                Linux   6.1.0-35-amd64      ATH    AUHՉH    SH    Hp     HH    p    H    H    Hp  x( u	[]A\    L@ DH[H    ]H    A\    D      UH1SHH       HH    H       []         UH1SHH       HH    H   []    ff.         SHHH    xHtt~1[       H    1H    1ff.         SH    Ht?HH@(HHt~1[        1       1[                                                                 *CA8Wᄠ;|                                                                                                                                                                                        drm_gem_ttm_print_info  drm_gem_ttm_vmap  drm_gem_ttm_vunmap  drm_gem_ttm_mmap  drm_gem_ttm_dumb_map_offset  					X %.*splacement= 
 %.*sbus.offset=%lx
 system tt vram priv cached uncached wc contig pinned topdown                                                   license=GPL description=DRM gem ttm helpers depends=drm,ttm retpoline=Y intree=Y name=drm_ttm_helper vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                                                                                                                                                                                 Y    ww_mutex_unlock                                         m    __fentry__                                              |    drm_gem_object_lookup                                   _i    refcount_warn_saturate                                  b_I    ttm_bo_vunmap                                           w    drm_gem_object_free                                     7̠2    drm_print_bits                                          JW    ww_mutex_lock                                           9[    __x86_return_thunk                                      Rw(    drm_printf                                              -h    ttm_bo_mmap_obj                                         "    ttm_bo_vmap                                             e:X    module_layout                                                                                                   drm_ttm_helper                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0             e  ; 	  h   ;        rN            @   ;    `           4       ;             ; Y  @         
: ;               < <        0      "  @ @   < ?      <       #<      -< k     9< A    @<    @  J< `     V< `      ^<     e<   @  p< %     {<        H/  0      "    @   4 l    u  o   < k       q    < q @  n_ K     h  A   < *      < K      <   @  < ?     < G    < G     ]     < G      `      < `     < G     
= `    	  = K   	  l s 	  .= *   
  ?= *   
  H= *   @
  Y= `   
  + *     k=       u= c @  = G  @-  =   @.  = u  /  = w @/  = k /  = y /         ?        > =   @    2M       D    =      `  `   @  = K      K     >   8   %  1M      G%  `   @         C > 	  H   2> K     <> P @   L> R    `> X    k> \    x> ^ @  > `   > b   > b           
E >              
I     @     =     J        G        ;        H >               
L       
O     J        M        N       
        @        Q >             
S     @     U        W >               
V        T       
       @     Z        [ >               Y       
       @     Z     K          ]       
Z     @        _       
        Z        a ? h  @  %  G       ? C    1? d   =? G     G?      R?     [? G    c?      j? `     r? *  @  ?    `  ? E3    ? `      ?      ? Q    ?    	  ? `    
  ?    
  @ `   
      @  
@ `     @ `      %@ `     2@     
  <@     
  G@    @
  Q@    `
  &  e 
  \@   
  d@ K      q@ K     ~@ K     @ R  @  @ G     @ `      @ g   @ g   @ g    @ g @  @ g   A g   A g    &A g @  1A g   <A g   GA g    SA g @  _A g   kA g   wA g    A g @  A g   A g   A g    A g @  A g   A g   A g    B g @  1B g   JB g   cB g    B g @  B g   B g   B g    B g @  B g   
C g   "C g    @C g @  UC g   lC g   |C g    C g @  C g   C g   C g    C g @  C g   
D g   %D g    :D g @  OD g   dD g   D g    D g @  D g   D g   D g     E g @   .E T      >E T      LE K      `E K      ~E K      E K      E K      E K      E g  !  E T   @!  E T   `!  	F Z !  F j !         B        F &F               f 3F               
h        i =      PF     dF    yF    F              6 `       F k      '  *     F               
m        n F               p F               r F      F ,       G  @          t G               v G               x +G       7G }     ?G  @   b  k                    
        |     g         z        {       
        |               ~ DG 
             L  -   @     -            <D  `      PG `     ^  1     [G 1    hG 1    q -   @  uG -     G -                    
 G      G      PG `   @   G      4     G 4    G 3     G    @                
                                            G      F ,      G  @   G 3    0  k     G   `   
       Y   @   0      
H     1     v  @  F    H    G     G  @  ?                  
       
                 "H   P    0      1H        "  @ @   @      >H       Q             !G S  @  GH S    B S    UH S     &   	  9,
 `   	  ,   @
         
               
            =               
             =               
        |                                   
S                            
                      
O                     
            S                
             S                
                       [H       '        p  2   @   ]  `                      gH      sH     H    H    H   (   .       
   @   H     2                 
       
                               H 	  x   H K       H K      $   @          @      e2  *     H S  @  ,  ?   4
              H     D       $   
  *   
  H T   
  P   Ĉ    ,$  0  @  _    I ƈ    K      I ǈ @  I `     p(      
  T      
  $ O  @
         
         %I      /I        4I        
 T   @     T   `          
                 9I   H   L         I    @   
 T      FI T            
    ,  `                   
                            
K                      Q                 
             |         PI      `       &      [I     bI    jI u    ʈ   :  *   A  I `   @A  L `   A  vI   @B  %  R  B                  I      >  k       "  [   @   	F K      ;     I             l  @   I      x                          I      I     I    I          
                È I   0   KX        
 T   @   I T   `   $ O       N     J      ;  @         ň         J       K       #J K      /J K      AJ K      QJ K       B S  @   ]J      iJ   8    ˈ     
    @   ;  `   wJ `      '  *     KX  `   @  J   H  "        J K   @   J K   H   ; Έ           ʈ       h  J ͈                Ɉ                  ̈       J   p   J ш     J Ԉ @   J ֈ    J ֈ    J ؈    K ܈ @  H ߈   K Ĉ   -K Ĉ    9K  @  HK    TK    _K     mK Ĉ @        
ƈ          T          Ј       
            ƈ     ӈ        Ȉ        ҈       
             ƈ        Ո       
K                    ׈       
             ڈ        ۈ |K       K        FI  @   K       K            و       
            K       ӈ          ވ                ݈       
                           
                            
                             
                   k                                ψ                                              
                       
   /  = "  @ @~ T   "  *  K           
   K  f     K           
    K    S  K           
   K    S  K           
    5  | L    K  L            
t                 
          
 drm_mode_fb_cmd2 fb_id pixel_format pitches modifier drm_file drm_master unique unique_len magic_map driver_priv lessor lessee_id lessee_list lessees leases lessee_idr drm_device if_version dev_private render driver_features unplugged anon_inode struct_mutex master_mutex filelist_mutex filelist_internal clientlist_mutex clientlist vblank_disable_immediate vblank_time_lock vbl_lock max_vblank_count vblank_event_list num_crtcs mode_config object_name_lock object_name_idr vma_offset_manager vram_mm switch_power_state fb_helper drm_modeset_acquire_ctx stack_depot trylock_only drm_modeset_lock drm_mode_config_funcs fb_create get_format_info output_poll_changed mode_valid atomic_check atomic_commit atomic_state_alloc atomic_state_clear atomic_state_free drm_framebuffer drm_format_info drm_mode_status drm_display_mode drm_atomic_state drm_mode_config connection_mutex acquire_ctx idr_mutex object_idr tile_idr fb_lock num_fb fb_list connector_list_lock num_connector connector_ida connector_list connector_free_list connector_free_work num_encoder encoder_list num_total_plane plane_list crtc_list property_list privobj_list min_width min_height max_width max_height fb_base poll_enabled poll_running delayed_event output_poll_work blob_lock property_blob_list edid_property dpms_property path_property tile_property link_status_property plane_type_property prop_src_x prop_src_y prop_src_w prop_src_h prop_crtc_x prop_crtc_y prop_crtc_w prop_crtc_h prop_fb_id prop_in_fence_fd prop_out_fence_ptr prop_crtc_id prop_fb_damage_clips prop_active prop_mode_id prop_vrr_enabled dvi_i_subconnector_property dvi_i_select_subconnector_property dp_subconnector_property tv_subconnector_property tv_select_subconnector_property tv_mode_property tv_left_margin_property tv_right_margin_property tv_top_margin_property tv_bottom_margin_property tv_brightness_property tv_contrast_property tv_flicker_reduction_property tv_overscan_property tv_saturation_property tv_hue_property scaling_mode_property aspect_ratio_property content_type_property degamma_lut_property degamma_lut_size_property ctm_property gamma_lut_property gamma_lut_size_property suggested_x_property suggested_y_property non_desktop_property panel_orientation_property writeback_fb_id_property writeback_pixel_formats_property writeback_out_fence_ptr_property hdr_output_metadata_property content_protection_property hdcp_content_type_property preferred_depth prefer_shadow prefer_shadow_fbdev quirk_addfb_prefer_xbgr_30bpp quirk_addfb_prefer_host_byte_order async_page_flip fb_modifiers_not_supported normalize_zpos modifiers_property cursor_width cursor_height suspend_state helper_private drm_property drm_mode_config_helper_funcs DRM_SWITCH_POWER_ON DRM_SWITCH_POWER_OFF DRM_SWITCH_POWER_CHANGING DRM_SWITCH_POWER_DYNAMIC_OFF final_kfree drm_driver drm_minor drm_vblank_crtc drm_vma_offset_manager vm_lock vm_addr_space_mm drm_vram_mm drm_fb_helper drm_printer printfn puts drm_mm_node hole_stack rb_hole_size rb_hole_addr hole_size subtree_max_hole drm_mm color_adjust head_node holes_size holes_addr scan_active drm_vma_offset_node vm_node vm_files drm_gem_object_funcs print_info get_sg_table drm_gem_object handle_count vma_node import_attach _resv drm_gem_lru ttm_caching ttm_uncached ttm_write_combined ttm_cached ttm_resource_manager_func intersects ttm_resource_manager use_type use_tt move ttm_buffer_object page_alignment ttm bulk_move ddestroy ttm_place fpfn lpfn ttm_resource placement ttm_device sysman man_drv vma_manager dev_mapping ttm_bus_placement ttm_lru_bulk_move_pos ttm_lru_bulk_move ttm_bo_type ttm_bo_type_device ttm_bo_type_kernel ttm_bo_type_sg ttm_tt swap_storage ttm_operation_ctx no_wait_gpu gfp_retry_mayfail allow_res_evict force_alloc bytes_moved ttm_pool_type shrinker_list ttm_pool use_dma_alloc use_dma32 orders ttm_device_funcs ttm_tt_create ttm_tt_populate ttm_tt_unpopulate ttm_tt_destroy eviction_valuable evict_flags delete_mem_notify swap_notify io_mem_reserve io_mem_free io_mem_pfn access_memory release_notify ttm_placement num_placement num_busy_placement busy_placement drm_gem_ttm_dumb_map_offset gem drm_gem_ttm_mmap drm_gem_ttm_vunmap drm_gem_ttm_vmap indent drm_gem_ttm_print_info    drm_ttm_helper.ko                                                                                                                                       5                     N                     e                           ,                           @           <                   H       	            Q                   e       <                                     $           
                 8    
                [                    |    
                    
 )                    $                   
 *                   
 =                    0               (    
 >               C    
 O               `                    {    
 P                   
 l                                                                                                        =                  4       *                  8                     H                     S                     j          T       i                                                                                                                                                                            p      _                            e                    __crc_drm_gem_ttm_print_info __crc_drm_gem_ttm_vmap __crc_drm_gem_ttm_vunmap __crc_drm_gem_ttm_mmap __crc_drm_gem_ttm_dumb_map_offset __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 __kstrtab_drm_gem_ttm_print_info __kstrtabns_drm_gem_ttm_print_info __ksymtab_drm_gem_ttm_print_info __kstrtab_drm_gem_ttm_vmap __kstrtabns_drm_gem_ttm_vmap __ksymtab_drm_gem_ttm_vmap __kstrtab_drm_gem_ttm_vunmap __kstrtabns_drm_gem_ttm_vunmap __ksymtab_drm_gem_ttm_vunmap __kstrtab_drm_gem_ttm_mmap __kstrtabns_drm_gem_ttm_mmap __ksymtab_drm_gem_ttm_mmap __kstrtab_drm_gem_ttm_dumb_map_offset __kstrtabns_drm_gem_ttm_dumb_map_offset __ksymtab_drm_gem_ttm_dumb_map_offset plname.0 __UNIQUE_ID_license291 __UNIQUE_ID_description290 __this_module ww_mutex_unlock __fentry__ drm_gem_object_lookup refcount_warn_saturate ttm_bo_vunmap drm_gem_object_free drm_print_bits ww_mutex_lock __x86_return_thunk drm_printf ttm_bo_mmap_obj ttm_bo_vmap                  '   
                                         #          0   9                     A          -   H                    P          0   f          /   x                                                   0             '             .             3             &             /             '             .             +             &            '             1   C         /   P         *   \         ,   q         '   |         (            /            ,            *            /              2                                                               )                                                               4                                                      $          #           (                     ,                     0          $           4                     8                                   ,                    3                    6                    ;                    @                    G                    P                    S                    Z                    a                                                                                                      p                    2                                       e                                        B                                                                                                                                           b                    c                    e                    j                     u       $             }       (                    ,                    0                    4                    8                    <                    @                    D                    H                    L                    P                    T                    X                    \                   `                   d                   h             B      l             G      p             d      t             p      x             v      |                                                                             .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela__ksymtab __kcrctab .rela.rodata __ksymtab_strings .rodata.str1.1 .rela__mcount_loc .rela.smp_locks .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .data .gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                       @       $                              .                     d       <                              ?                                                         :      @               C                                 J                     p      <                              E      @               F      h                          T                                                         c                                                          ^      @               PH                                 k      2               x      m                             }      2                     i                                                  N      (                                    @               @I      x                                                x                                          @               I      0                                                                                                         !                                          @               I      x                                                5                                                                                                   @               `J      H                                                     @                                                   	                                                           
                    @                                   
                                          0               
      P                             #                     
                                     3                     
      -                             8                     :                                                          :               #                 	                      ?                                                         M      G                             0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  Sp\kXkM@Eŏar5 }*k~L<vZnZ8]8EoVN sP),uCZf[=@&牕|Lj"yqx}ZYeJRʼ}>O=/yj:^~r[Yǂ[10 i]WD!:ZGP&lBmۻ9}dc9"O%u5g4cꭃq^dU         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >                              @     @ ) (          GNU 33 @@{        Linux                Linux   6.1.0-35-amd64      HH   HHVHPHVHP    f            |  ~(   	 1 ~H   Hx    ff.     @     1    @     1    @     S1ɺ   HH@t$Ht$eH%(   HD$1D$               Ht$H        D$HT$eH+%(   u
H[        ff.     f    H   	   Z    f.         USH   HH}    H    H[]    @     AT   IUS1L   L	   L   L	u	                ff.         ATI
  UHպ@   SHhH=    eH%(   HD$`1    H   HH|$(   HH   9   9   H$    f$1HEx    Il$HD$    HD$$    HD$X    HfT$&HHsil164     HD$HD$    D$         u4Ht$H    H= v.1HT$`eH+%(   u"Hh[]A\            1HC             1    @     ATUSH      L   LD HHuLeMt   LD0HHu[]A\    ff.     f    AUATUS   HH   L   eH%(   HD$1D%    D1ɺ   L؊d Ht$fD$        HHuLmMt9   D1ɺ   L؊d0Ht$fD$        HHuHD$eH+%(   uH[]A\A]        ff.         ATUSHL   H   eH%(   HD$1u(HGP       H      H11ɺ   Ht$HD$D$        Il$Ht?   HKHHt$D$E1ɺ   D$        HD$eH+%(   u$H[]A\       H   G        ATAUHSHHNeH%(   HD$1>FHt$D$2	1	к   D$        1ɺ   Ht$H    fD$        EHt$HD$
P1	к   D$        }   H Ht$1D$D$        1ɺ   Ht$H    fD$        EtNE1ɺ   Ht$HD$
D$        HD$eH+%(   u6H[]A\    1ɺ   Ht$H    fD$    y        f.         ATE1USH   H: H   AHDH}HtDH
H1[]A\L$H{ H        1    AI|$       H        1[]A\    PIt$ AAH    H    H        X    HupH    H    H            I} ىH            I} ىH            H}    H            H}    H            H{ 
   H            H{    H            H{    H            H{ 
   H            H{ 	   H            H{    H            H{ 
   H                H    H        H                            sil164_probe    sil164_detect_slave                             sil164                                                                                                                                                                                                                                                                                          Error %d reading from subaddress 0x%x
  Error %d writing to subaddress 0x%x
 %s: Unknown device %x:%x.%x
 7 Detected device %x:%x.%x
 %s: No dual-link slave found. sil164 license=GPL and additional rights description=Silicon Image sil164 TMDS transmitter driver author=Francisco Jerez <currojerez@riseup.net> alias=i2c:sil164 depends=drm_kms_helper,drm retpoline=Y intree=Y name=sil164 vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions     	! 
                                                                                                     (            (                                                                                                                                                     (  8  (                 8                     0               0               0               0                                     (                    (       8  0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              z    kfree                                                   j    i2c_transfer_buffer_flags                               m    __fentry__                                              }:    drm_i2c_encoder_destroy                                 d65i    __drm_debug                                             V
    __stack_chk_fail                                        o    _dev_info                                               E    i2c_register_driver                                     Ë    _dev_err                                                (    i2c_unregister_device                                   1    i2c_new_client_device                                   9[    __x86_return_thunk                                      3    i2c_transfer                                                 kmalloc_trace                                           y    i2c_del_driver                                          'M    _dev_printk                                             1Y    kmalloc_caches                                          e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                   sil164                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         ;  ;  '         
t             :              
; ; 
     ;     ;     <    6<    Q<    l<    <    <    < 	   < 
   =    #=    @=    _= 	  h   p=        rN            @   v=    `           4       =             = Y  @         
> =               rN            @        `   @~       =         !      =               A =        0      "  E @   = ?      =       =      = k     = F    =    @  = `     > `      >     >   @  "> %     ->        H/  0      "    @   4 q    u  t   8> k       v    D> v @  n_ K     h  F   K> *      [> K      e>   @  = ?     p> G    }> G     ]     > G      `      > `     > G     > `    	  > K   	  l x 	  > *   
  > *   
  > *   @
  ? `   
  + *     ?       '? h @  3? G  @-  D?   @.  T? z  /  g? | @/  o? p /  ? ~ /         D        C ?   @    2M       I    ?      `  `   @  ? K      K     ?   8   %  1M      G%  `   @         H ? 	  H   ? P     ? U @   ? W    @ ]    @ a    *@ c @  8@ e   K@ g   ^@ g           
J p@              
N     E     B     O        L        ?        M @               
Q       
T     O        R        S       
        E        V @ (     @     @    @    @    @    @    @    @    	A    A 	   (A 
   1A    @A    OA 
   ]A    jA    zA    A    A    A    A    A    A    A    A    B    !B    1B    DB    UB    `B    uB    B     B !   B "   B #   B $   B B B       
X     E     Z        \ B "  x   k          B &       C &   0   C &   @    &   P   C &   `   "C &   p   +C &      7C &       &      AC &        *      GC       RC &      `C &     rC &      C &   0  C &   @  C &   P  C &   `  C &   p  C &     C &     C &     C &     	D &     D &     D &     *  $     (D K     G%  `               X   <D E           
[        Y       
       E     _        ` QD               ^       
       E     _     K          b       
_     E        d       
        _        f bD h  @  %  G      rD H    D i   D G     D      D     D G    D      D `     D *  @  D    `  D E3    D `      E      E Q    +E    	  7E `    
  DE    
  TE `   
      @  _E `     iE `      wE `     E     
  E     
  E    @
  E    `
  &  j 
  E   
  E K      E K     E K     E R  @  E G     E `      F l   F l   (F l    6F l @  DF l   YF l   mF l    xF l @  F l   F l   F l    F l @  F l   F l   F l    F l @  F l   F l   G l    G l @  &G l   3G l   DG l    `G l @  G l   G l   G l    G l @  G l   G l   H l    .H l @  HH l   _H l   tH l    H l @  H l   H l   H l    H l @  H l   I l   %I l    ?I l @  LI l   _I l   wI l    I l @  I l   I l   I l    I l @  J l   ,J l   IJ l     eJ l @   J T      J T      J K      J K      J K      J K      K K      K K      -K l  !  @K T   @!  MK T   `!  [K _ !  iK o !         G        K xK   x   G%  `       D        T            K T     ƃ *    "  E    K `   @         k K               
m        n o?      K     K    K    K              6 `       L k      '  *     #L      N       Y   @   .L     8L W    BL W    d  W @  IL    TL    ~@     `L  @  rL    L    L     L  @  L    L    L     L  @  
       _      L        ?      ws  ?   @  3;	 ?     K> *          M    @  V             
r        s M               u M               w +M               y BM               { NM               }       
       E                      
       E     B               
        E     B               
        E     B     K                 
        v         \M              
     E     Q                         
       E     B     T       T                        
       E     B            ;B                
     E     S                
     E     S      O                
                             
       B     E             @               
       B     E     T       *                
       B     E     T           kM               
         zM       [   T       *  T       X  @     0     M S     M     p         X  @   ƃ  @                     l                          M      y	        ~	       	       	        M    0            M      M      ~	                 M      M     N    N    &N    ;N      PN    kN    N    N      N     N    N    O      !O     1O    GO    ]O    qO    O    O      Ѥ K       O K      O      Ѥ K       O K      O     O 	     O K       a2 K      O K      O $      O $       P    @   P $   `   P $   h   2P $   p   EP   h   SP      XP X  @   gP X  @  wP -   @  P $     P $     P $     P    P      P     P    P      P &       P &      P      Q *       &Q *       4Q      NQ     fQ    }Q    Q    Q      D        D        Q    @   O  `   Q       Q *      Q      Q       u *      R    @  R K   `  #R K   h  +R K   p  >R K   x  YR $     sR $     R $     p    R K      R    R  @  R $     R $     R *     R      	        Q        PL    @   f	    `   	S 	  0    S =     n      !        @       -S       6S       HS       QS    @  \S    `  `S      s	      tS  @   yS     S     W  _       @  
    S K      <D E     $	    @  S    `  S      S       *     S È    S $   @  S $   H  S  `  T ň          
 +T A    "  E     9T   @     ?     7       G%  `      >T `     D        ?      %  G  @  ,     @  ZT    `  iT      {T K     T K     T K     T K     T     `           T `     T  @  &      T ň @  X    H l   T l    U l @  %U ň   3U l   DU     SU e  @  kU l    U l @  U )          iK    U         U K     U -      U *   @  U    U 6    U 7  #  V 9   #  V 9    $  'V U  $  +V    $  =V    $  NV K    %  [V $   %  nV   @%  W  Ո %  |V ň %  V K    &  V  @&  V K   &  V )  &  V )  &  V )  &  V )  &  V   &  V   &  V !   '  M  @'          W      "  E     i    @   G%  `        ?      %  H @  D            d$  @  ,       
	      
	        K     !  [    W [          d	      &  J   W T    
  W   @
  iK M 
  X  
  *W l    W  3 @  BW `     NW *     nV   @  	    ZW      hW *    sW       W    @  W O @          W   x   "  E     G%  `   @   D        ?     W       ,        W T   @  W T   `  tS    W `     &  X @  iK [           W                W                X   X   D       "  E    X `   @  $X `       Q   @    k            Ĉ .X       Ɉ     B ˈ @   JB	 ͈     ˈ    BX ψ    
 ш @  MX ӈ   [X ˈ   P   ˈ    lX ֈ @  X ؈   X ڈ   X ݈    X  @  X ˈ   ~@           
ƈ       
                      Ȉ       
                ʈ       
          K          ̈       
            T       T          Έ       
            l              Ј       
               ҈       
Ո                     Ԉ       
             Ո        ׈       
            Ո     l              و       
            ܈     l     *                 ۈ       
        ߈     ܈         X       X u     X w @   b  k                     ވ       
                       X   T             K      Y K     !Y K                @      `  a      ^  K     I K     /Y K     n K         3Y      Q      GY            ǈ RY                eY               
         Y         0      "  E @   [         γ              Y      Y     Y    Y    Y    Y      Z     *Z    EZ    YZ      (        (        (    @   (    `   bZ      uZ     Z    Z      Z      tS  @   ( N    GH S     Z S      Z S      Z T   @  Z T   `  Z T     Z T     Z T     Z T     Z &      [     e4       [    @  [    `  *[    9[    E[ ň   #      #      K      U[        @  W  _          
 d[     "  E     G%  `   @     ?      %  H    D     W T     n[ ;B     {[    @  [ K   `  [ *    [      tS     ( N @  [ N   &     X     *   @  ,     `  iK    W      [ l    [ l @  [ l   [ l   [ l    \ l @  *W l           '\ 
  h   7\      D\  @   P       B     
     lX  @  X    X    X     MX 
 @  [X    X    R\            
       
                 N                                 T       T       T       T       i               
            i               
                       
            l                     
                             
                             
                  l                     
                 l     *                        
               	       
        ߈                    
K            T                
 g\      v\     \    \            \               
         \   0   \ K        T          @              T      
   \ 	  H   '  *           @   ] K       K            G%        ~        
] Q   @  %  D            ]   P  tS      $ K   @   D  K   H   $] K   P  3] K   Q  @] K   R  O] K   S  b] K   T  o] K   U  ] K   V  ] *   `   ] *      ] *      ] [    !  [   ] ň @  ] ň   ] ň   ] ň  	  ] *   @	  ] K   `	  ] K   h	  
^ K   p	  U[  	  @   	      
  W  _ @
         
 ^                7^      B      F^ ! @   Q^ #    ]^ %    i^ '    P    @  < +   s^ -   }^ /    
 1 @  lX 4   X 6   X 8    X ; @  MX =   [X    ^ ?    ^ A @  ^ C   X E   ^ G    ^ = @  ^    ^ I          
       
                       
            B     T       T       T                  
            B     T       T       T       S       S          "       
                             $       
            '      '      '      T       i        &       
       )     i        * _   0   ( N     tS  @   !  P      T      d	 T      _ Q    _ Q   @         (       
            N          T       i        ,       
            N          T       T       i        .       
            l              0       
3                     2       
             3        5       
            3     l              7       
            :     l     *                 9       
               <       
                      >       
                            @       
9                    B       
        ߈     :        D       
*               F       
K                          K          H         +_               
K        L A_               N        [         W_       B U     P   U @   MX W    [X U           
R       
                T       
               V        S i_               
Y        Z _   `   < _     P   U @    a    b U    (  U    _ c @  @ e   _ g   JB	 i    _ k @  _ k   
 m          
\       
             k          ^       
                       `       
K            Z     P        b       
            P        d       
             P     P        f       
                  h       
                    j       
                 l              l _      D       _ o   _ k      _ k   @         ] _      "	
       ` s         
       U      E     r        n        q       
        ߈     g         t       
        ߈               v ` 
     2`     >`    L`    W`    d`    r`    }`    `    `    ` 	            `     `             `     `             a     -a             Da     Ya    oa      a y     a z     a { @   a | `   a       a       a   @   L }     a U      ߕ     a ߕ                              
        ~        }            )               p a       b    x         
   
 U  "  E U r b     $b           
    U  1b           
   U  s	  E l     Hb           
   U  s	  db     b           
 U  s	  b           
    U  !  P ] P b           
   U  !  P b     b     b           
    U  !     c           
    U  G k   $c           
    
 U  L  >c K   Gc           
)  
 U  >  )  Yc     drm_mode_subconnector DRM_MODE_SUBCONNECTOR_Automatic DRM_MODE_SUBCONNECTOR_Unknown DRM_MODE_SUBCONNECTOR_VGA DRM_MODE_SUBCONNECTOR_DVID DRM_MODE_SUBCONNECTOR_DVIA DRM_MODE_SUBCONNECTOR_Composite DRM_MODE_SUBCONNECTOR_SVIDEO DRM_MODE_SUBCONNECTOR_Component DRM_MODE_SUBCONNECTOR_SCART DRM_MODE_SUBCONNECTOR_DisplayPort DRM_MODE_SUBCONNECTOR_HDMIA DRM_MODE_SUBCONNECTOR_Native DRM_MODE_SUBCONNECTOR_Wireless drm_mode_fb_cmd2 fb_id pixel_format pitches modifier drm_mode_create_dumb pitch drm_file drm_master unique unique_len magic_map driver_priv lessor lessee_id lessee_list lessees leases lessee_idr drm_device if_version dev_private render driver_features unplugged anon_inode struct_mutex master_mutex filelist_mutex filelist_internal clientlist_mutex clientlist vblank_disable_immediate vblank_time_lock vbl_lock max_vblank_count vblank_event_list num_crtcs mode_config object_name_lock object_name_idr vma_offset_manager vram_mm switch_power_state fb_helper drm_modeset_acquire_ctx stack_depot trylock_only drm_modeset_lock drm_mode_config_funcs fb_create get_format_info output_poll_changed mode_valid atomic_check atomic_commit atomic_state_alloc atomic_state_clear atomic_state_free drm_framebuffer drm_format_info drm_mode_status MODE_OK MODE_HSYNC MODE_VSYNC MODE_H_ILLEGAL MODE_V_ILLEGAL MODE_BAD_WIDTH MODE_NOMODE MODE_NO_INTERLACE MODE_NO_DBLESCAN MODE_NO_VSCAN MODE_MEM MODE_VIRTUAL_X MODE_VIRTUAL_Y MODE_MEM_VIRT MODE_NOCLOCK MODE_CLOCK_HIGH MODE_CLOCK_LOW MODE_CLOCK_RANGE MODE_BAD_HVALUE MODE_BAD_VVALUE MODE_BAD_VSCAN MODE_HSYNC_NARROW MODE_HSYNC_WIDE MODE_HBLANK_NARROW MODE_HBLANK_WIDE MODE_VSYNC_NARROW MODE_VSYNC_WIDE MODE_VBLANK_NARROW MODE_VBLANK_WIDE MODE_PANEL MODE_INTERLACE_WIDTH MODE_ONE_WIDTH MODE_ONE_HEIGHT MODE_ONE_SIZE MODE_NO_REDUCED MODE_NO_STEREO MODE_NO_420 MODE_STALE MODE_BAD MODE_ERROR drm_display_mode hdisplay hsync_start hsync_end hskew vdisplay vsync_start vsync_end vscan crtc_clock crtc_hdisplay crtc_hblank_start crtc_hblank_end crtc_hsync_start crtc_hsync_end crtc_htotal crtc_hskew crtc_vdisplay crtc_vblank_start crtc_vblank_end crtc_vsync_start crtc_vsync_end crtc_vtotal width_mm height_mm expose_to_userspace picture_aspect_ratio drm_atomic_state drm_mode_config connection_mutex acquire_ctx idr_mutex object_idr tile_idr fb_lock num_fb fb_list connector_list_lock num_connector connector_ida connector_list connector_free_list connector_free_work num_encoder encoder_list num_total_plane plane_list crtc_list property_list privobj_list min_width min_height max_width max_height fb_base poll_enabled poll_running delayed_event output_poll_work blob_lock property_blob_list edid_property dpms_property path_property tile_property link_status_property plane_type_property prop_src_x prop_src_y prop_src_w prop_src_h prop_crtc_x prop_crtc_y prop_crtc_w prop_crtc_h prop_fb_id prop_in_fence_fd prop_out_fence_ptr prop_crtc_id prop_fb_damage_clips prop_active prop_mode_id prop_vrr_enabled dvi_i_subconnector_property dvi_i_select_subconnector_property dp_subconnector_property tv_subconnector_property tv_select_subconnector_property tv_mode_property tv_left_margin_property tv_right_margin_property tv_top_margin_property tv_bottom_margin_property tv_brightness_property tv_contrast_property tv_flicker_reduction_property tv_overscan_property tv_saturation_property tv_hue_property scaling_mode_property aspect_ratio_property content_type_property degamma_lut_property degamma_lut_size_property ctm_property gamma_lut_property gamma_lut_size_property suggested_x_property suggested_y_property non_desktop_property panel_orientation_property writeback_fb_id_property writeback_pixel_formats_property writeback_out_fence_ptr_property hdr_output_metadata_property content_protection_property hdcp_content_type_property preferred_depth prefer_shadow prefer_shadow_fbdev quirk_addfb_prefer_xbgr_30bpp quirk_addfb_prefer_host_byte_order async_page_flip fb_modifiers_not_supported normalize_zpos modifiers_property cursor_width cursor_height suspend_state helper_private drm_property num_values enum_list drm_mode_config_helper_funcs DRM_SWITCH_POWER_ON DRM_SWITCH_POWER_OFF DRM_SWITCH_POWER_CHANGING DRM_SWITCH_POWER_DYNAMIC_OFF final_kfree drm_driver postclose lastclose unload master_set master_drop gem_create_object prime_handle_to_fd prime_fd_to_handle gem_prime_import gem_prime_import_sg_table gem_prime_mmap dumb_create dumb_map_offset dumb_destroy patchlevel num_ioctls drm_minor drm_vblank_crtc drm_vma_offset_manager drm_vram_mm drm_fb_helper drm_gem_object drm_ioctl_desc drm_mode_object free_cb drm_object_properties hdr_static_metadata min_cll hdmi_type1 hdr_sink_metadata drm_connector_force DRM_FORCE_UNSPECIFIED DRM_FORCE_OFF DRM_FORCE_ON DRM_FORCE_ON_DIGITAL drm_connector_status connector_status_connected connector_status_disconnected connector_status_unknown drm_connector_registration_state DRM_CONNECTOR_INITIALIZING DRM_CONNECTOR_REGISTERED DRM_CONNECTOR_UNREGISTERED subpixel_order SubPixelUnknown SubPixelHorizontalRGB SubPixelHorizontalBGR SubPixelVerticalRGB SubPixelVerticalBGR SubPixelNone drm_scrambling low_rates drm_scdc read_request scrambling drm_hdmi_dsc_cap v_1p2 all_bpp bpc_supported max_slices clk_per_slice max_lanes max_frl_rate_per_lane total_chunk_kbytes drm_hdmi_info scdc y420_vdb_modes y420_cmdb_modes y420_cmdb_map y420_dc_modes dsc_cap drm_link_status DRM_LINK_STATUS_GOOD DRM_LINK_STATUS_BAD drm_monitor_range_info min_vfreq max_vfreq drm_luminance_range_info min_luminance max_luminance drm_privacy_screen_status PRIVACY_SCREEN_DISABLED PRIVACY_SCREEN_ENABLED PRIVACY_SCREEN_DISABLED_LOCKED PRIVACY_SCREEN_ENABLED_LOCKED drm_display_info bpc panel_orientation color_formats bus_formats num_bus_formats max_tmds_clock dvi_dual is_hdmi has_hdmi_infoframe rgb_quant_range_selectable edid_hdmi_rgb444_dc_modes edid_hdmi_ycbcr444_dc_modes cea_rev non_desktop monitor_range luminance_range mso_stream_count mso_pixel_overlap max_dsc_bpp drm_connector_tv_margins drm_tv_connector_state subconnector contrast flicker_reduction overscan saturation hue drm_connector_state crtc best_encoder link_status self_refresh_aware hdcp_content_type scaling_mode content_protection writeback_job max_requested_bpc max_bpc privacy_screen_sw_state hdr_output_metadata drm_connector kdev global_connector_list_entry connector_type connector_type_id interlace_allowed doublescan_allowed stereo_allowed ycbcr_420_allowed registration_state probed_modes display_info edid_blob_ptr vrr_capable_property colorspace_property path_blob_ptr max_bpc_property privacy_screen privacy_screen_notifier privacy_screen_sw_state_property privacy_screen_hw_state_property polled cmdline_mode override_edid epoch_counter possible_encoders encoder eld latency_present video_latency audio_latency ddc null_edid_counter bad_edid_counter edid_corrupt real_edid_checksum debugfs_entry tile_blob_ptr has_tile tile_group tile_is_single_monitor num_h_tile num_v_tile tile_h_loc tile_v_loc tile_h_size tile_v_size free_node drm_crtc hwmode gamma_size gamma_store scaling_filter_property commit_list commit_lock fence_context fence_lock fence_seqno timeline_name self_refresh_data drm_encoder encoder_type possible_crtcs possible_clones bridge_chain drm_crtc_commit drm_writeback_job drm_property_blob head_global head_file drm_connector_funcs fill_modes late_register early_unregister atomic_duplicate_state atomic_destroy_state atomic_set_property atomic_get_property atomic_print_state oob_hotplug_event drm_printer printfn puts drm_cmdline_mode refresh_specified bpp_specified cvt rotation_reflection tv_margins drm_privacy_screen drm_connector_helper_funcs drm_tile_group drm_color_encoding DRM_COLOR_YCBCR_BT601 DRM_COLOR_YCBCR_BT709 DRM_COLOR_YCBCR_BT2020 DRM_COLOR_ENCODING_MAX drm_color_range DRM_COLOR_YCBCR_LIMITED_RANGE DRM_COLOR_YCBCR_FULL_RANGE DRM_COLOR_RANGE_MAX drm_rect drm_scaling_filter DRM_SCALING_FILTER_DEFAULT DRM_SCALING_FILTER_NEAREST_NEIGHBOR drm_plane_state plane crtc_x crtc_y crtc_w crtc_h src_x src_y src_h src_w alpha pixel_blend_mode zpos normalized_zpos color_encoding color_range fb_damage_clips scaling_filter drm_plane format_types format_count format_default modifiers modifier_count old_fb alpha_property zpos_property rotation_property blend_mode_property color_encoding_property color_range_property drm_plane_funcs update_plane disable_plane format_mod_supported drm_plane_type DRM_PLANE_TYPE_OVERLAY DRM_PLANE_TYPE_PRIMARY DRM_PLANE_TYPE_CURSOR drm_plane_helper_funcs drm_crtc_crc_entry has_frame_counter drm_crtc_crc opened values_cnt drm_crtc_state planes_changed mode_changed active_changed connectors_changed zpos_changed color_mgmt_changed no_vblank plane_mask connector_mask encoder_mask adjusted_mode mode_blob degamma_lut ctm gamma_lut target_vblank async_flip vrr_enabled self_refresh_active drm_pending_vblank_event drm_crtc_funcs cursor_set cursor_set2 cursor_move gamma_set page_flip page_flip_target set_crc_source verify_crc_source get_crc_sources get_vblank_counter enable_vblank disable_vblank get_vblank_timestamp drm_mode_set connectors num_connectors drm_crtc_helper_funcs drm_self_refresh_data drm_encoder_funcs drm_encoder_helper_funcs drm_encoder_slave_funcs mode_fixup mode_set get_modes create_resources drm_encoder_slave slave_funcs slave_priv bus_priv drm_i2c_encoder_driver encoder_init drm_debug_category DRM_UT_CORE DRM_UT_DRIVER DRM_UT_KMS DRM_UT_PRIME DRM_UT_ATOMIC DRM_UT_VBL DRM_UT_STATE DRM_UT_LEASE DRM_UT_DP DRM_UT_DRMRES SIL164_INPUT_EDGE_FALLING SIL164_INPUT_EDGE_RISING SIL164_INPUT_WIDTH_12BIT SIL164_INPUT_WIDTH_24BIT SIL164_INPUT_SINGLE_EDGE SIL164_INPUT_DUAL_EDGE SIL164_PLL_FILTER_ON SIL164_PLL_FILTER_OFF sil164_encoder_params input_edge input_width input_dual pll_filter input_skew duallink_skew sil164_priv duallink_slave saved_slave_state sil164_exit sil164_init sil164_encoder_init sil164_probe sil164_encoder_destroy sil164_encoder_set_property sil164_encoder_create_resources sil164_encoder_get_modes sil164_encoder_detect sil164_encoder_mode_set sil164_encoder_mode_valid sil164_encoder_restore sil164_encoder_save sil164_encoder_dpms sil164_encoder_set_config duallink sil164_init_state sil164_read    sil164.ko   a                                                                                                   	                                                                                                                                               -                   :                   S            	       i                   }            <                                       $                    '            0       A                                                                                  ,    0      &       B    `      ,       Y                 f           U       x            
                                                	                           (                 `           s       #                             P                 `      c       ,                 C           2       _                s           8                                             p      T                                             "            "       9    "       9       T    [       /       j    @       @       u                     z                                                                                 	                                                                                                                                                                                                           3                     <                     R                     h    @       @                                                                                                                                      __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 sil164_encoder_set_config sil164_encoder_mode_valid sil164_encoder_get_modes sil164_encoder_set_property sil164_read sil164_read.cold sil164_encoder_detect sil164_encoder_destroy sil164_probe sil164_probe.cold __func__.19 sil164_init sil164_driver sil164_exit sil164_encoder_init sil164_encoder_funcs sil164_encoder_init.cold __func__.18 sil164_encoder_create_resources sil164_encoder_save sil164_encoder_restore sil164_encoder_restore.cold sil164_encoder_dpms sil164_encoder_dpms.cold sil164_init_state sil164_init_state.cold sil164_encoder_mode_set __UNIQUE_ID___addressable_cleanup_module339 __UNIQUE_ID___addressable_init_module338 __UNIQUE_ID_license337 __UNIQUE_ID_description336 __UNIQUE_ID_author335 sil164_ids .LC8 .LC12 .LC13 .LC14 __this_module cleanup_module kfree i2c_transfer_buffer_flags __fentry__ init_module drm_i2c_encoder_destroy __drm_debug __stack_chk_fail _dev_info i2c_register_driver _dev_err i2c_unregister_device i2c_new_client_device __mod_i2c__sil164_ids_device_table __x86_return_thunk i2c_transfer kmalloc_trace i2c_del_driver _dev_printk kmalloc_caches                ;   #          F   1          ;   m          F             ;             F             ;             F             ;             :                          :                         F            ?   1         ;   R         F   a         ;   v         C   ~         9            =            ;                                >               C                   :       !         ;   @         K   ,       U         H                               G            D   #         F   )         >   0            o       =         ?   Q         ;   X         F   a         ;            F            ;            3   (         :   0                   j         :   r                            F            ?            ;   2         :   :                   {         :                               F            ?            ;   !         :   )                  ?         4   I         :   Q            l               :               P               :               4               5            :                              :                      4         F   J         6   T         :   ]                  b         ?   q         ;                                  B                       3                     8          @   C          F   V                     ]                     d                    i          J   o                   z                                 :                                     J                0                   (                 B                r                   (                 B                0                   (                 B                                   (                 B                :                  (                B                     *            (       /         B   4                  F            (       K         B   P                  b            (       g         B   l                  ~            (                B               Q                  (                B               )                  (                B                               ;                                  7                     A                                  I                                     `                                      `                                      0                    p                   0                                       P                                                             0                                                                    (             0      0             `      8                   @                     H                    P             P      X             `      `                   h                   p                   x             p                    "                    l                                                                               Q                   "                   W                          $                   (                   ,             3      0             B                                          '                    0                    q                                                                                                            $                    (                    ,                   0                   4                   8             #      <             0      @             V      D             `      H             f      L             g      P                   T                   X                   \                   `                   d                   h                   l                   p                    t             '      x             0      |             9                   =                                                                             "                   '                   H                   P                   \                   `                   g                   h                   i                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   $                  (                  ,                  0                  4            /      8            0      <            1      @            3      D            8      H            f      L            p      P            w      T            {      X            |      \                  `                  d                  h                  l                    p                   t            ?       x            @       |            B                   G                   H                   n                   s                                                                                                                                                                8             X                    @                                      8                      <           8         <           P         8            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.text.unlikely .rela.init.text .rela.exit.text .rela.rodata .rela__mcount_loc .rodata.str1.8 .rodata.str1.1 .modinfo .rodata.cst2 .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                        @       $                              .                     d       <                              ?                                                         :      @               @             &                    J                     d                                   E      @               `            &                    ^                     (
                                    Y      @                     `       &                    n                     @
                                    i      @               X      0       &   	                 ~                     `
                                     y      @                           &                                         @                                          @                           &   
                       2                     M                                   2               
      _                                                  l                                                        
                                                        
      4                                    @                     8      &                                         
                                                        >                                         @               H      
      &                                                                                                                                       
     @               P      `       &                                                                                 @                            &                    *                                                        %     @               ȥ             &                    :                                        @               5     @                     0       &                    T                    @                                     Y     0               @      P                             b                                                          r                           c                             w                     $                                                          8             '   7                 	                      X                                                                                            0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  qTu|+'QVoqS+WU8`B*-U| b#m^xor #v&u}aW|׭weJcwQBGeVϻriۛ̕m+rZ	x9ܕ?'#Q@>gJr^C
U!dK3ĖshT$BNYY4P15d]t2
r~ePHlsx{đ}         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    h          @     @ ' &          GNU ^[U\ԀH;ْ        Linux                Linux   6.1.0-35-amd64      VF  = @ D                 SHH  H    H[    f    B=RG16A=RG24At=XR24uBJ=  ȁ  @     H        USHH        Hߺ          []    D      ATH    USHH    t
H[]A\    H    uH    H    uL   1ɺ   H    L    HH= wH  H  LHBH)HHE    H  H  H  H   LHBH)HHE    H  H   H    4H        Hǅ      L
  H  LH    HHǅx     Hǅ      Hǅ          ATA   HH    H   I    H        ZH    HH  1H    {x  HD$    D$`VfD      AUIATIUSHH H/eH%(   HD$1Ht$D$    HD$    HHD$        t3H  HsHD$  HD$N9tnt.|$    HD$eH+%(      H []A\A]    tduȋ  L    MHLH  H|$HD$    뙋{XL    HsXMHLH|$HD$    k  L    E1MHH  LH|$HD$    4    ff.     @     HFHtSHpH   PX~t!=  >Ⱥ1 @ M      v׋     wƉ1        ff.          AWIAVIAUATUSH(H4$Ht$eH%(   HD$ 1D$        $  L$I  AA
AqEiAiAfD$AYfANHw   AEafDD$D$fAfL$AfD,$A    I  Hw        I  Hw1    I  T$Hwz@    I     Hr    I  }@Hr    I     Hr    I  AAHr    I     Hr    I  |$Hr    I     Hq    I  Hq    I     Hq    I  AHq    4$	   I  f fHq    I  `Hq1    A      I  @ŃA   Ef$ E    E@A   EHp    I  Hp    D$DD$   f	Ń A   E@EEEI  Hp    I  Hp    I     Hp    I     Hp    I     Hp    I  Hx    IwHv@  A  E  v9  |$    HD$ eH+%(   -  H([]A\A]A^A_    u˃1I     Hp    I  Hp    IGHA_Xxx  I  A     Hp    I  Hp    I     A  Hp    I  @Hp	߃"    I     Hp    I  @   Hp    I     Hp    I     Hp    I  Hx    I  Hx    I  Hx    I  Hx    I  Hp    LHt$D$        u      JI     Hp    I  1Hp    I  
   Hp    I  1Hp    I     Hp    I  Hx       I     Hp    I  Hp    I     Hp    I  Hx       I  Hp    I  H    |$    AX  vSA   4v  w\Aǆ        O  |A   Á  Cb   Aǆ     Aǆ            ff.     @     SHHƐ   HHRH?eH%(   HD$1H{H   HH$    H   HD$	HD$eH+%(   u
H[        f.         USHHH  HeH%(   HD$1H$    HD$    HUHt+HBHH  @<tI9u-HHH    uYHD$eH+%(   u^H[]    H   H,H} úzX  v   @=  9tH}H   H
    H                uH    H    H                                                                                                    cirrus drivers/gpu/drm/tiny/cirrus.c qemu cirrus vga 2019 license=GPL alias=pci:v00001013d000000B8sv00005853sd00000001bc*sc*i* alias=pci:v00001013d000000B8sv00001AF4sd00001100bc*sc*i* depends=drm,drm_kms_helper,drm_shmem_helper retpoline=Y intree=Y name=cirrus vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                     SX                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    RG16RG24XR24                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     (               (  0  (                       (  H  (                 H                                   (    0  8  `  8  0  (                     `                (            (                  0          0                                                                                                                                                                                                                                                                                                                                                                          m    __fentry__                                              9[    __x86_return_thunk                                      E    drm_dev_unplug                                          ye"    drm_atomic_helper_shutdown                              (c    drm_gem_fb_create_with_dirty                            ?    drm_add_modes_noedid                                    8=    drm_set_preferred_mode                                  q    pci_unregister_driver                                   K    drm_aperture_remove_conflicting_pci_framebuffers        oy    pcim_enable_device                                      ֢    pci_request_regions                                     H    __devm_drm_dev_alloc                                    ?jR0    devm_ioremap                                            'j    drmm_mode_config_init                                   K    drm_connector_init                                      Z0	    drm_simple_display_pipe_init                            *E    drm_mode_config_reset                                   c    drm_dev_register                                        Ǩx    drm_fbdev_generic_setup                                 F    drm_firmware_drivers_only                               %z    __pci_register_driver                                    	y    drm_dev_enter                                           4    drm_dev_exit                                                drm_fb_clip_offset                                      3JI    drm_fb_xrgb8888_to_rgb888                               ?    drm_fb_memcpy                                           U    drm_fb_xrgb8888_to_rgb565                               V
    __stack_chk_fail                                        .7    iowrite8                                                E    ioread8                                                 g    drm_atomic_helper_damage_merged                         !S    drm_gem_prime_handle_to_fd                              a    drm_gem_prime_fd_to_handle                                  drm_gem_shmem_prime_import_sg_table                      ȼV    drm_gem_prime_mmap                                      ^    drm_gem_shmem_dumb_create                               e    noop_llseek                                             n    drm_read                                                n    drm_poll                                                q4*    drm_ioctl                                               ʺH    drm_compat_ioctl                                        SM&    drm_gem_mmap                                            j    drm_open                                                Gǂ    drm_release                                             w%    drm_atomic_helper_check                                 ch9    drm_atomic_helper_commit                                    drm_gem_simple_kms_prepare_shadow_fb                    _4    drm_gem_simple_kms_cleanup_shadow_fb                    E"    drm_gem_simple_kms_reset_shadow_plane                   7    drm_gem_simple_kms_duplicate_shadow_plane_state         y"4_    drm_gem_simple_kms_destroy_shadow_plane_state               drm_atomic_helper_connector_reset                       @P    drm_helper_probe_single_connector_modes                 _U    drm_connector_cleanup                                   j    drm_atomic_helper_connector_duplicate_state             xc    drm_atomic_helper_connector_destroy_state               e:X    module_layout                                                   X	                                                                                                                                                                                                                                                                                                                                                                            cirrus                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         O  O  ,         
t             :    9          
; ;   @    2M       ?    ;      `  `   @  ; K      K     ;   8   %  1M      G%  `   @         > 
<       [   T       *  T       X B @     0     < S     "<     p         X C @   ƃ F @         A            D              E 8<   x   G%  `       D  @      T            E< T     ƃ *    "      P< `   @                     Z<      y	        ~	       	       	        n<    0            v< G     <      ~	            H     <       <      (        (       (        (    0          K < 
     <     <     =    =    6=    Q=    q=    =    = 	   = 
   =    >    %>    D> 	  h   U>        rN            @   [>    `           4       h>             p> Y  @         
N y>               rN            @        `   @~       >         !      >      >     >    >    >    >      ?    ?    <?    U?      v?     ?    ?    ?      ?     ?    ?    @    $@    8@    E@      Ѥ K       T@ K      ^@      Ѥ K       g@ K      t@ U    @ 	     @ K       a2 K      @ K      @ $      @ $       @    @   @ $   `   @ $   h   @ $   p   @   h   A V     A X  @   A X  @  *A -   @  8A $     @ $     @ $     FA W   NA      ^A     sA    A      A &       A &      A      A *       A *       A      B     B    0B    OB    mB      ~B        B        B    @   ? T `   B       B *      B      B       u *      B    @  B K   `  B K   h  B K   p  C K   x  C $     9C $     UC $     p X   ]C K      iC Z   wC [ @  C $     C $     C *     C      	        Q        PL    @   f	    `   C 	  0   C M     n ^     !        @       C       C       D       D    @  "D    `  &D      s	 c     :D e @   ?D g    LD Y    W  i      k @  
 _   XD K      kD E     $	    @  D    `  D      D       *     D m    D $   @  D $   H  D \ `  D o          
` E A    "       E   @     ?     7       G%  `      E `     D  @      ?      %  G  @  ,     @  5E    `  DE      VE K     hE K     {E K     E K     E S    `        R   E `     E ] @  &      E o @  X A   E D   E D    F D @  F o   $F D   5F     DF e  @  \F D    }F D @  F )          F    F      Q   F K     F -      F *   @  F g   F 6    F 7  #  G 9   #  G 9    $  'G U  $  +G    $  =G    $  NG K    %  [G $   %  nG   @%  W   %  |G o %  G K    &  G  @&  G K   &  G )  &  G )  &  G )  &  G )  &  G   &  G   &  G !   '  < I @'         b H      "       i    @   G%  `        ?      %  > @  D  @      ׈    d$ ׈ @  ,       
	      
	        K     !      H           d	      &  -   H T    
  H   @
  F 0 
  X A 
  *H D    W   @  BH `     NH *     nG   @  	    ZH      hH *    sH       H    @  H 2 @         d H   x   "       G%  `   @   D  @      ?     H       ,        H T   @  H T   `  :D e   H `     &  ; @  F >          f H               h H               j I               l I   X   D  @     "      )I `   @  5I `       Q   @    k            n ?I       s     B u @   JB	 w     u    SI y    
 { @  ^I }   lI u   P   u    }I  @  I    I    I     I  @  I u   ~@           
p       
       c               r       
        c        t       
R     c     K          v       
       c     T       T          x       
       c     D              z       
       c        |       
     c        `        ~       
        c                    
       c          D                     
       c          D     *         a               
                      I       J ŉ     
J ǉ @   b  k                            
        c               J   T             K       J K     2J K                @      `  a      ^  K     I K     @J K     n K      Q   DJ      B      XJ ^    cJ %     nJ        H/  0      "    @   4     u  Ĉ   yJ k       ƈ    J ƈ @  n_ K     h     J *      J K      J   @  J ?     J G    J G     ]     J G      `      J `     J G     K `    	  K K   	  l Ȉ 	  (K *   
  9K *   
  BK *   @
  SK `   
  + *     eK       oK  @  {K G  @-  K   @.  K ʈ  /  K ̈ @/  K  /  K Έ /                 q K                K 
  P   L }     L c @   L e    "L h    ?D j    1L l @  EL n   RL p   `L t    vL v @         
         L         0      "   @   [         γ              L (     L     L    L    L    L    L    L    M    M    %M 	   3M 
   <M    KM    ZM 
   hM    uM    M    M    M    M    M    M    M    M    	N    N    ,N    <N    ON    `N    kN    N    N     N !   N "   N #   N $   N N N N "  x   k          O &       O &   0   O &   @    &   P   'O &   `   -O &   p   6O &      BO &       &      LO &        *      RO       ]O &      kO &     }O &      O &   0  O &   @  O &   P  O &   `  O &   p  O &     O &     O &     P &     P &     ~B &     B &     *  $      P K     G%  `                  kD E           
 4P   `   K       {E K      =P K       K      NP K       cP K   (   xP K   0   P K   8   h   @   P *     9  o     Y  J    P `   @  _ ƈ   P      m *    P      P *    @      P k   @  P `     P G     O2 `      p D    P `   @  L3  `     P    @  Q G     *  	          Q        0      "   @   J ?      #Q       .Q      P k     8Q     ?Q    @  IQ `     UQ `      ]Q     dQ   @          oQ 	  H   Q      Q  @   Q     L     EL     RL  @  Q    Q    Q            
 Q      "       G%  `   @   D  @           ^  @  &     h>        @  p>     rN                   @  Q    `  R      R `     B  @         
       
                               O         R      ^ *       )  $       !R $   (        0   ,R (  P   4R (  p   <R $      AR $      FR K      PR K      WR K             
       
                            
                       
                                 
            i               
            i     K                 
i                    
        i         hR h  @  %  G      xR >    R    R G     P      R     R G    R      R `     R *  @  R    `  R E3    R `      R      S Q    &S    	  2S `    
  ?S    
  OS `   
      @  ZS `     dS `      rS `     S     
  S     
  S    @
  S    `
  &   
  S   
  S K      S K     S K     S R  @  S G     S `      T D   T D   #T D    1T D @  ?T D   TT D   hT D    sT D @  ~T D   T D   T D    T D @  T D   T D   T D    T D @  T D   T D    U D    U D @  !U D   .U D   ?U D    [U D @  ~U D   U D   U D    U D @  U D   U D   V D    )V D @  CV D   ZV D   oV D    V D @  V D   V D   E D    V D @  V D   V D   
W D    $W D @  1W D   DW D   \W D    qW D @  W D   W D   W D    W D @  W D   X D   .X D     JX D @   eX T      uX T      X K      X K      X K      X K      X K      Y K      Y D  !  %Y T   @!  2Y T   `!  @Y i !  F  !         =         NY      kY      ~Y ~ @          
         K      Y     Y    Y    Y              6 `       Y k      '  *     Y      N       Y   @   	Z     Z     Z     d   @  $Z    /Z    ~@     ;Z  @  MZ    `Z    sZ     Z  @  Z    Z    Z     Z  @  
       _      Z        ?      ws  ?   @  3;	 ?     J *          Z    @  V             
        È Z   P   ,         *         E   @   "            Z `      [ G           ň [               ǈ  [      7[ ,      ?[ ʉ @          Ɉ P[               ˈ \[   H  
      u     (     "   @  &     j[ ?F     [     p[ K    |[ *  `  [ Q    [ Q    '  G    [ `   	  [ K    
  [ K   
  [     
         ͈ [      [     \    \    2\    I\      Y\     w\    \    \      (        (        (    @   (    `          
ш \      \     \    ]      ] ׈     :D e @   (     GH S     ] S      ] S      %] T   @  ,] T   `  3] T     9] T     ?] T     E] T     K] &      Q]     e4       b]    @  g]    `  w] ψ   ] Ј   ] o   #  ш    #  ш    K      ] ӈ      k @  W  i          
Ԉ ]     "       G%  `   @     ?      %  >    D  @   H T     ] ;B     ]    @  ] K   `  ] *    ]      :D e    (  @  ]    &     X A    *   @  ,     `  F    W     ^ D    ^ D @  !^ D   3^ D   G^ D    _^ D @  *H D          ֈ t^ 
  h   ^ ۈ     ^ ݈ @   P   ߈    B ߈    
     }I  @  I    I    I     ^I  @  lI ߈   I    ^            
؈       
       ׈     e                                      T       T       T       T               ڈ       
       ׈             ܈       
        ׈        ވ       
       ׈     D                     
     ׈        Ԉ               
        ׈                    
       ׈          D                     
       ׈          D     *         Ո               
       ׈               
                            
K       ׈     T                 ^      ^     ^    ^           و _   8   _ x     )_  @   EL z    4_ |    B_ |    Q_ z @  d_ |          
         x_   0   _ K        T          @              T      
   _ 	  H   '  *           @   _ K       K            G%        ~        _ Q   @  %  D            _   P  :D e     $ K   @   D  K   H   _ K   P  _ K   Q  _ K   R  _ K   S  	` K   T  ` K   U  )` K   V  3` *   `   >` *      M` *      Z`     !     h` o @  r` o   ~` o   ` o  	  ` *   @	  ` K   `	  ` K   h	  ` K   p	  ] ӈ 	  @   	    k  
  W  i @
         
 `                `      B      `  @   `     a     a 
    P    @  <    a    $a     
  @  }I    I    I     I  @  ^I     lI    5a "    Da $ @  Va &   I (   fa *    ya   @  a    a ,          
       
        e               
       e          T       T       T                 
       e          T       T       T       S       S                 
       e                             
       e     '      '      '      T               	       
                    
 a   0   (      :D e @   !  3      T      d	 T      a 4    a Q   @                
       e               T                      
       e               T       T                      
       e     D                     
     e                       
        e                    
       e          D                     
       e          D     *                        
       e               
       e               !       
       e                     #       
9      e              %       
                     '       
*       e        )       
K       e                   K          +          a       @        @         L B    a D    a F @  a    
b H   b K    +  @  EL M   -b O   :b O    Gb O @  B_ O   Ub Q          
.        / jb               1                c b       B 8     P   8 @   ^I :    lI 8           
5       
        g        7       
       g        9        6 b 
  h    S     L U @   a W      8      8    a Y @  b [   JB	 ]   B_ _    Gb _ @  + 8   $ 8   EL a           
<        =       
        e               ?       
     e             A       
K       e          3        C       
       e     3     3                           E       
       e                           G       
       e                        J b      b     b           I       
       e     i        L       
        e     i        N       
K       e     K                                           P       
        g               R       
     g             T       
K       g          3        V       
        g     3     3        X       
        g                  Z       
R     g     c        \       
        g     i        ^       
       g                  `       
       c          K          b       
     c     3        d       
       c     3          g                f       
g     c        i       
g     c     i        k       
       c     i        m       
        c     i        o       
       r     m        s b               q       
        r     m        u       
       ׈             w       
       ׈     i        y       
        ׈     i        {       
       i        }        ҈ c 
     "c    -c    <c    Jc    Xc     gc @   c    c    c    c    c     c    @c          
                             
                           
                            
                  K                 
        ƈ         c   P    0      c        "   @   @      d ω      Q             !G S  @  d S    B S    "d S     &   	  9,
 `   	  ,   @
         
       
          Q                         
                 T       T                        
                        ;B                
          S                
          S      O                
                             
                         P               
                 T       *                
                 T           (d                     @   @                  
         7d                  @   (      `u            
       
                 Hd   X   "            @   ]  `      &      /   @  Wd G    ed                  
                        nd   0   
      @~ *   @   > *   `   d       S     (  @  d      d *       d *       d *   @   d *   `   d *      d *      d      d             
       
       Έ                                      e   0   '  G      e 3     4 3  @           %e (      )e (      8e      P        Ne  @   W            
       
                       
                                  
                               L                                          \e     D  Ԉ       É     É              S              
             g         ĉ       
                       Ɖ se 
             L  -   @     -        ˉ    <D  `      e `     ^  1     e 1    e 1    q -   @  e -     e -                    
ȉ e      e Ή     e `   @   e ȉ     4     e 4    e 3     e    @         ʉ       
        ͉                           ɉ        ̉ e      7[ ,      f ȉ @   f 3    0  k     $f   `   
  Ӊ     Y  Չ @   0  ׉    9f ډ    1 ܉    v މ @  F Ӊ   Df    G     G  @  ?                  
Љ       
                ҉       
                    ԉ       
                     ։       
                    ى                ؉       
S                     ۉ       
               ݉       
O              ߉       
            S                
             S          Qf       '        p  2   @   ]  `             щ         ]f           
            k        if      yf    f    f    f    f             f   x   L      $  @   +     s      >     _  @  )_    ya    a     f  @  f    f    
g     g  @  ,g           
       
                   @g     :D d     ] ֈ   F f @4  s	 c  8  &   @8                
                                 
                       
                                
                            
                           
                      
                    
                             
                      Xg      "       ue    0   b h  %e    @  >    `  fg k      k                               
                           
                ш                          kg       g    x   g    D  g    [O        
 "     g  g           
    ue   g  g           
    ue   g  g  
h           
   ue   g  g  h           
 ue   !   /h           
    c Fh     drm_modeset_acquire_ctx stack_depot trylock_only drm_modeset_lock drm_mode_object free_cb drm_object_properties drm_property num_values enum_list hdr_static_metadata min_cll hdmi_type1 hdr_sink_metadata drm_magic_t drm_clip_rect drm_mode_subconnector DRM_MODE_SUBCONNECTOR_Automatic DRM_MODE_SUBCONNECTOR_Unknown DRM_MODE_SUBCONNECTOR_VGA DRM_MODE_SUBCONNECTOR_DVID DRM_MODE_SUBCONNECTOR_DVIA DRM_MODE_SUBCONNECTOR_Composite DRM_MODE_SUBCONNECTOR_SVIDEO DRM_MODE_SUBCONNECTOR_Component DRM_MODE_SUBCONNECTOR_SCART DRM_MODE_SUBCONNECTOR_DisplayPort DRM_MODE_SUBCONNECTOR_HDMIA DRM_MODE_SUBCONNECTOR_Native DRM_MODE_SUBCONNECTOR_Wireless drm_mode_fb_cmd2 fb_id pixel_format pitches modifier drm_mode_create_dumb pitch drm_connector_force DRM_FORCE_UNSPECIFIED DRM_FORCE_OFF DRM_FORCE_ON DRM_FORCE_ON_DIGITAL drm_connector_status connector_status_connected connector_status_disconnected connector_status_unknown drm_connector_registration_state DRM_CONNECTOR_INITIALIZING DRM_CONNECTOR_REGISTERED DRM_CONNECTOR_UNREGISTERED subpixel_order SubPixelUnknown SubPixelHorizontalRGB SubPixelHorizontalBGR SubPixelVerticalRGB SubPixelVerticalBGR SubPixelNone drm_scrambling low_rates drm_scdc read_request scrambling drm_hdmi_dsc_cap v_1p2 all_bpp bpc_supported max_slices clk_per_slice max_lanes max_frl_rate_per_lane total_chunk_kbytes drm_hdmi_info scdc y420_vdb_modes y420_cmdb_modes y420_cmdb_map y420_dc_modes dsc_cap drm_link_status DRM_LINK_STATUS_GOOD DRM_LINK_STATUS_BAD drm_monitor_range_info min_vfreq max_vfreq drm_luminance_range_info min_luminance max_luminance drm_privacy_screen_status PRIVACY_SCREEN_DISABLED PRIVACY_SCREEN_ENABLED PRIVACY_SCREEN_DISABLED_LOCKED PRIVACY_SCREEN_ENABLED_LOCKED drm_display_info width_mm height_mm bpc panel_orientation color_formats bus_formats num_bus_formats max_tmds_clock dvi_dual is_hdmi has_hdmi_infoframe rgb_quant_range_selectable edid_hdmi_rgb444_dc_modes edid_hdmi_ycbcr444_dc_modes cea_rev non_desktop monitor_range luminance_range mso_stream_count mso_pixel_overlap max_dsc_bpp drm_connector_tv_margins drm_tv_connector_state subconnector contrast flicker_reduction overscan saturation hue drm_connector_state crtc best_encoder link_status self_refresh_aware picture_aspect_ratio hdcp_content_type scaling_mode content_protection writeback_job max_requested_bpc max_bpc privacy_screen_sw_state hdr_output_metadata drm_connector kdev global_connector_list_entry connector_type connector_type_id interlace_allowed doublescan_allowed stereo_allowed ycbcr_420_allowed registration_state probed_modes display_info edid_blob_ptr scaling_mode_property vrr_capable_property colorspace_property path_blob_ptr max_bpc_property privacy_screen privacy_screen_notifier privacy_screen_sw_state_property privacy_screen_hw_state_property polled helper_private cmdline_mode override_edid epoch_counter possible_encoders encoder eld latency_present video_latency audio_latency ddc null_edid_counter bad_edid_counter edid_corrupt real_edid_checksum debugfs_entry tile_blob_ptr has_tile tile_group tile_is_single_monitor num_h_tile num_v_tile tile_h_loc tile_v_loc tile_h_size tile_v_size free_node drm_crtc hwmode gamma_size gamma_store scaling_filter_property commit_list commit_lock fence_context fence_lock fence_seqno timeline_name self_refresh_data drm_encoder encoder_type possible_crtcs possible_clones bridge_chain drm_atomic_state drm_crtc_commit drm_writeback_job drm_property_blob head_global head_file drm_connector_funcs fill_modes late_register early_unregister atomic_duplicate_state atomic_destroy_state atomic_set_property atomic_get_property atomic_print_state oob_hotplug_event drm_printer printfn puts drm_cmdline_mode refresh_specified bpp_specified cvt rotation_reflection tv_margins drm_device if_version dev_private render driver_features unplugged anon_inode unique struct_mutex master_mutex filelist_mutex filelist_internal clientlist_mutex clientlist vblank_disable_immediate vblank_time_lock vbl_lock max_vblank_count vblank_event_list num_crtcs mode_config object_name_lock object_name_idr vma_offset_manager vram_mm switch_power_state fb_helper drm_privacy_screen drm_connector_helper_funcs get_modes detect_ctx mode_valid mode_valid_ctx atomic_best_encoder atomic_check atomic_commit prepare_writeback_job cleanup_writeback_job drm_tile_group drm_mode_status MODE_OK MODE_HSYNC MODE_VSYNC MODE_H_ILLEGAL MODE_V_ILLEGAL MODE_BAD_WIDTH MODE_NOMODE MODE_NO_INTERLACE MODE_NO_DBLESCAN MODE_NO_VSCAN MODE_MEM MODE_VIRTUAL_X MODE_VIRTUAL_Y MODE_MEM_VIRT MODE_NOCLOCK MODE_CLOCK_HIGH MODE_CLOCK_LOW MODE_CLOCK_RANGE MODE_BAD_HVALUE MODE_BAD_VVALUE MODE_BAD_VSCAN MODE_HSYNC_NARROW MODE_HSYNC_WIDE MODE_HBLANK_NARROW MODE_HBLANK_WIDE MODE_VSYNC_NARROW MODE_VSYNC_WIDE MODE_VBLANK_NARROW MODE_VBLANK_WIDE MODE_PANEL MODE_INTERLACE_WIDTH MODE_ONE_WIDTH MODE_ONE_HEIGHT MODE_ONE_SIZE MODE_NO_REDUCED MODE_NO_STEREO MODE_NO_420 MODE_STALE MODE_BAD MODE_ERROR drm_display_mode hdisplay hsync_start hsync_end hskew vdisplay vsync_start vsync_end vscan crtc_clock crtc_hdisplay crtc_hblank_start crtc_hblank_end crtc_hsync_start crtc_hsync_end crtc_htotal crtc_hskew crtc_vdisplay crtc_vblank_start crtc_vblank_end crtc_vsync_start crtc_vsync_end crtc_vtotal expose_to_userspace drm_file universal_planes aspect_ratio_allowed writeback_connectors was_master is_master master_lookup_lock lhead object_idr syncobj_idr syncobj_table_lock driver_priv fbs fbs_lock pending_event_list event_space event_read_lock drm_master unique_len magic_map lessor lessee_id lessee_list lessees leases lessee_idr drm_mode_config_funcs fb_create get_format_info output_poll_changed atomic_state_alloc atomic_state_clear atomic_state_free drm_framebuffer hot_x hot_y filp_head drm_format_info num_planes block_w block_h hsub vsub has_alpha is_yuv is_color_indexed drm_mode_config connection_mutex acquire_ctx idr_mutex tile_idr fb_lock num_fb fb_list connector_list_lock num_connector connector_ida connector_list connector_free_list connector_free_work num_encoder encoder_list num_total_plane plane_list crtc_list property_list privobj_list min_width min_height max_width max_height fb_base poll_enabled poll_running delayed_event output_poll_work blob_lock property_blob_list edid_property dpms_property path_property tile_property link_status_property plane_type_property prop_src_x prop_src_y prop_src_w prop_src_h prop_crtc_x prop_crtc_y prop_crtc_w prop_crtc_h prop_fb_id prop_in_fence_fd prop_out_fence_ptr prop_crtc_id prop_fb_damage_clips prop_active prop_mode_id prop_vrr_enabled dvi_i_subconnector_property dvi_i_select_subconnector_property dp_subconnector_property tv_subconnector_property tv_select_subconnector_property tv_mode_property tv_left_margin_property tv_right_margin_property tv_top_margin_property tv_bottom_margin_property tv_brightness_property tv_contrast_property tv_flicker_reduction_property tv_overscan_property tv_saturation_property tv_hue_property aspect_ratio_property content_type_property degamma_lut_property degamma_lut_size_property ctm_property gamma_lut_property gamma_lut_size_property suggested_x_property suggested_y_property non_desktop_property panel_orientation_property writeback_fb_id_property writeback_pixel_formats_property writeback_out_fence_ptr_property hdr_output_metadata_property content_protection_property hdcp_content_type_property preferred_depth prefer_shadow prefer_shadow_fbdev quirk_addfb_prefer_xbgr_30bpp quirk_addfb_prefer_host_byte_order async_page_flip fb_modifiers_not_supported normalize_zpos modifiers_property cursor_width cursor_height suspend_state drm_mode_config_helper_funcs atomic_commit_tail atomic_commit_setup DRM_SWITCH_POWER_ON DRM_SWITCH_POWER_OFF DRM_SWITCH_POWER_CHANGING DRM_SWITCH_POWER_DYNAMIC_OFF final_kfree drm_driver postclose lastclose unload master_set master_drop gem_create_object prime_handle_to_fd prime_fd_to_handle gem_prime_import gem_prime_import_sg_table gem_prime_mmap dumb_create dumb_map_offset dumb_destroy patchlevel num_ioctls drm_minor debugfs_list debugfs_lock drm_vblank_crtc drm_vma_offset_manager vm_lock vm_addr_space_mm drm_vram_mm drm_fb_helper fbdev damage_clip damage_lock damage_work resume_work kernel_fb_list delayed_hotplug deferred_setup preferred_bpp drm_color_encoding DRM_COLOR_YCBCR_BT601 DRM_COLOR_YCBCR_BT709 DRM_COLOR_YCBCR_BT2020 DRM_COLOR_ENCODING_MAX drm_color_range DRM_COLOR_YCBCR_LIMITED_RANGE DRM_COLOR_YCBCR_FULL_RANGE DRM_COLOR_RANGE_MAX drm_rect drm_scaling_filter DRM_SCALING_FILTER_DEFAULT DRM_SCALING_FILTER_NEAREST_NEIGHBOR drm_plane_state plane crtc_x crtc_y crtc_w crtc_h src_x src_y src_h src_w alpha pixel_blend_mode zpos normalized_zpos color_encoding color_range fb_damage_clips scaling_filter drm_plane format_types format_count format_default modifiers modifier_count old_fb alpha_property zpos_property rotation_property blend_mode_property color_encoding_property color_range_property drm_plane_funcs update_plane disable_plane format_mod_supported drm_plane_type DRM_PLANE_TYPE_OVERLAY DRM_PLANE_TYPE_PRIMARY DRM_PLANE_TYPE_CURSOR drm_plane_helper_funcs prepare_fb cleanup_fb atomic_update atomic_disable atomic_async_check atomic_async_update drm_crtc_crc_entry has_frame_counter drm_crtc_crc opened values_cnt drm_crtc_state planes_changed mode_changed active_changed connectors_changed zpos_changed color_mgmt_changed no_vblank plane_mask connector_mask encoder_mask adjusted_mode mode_blob degamma_lut ctm gamma_lut target_vblank async_flip vrr_enabled self_refresh_active drm_pending_vblank_event drm_crtc_funcs cursor_set cursor_set2 cursor_move gamma_set page_flip page_flip_target set_crc_source verify_crc_source get_crc_sources get_vblank_counter enable_vblank disable_vblank get_vblank_timestamp drm_mode_set connectors num_connectors drm_crtc_helper_funcs mode_fixup mode_set mode_set_nofb mode_set_base mode_set_base_atomic atomic_begin atomic_flush atomic_enable get_scanout_position drm_self_refresh_data drm_encoder_funcs drm_encoder_helper_funcs atomic_mode_set mode_set_atomic LEAVE_ATOMIC_MODE_SET ENTER_ATOMIC_MODE_SET drm_writeback_connector drm_driver_feature DRIVER_GEM DRIVER_MODESET DRIVER_RENDER DRIVER_ATOMIC DRIVER_SYNCOBJ DRIVER_SYNCOBJ_TIMELINE DRIVER_USE_AGP DRIVER_LEGACY DRIVER_PCI_DMA DRIVER_SG DRIVER_HAVE_DMA DRIVER_HAVE_IRQ DRIVER_KMS_LEGACY_CONTEXT drm_gem_object handle_count vma_node import_attach _resv drm_ioctl_desc drm_client_funcs drm_client_dev modeset_mutex modesets drm_client_buffer gem drm_fb_helper_surface_size fb_width fb_height surface_width surface_height surface_bpp surface_depth drm_fb_helper_funcs fb_probe drm_prime_file_private dmabufs cpp char_per_block drm_framebuffer_funcs create_handle drm_shadow_plane_state drm_mm_node hole_stack rb_hole_size rb_hole_addr hole_size subtree_max_hole drm_mm color_adjust head_node holes_size holes_addr scan_active drm_vma_offset_node vm_node vm_files drm_gem_object_funcs print_info get_sg_table drm_gem_lru drm_ioctl_t drm_ioctl_flags DRM_AUTH DRM_MASTER DRM_ROOT_ONLY DRM_UNLOCKED DRM_RENDER_ALLOW drm_simple_display_pipe_funcs reset_crtc duplicate_crtc_state destroy_crtc_state reset_plane duplicate_plane_state destroy_plane_state drm_simple_display_pipe cirrus_device vram cirrus_pci_driver_exit cirrus_pci_driver_init cirrus_pci_remove cirrus_pci_probe mode_cmd cirrus_fb_create old_state cirrus_pipe_update crtc_state plane_state cirrus_pipe_enable cirrus_pipe_check cirrus_pipe_mode_valid cirrus_conn_get_modes cirrus.ko   C0                                                                                                                     
                                                   9            E       9       +     ~       ,       B             @      O                   h            	       ~                               <                                       $                    9            @                   `       P                   ;                          "            (      4                 E   
               S   
              e   
       H       ~   
        P          
        x          
                 
                          2                 Q                 r       
                $    `      v       7                 J                   a                                         
         x          
 `                                                                                               %                     .   
         x       P                     ^                  l                                                                                                                                                                                           :                     P                     f                                                      2                                                                                                                                     !                     .                     8                     S                                                                                                                                                                                             '                     :                     B                     W                     {                                                                                                         	                                          -                     ]                                                                                                                              
                                          /                      __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 cirrus_pipe_mode_valid cirrus_pci_remove cirrus_fb_create cirrus_conn_get_modes cirrus_pci_driver_exit cirrus_pci_driver cirrus_pci_probe cirrus_driver cirrus_conn_funcs cirrus_mode_config_funcs cirrus_conn_helper_funcs cirrus_pipe_funcs cirrus_modifiers cirrus_formats cirrus_pci_driver_init cirrus_fb_blit_rect.isra.0 cirrus_pipe_check cirrus_mode_set.isra.0 cirrus_pipe_enable cirrus_pipe_update __UNIQUE_ID_license347 __UNIQUE_ID___addressable_cleanup_module346 __UNIQUE_ID___addressable_init_module345 pciidlist cirrus_fops .LC1 drm_aperture_remove_conflicting_pci_framebuffers drm_open drm_fb_xrgb8888_to_rgb565 drm_poll __mod_pci__pciidlist_device_table drm_dev_enter __this_module drm_gem_shmem_dumb_create drm_gem_prime_mmap drm_atomic_helper_shutdown __pci_register_driver devm_ioremap drm_gem_simple_kms_cleanup_shadow_fb cleanup_module pci_request_regions drm_gem_prime_handle_to_fd drmm_mode_config_init pci_unregister_driver drm_firmware_drivers_only __fentry__ init_module drm_add_modes_noedid iowrite8 __stack_chk_fail drm_atomic_helper_commit drm_atomic_helper_check drm_atomic_helper_connector_destroy_state drm_gem_mmap drm_ioctl drm_gem_prime_fd_to_handle drm_gem_simple_kms_destroy_shadow_plane_state drm_dev_unplug drm_connector_init drm_atomic_helper_damage_merged drm_gem_simple_kms_prepare_shadow_fb noop_llseek drm_read drm_gem_fb_create_with_dirty drm_dev_exit drm_fb_clip_offset ioread8 __devm_drm_dev_alloc drm_gem_shmem_prime_import_sg_table drm_fb_xrgb8888_to_rgb888 __x86_return_thunk drm_fbdev_generic_setup drm_atomic_helper_connector_duplicate_state drm_simple_display_pipe_init drm_connector_cleanup drm_fb_memcpy drm_gem_simple_kms_duplicate_shadow_plane_state drm_helper_probe_single_connector_modes drm_gem_simple_kms_reset_shadow_plane drm_set_preferred_mode drm_atomic_helper_connector_reset drm_mode_config_reset pcim_enable_device drm_compat_ioctl drm_dev_register drm_release                >   +          W   5          W   A          >   Q          J   Z          4   a          >             P             W             >             @             `             W             >                                +            W   !         c   ,                    4         9   M                   U         T            6            6            ;   
                  #                  .                   3         K   M                   [                  b                  g         Z   x         b            e            X            >            0   E         Q   h         W            R            V            R            \            R            -   
         B   !         >   ^         W            W            W            >            0   [         A   p         A            A            A            A            A            A            A   
         A            A   4         A   G         A   \         A   p         A            A            A            A            A   j         A   |         A            A            A            A            S            Q   .         W   P         A   b         A            A            A            A            A            A   	         A   $	         A   9	         A   I	         S   Y	         S   i	         S   y	         S   	         A   	         0   	         A   	         A   	         A   
         A   
         A   '
         S   D
         A   V
         A   k
         A   {
         S   
         A   
         A   
         Q   M         B   a         >            W            B            >   B         L   a         W            B                                  <             >             =                                  1                                $          5   .          W                                      @                    `                                                (                     0                   8                    @                   H             `      P                             :                     H                     U                     3                     2                                (            %       0            5       P            `      `         1           h         N           p         O                    .                    G                    d                    F                    ,                    f                       `                D                    C                                            `                                            (         M           0         7           `         _           h         ]           p         I                    a                    ^                    [                    Y                    E                                             *                    4                                                                               g                   ]                                             $             -      (                   ,             `      0             -                                          9                    @                    F                    Y                    ^                    `                                                $                    (                    ,                    0                    4                    8                    <                    @                   D                   H                   L                   P                   T                   X             A      \             l      `                   d                   h                   l                   p                   t                   x                   |             a                   b                   c                   e                   g                   l                                                                                                                                                                                                                                     #                   $                   %                   '                   )                   +                   -                   2                   Q                   `                   f                   t                                                                                                                                                                       ^                  _                  `                  e                         $                    (                   ,                    0            2                     >                *                                                                          (             @                  8                      ?           8         ?           P         8            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.exit.text .rela.init.text .rela__mcount_loc .rodata.str1.1 .modinfo .rela.rodata .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela__bug_table .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                       @       $                              .                     d       <                              ?                                                         :      @                     
      $                    J                     ]
                                    E      @               `      0       $                    Z                     i
      2                              U      @                            $                    j                     
      X                              e      @               8            $   	                 w      2               
      :                                                  -                                                        @      P                                    @               @      `      $   
                                            4                                    @                     8      $                                                                                                       4                                   @                     8      $                                               @                                                    %                                          @                     0       $                                         @%      (                                    @               @      `       $                                         h&                                          @                            $                                        p&                                         @                            $                                        &                    @                    @                     0       $                    5                     *                                     :     0                *      P                             C                     P*                                     S                     P*      8|                             X                                                                                     	      %   +                 	                      @      ;                                                          g                             0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  8ɤR)*ƈ}7(u-e97Unޫ@Wk-NΔFʀav̀8h1ɐ'DMPL@Կ"6*F4H4ǩ5խ_pJCi6\ϠcGvfQeXa}P@~\EEȧI'?xufR+Yҋ!1ԂϨkg!>`wzt2m>-E	ee~F;۶E         ~Module signature appended~
                                                                                                                                                                                                                                                                                     ELF          >                    |          @     @ ) (          GNU ,\$ǝ!5<@        Linux                Linux   6.1.0-35-amd64      SH   H    H[    f    U8   H
  SHH=        Ht<H   HH    uH[]    H߉D$    D$H[]    @     H=      
      Htƀ      H             H        ff.     @     H        ff.     @     HH    f    HHHcH    HH(    f    SHHH    H[    D      SHH    HtH{8C8t~1[        1[           f    ATIUHSHG0Өu6HGH@ Ht	    u1HcL[H    ]A\    H    HM(ff.         AWAVAUATUSH~L     FI  6H    HH  H=    p   
      HH  @@       LkHA    HS@A   HHH        E111LH        H5    LH	      At$L   L    uXH    H{8C8      E       HD[]A\A]A^A_    1L       L    Aǅu|AD$   HL)    L    MNLL$    1LA     H    H<$A    E~OEl$LH    Z    5L              H    "EA	AAfD      ATUSFH      LeHL    1H    LH    H   H wBHC0uMHCH@ HtH    u,1H    H{8C8t~*[]A\    H        []A\           []A\    뺽ff.         SH    HH    H    HC    H      H1HC   [    ff.         SHHH        H[    H=    SH       1H{    H[        AT   USH`eH%(   HD$X1H|$1HD$ H$HD$        HŉH=    L`1  L    HttHX  HLHP      uHL    L1ɺ  H        H    HǉH= wH   1    Åt1L    H    HD$XeH+%(   t    H`[]A\                                                                                                                                                                                                            	                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      vgem Virtual GEM provider 20120112 VGEM_FENCE_ATTACH VGEM_FENCE_SIGNAL vgem unbound %llu &vfile->fence_mutex license=GPL and additional rights description=Virtual GEM provider author=Intel Corporation author=Red Hat, Inc. depends=drm,drm_shmem_helper retpoline=Y intree=Y name=vgem vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                                                                                                                                                                                          (    0  8  @  8  0  (                     @                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              j    drm_open                                                n    drm_poll                                                j    devres_release_group                                    =    dma_resv_reserve_fences                                 nJne    snprintf                                                ^    drm_gem_shmem_dumb_create                                ȼV    drm_gem_prime_mmap                                      {    idr_replace                                             Y    ww_mutex_unlock                                             dma_resv_add_fence                                      z    kfree                                                   ܐ    timer_delete_sync                                       !S    drm_gem_prime_handle_to_fd                              m    __fentry__                                              |    drm_gem_object_lookup                                   pHe    __x86_indirect_thunk_rax                                V
    __stack_chk_fail                                        _i    refcount_warn_saturate                                  SM&    drm_gem_mmap                                            q4*    drm_ioctl                                               a    drm_gem_prime_fd_to_handle                              w    drm_gem_object_free                                     5U`    dma_fence_context_alloc                                     idr_alloc                                               V9d    platform_device_unregister                                  mod_timer                                               e    noop_llseek                                             Js    dma_fence_signal                                        n    drm_read                                                f    dma_fence_free                                          KM    mutex_lock                                              JW    ww_mutex_lock                                           _    devres_open_group                                           __mutex_init                                            M    dma_fence_init                                          Ձ    drm_dev_unregister                                          idr_destroy                                             H    __devm_drm_dev_alloc                                        drm_gem_shmem_prime_import_sg_table                     9[    __x86_return_thunk                                      P    jiffies                                                 CVo    dma_set_coherent_mask                                   @    idr_for_each                                                platform_device_register_full                           82    mutex_unlock                                            9c    init_timer_key                                          ϗ    dma_set_mask                                                 kmalloc_trace                                               dma_resv_test_signaled                                  #    dma_fence_release                                       ʺH    drm_compat_ioctl                                        c    drm_dev_register                                        1Y    kmalloc_caches                                          Gǂ    drm_release                                             e:X    module_layout                                                                   Ad                    Bd@                                                                    vgem                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0             D         
t             :    7          
; ;       ;   0   '  G      ; 3     4 3  @  ;   P   ,         *         ;   @   "  @          < `      < G            '<   `   K       0< K      ?< K       K      P< K       e< K   (   z< K   0   < K   8   h  C @   < *     9  o     Y  =    < `   @  _ D   <      m *    <      < *    @      < k   @  < `     < G     O2 `      p D    < `   @  L3  `     <    @  
= G     * > 	         A                ? %=       1= H     9= J @   b  k                    
        G     g         E        F       
        G               I >= 
             L  -   @     -        N    <D  `      J= `     ^  1     U= 1    b= 1    q -   @  o= -     y= -                    
K =      = Q     J= `   @   = K     4     = 4    = 3     =    @         M       
        P                           L        O =      = ,      = K @   = 3    0  k     =   `   
  Y     Y  [ @   0  ]    > `    1 b    v d @  F Y   > f   G h    G j @  ?  l                
S       
        V        W $>   P    0      3>        "  @ @   @      @> R      Q             !G S  @  I> S    B S    W> S     &  n 	  9,
 `   	  ,  o @
         
W        U       
       V     B        Z       
        V     B        \       
        G            _        X        ^       
S      V               a       
       V        c       
O      V        e       
       V     S         g       
        V     S         i       
       V               k ]>       '        p  2   @   ]  `             T        m i>      @~                 >    @   KS    `   >      GH                 >   8   >       > G     >   p   D  S      '  )     %  I  @         r        q        p        s       
    > t >    x >            
   > t >    {       
   "  @   k   /  B ?    } ?    } 7?            
    GH S    ?        J?     h?           
    D  S  }?     ?      ?      ? 	  h   ?        rN            @   ?    `           4       ?             ? Y  @         
 ?               rN            @        `   @~       @         !      =        0      "  @ @   @ ?      @       *@      < k     4@ C    ;@    @  E@ `     Q@ `      Y@     `@   @  < %     k@        H/  0      "    @   4     u     v@ k       D    @ D @  n_ K     h  C   @ *      @ K      @   @  @ ?     @ G    @ G     ]     @ G      `      @ `     @ G     @ `    	  A K   	  l  	  A *   
  /A *   
  8A *   @
  IA `   
  + *     [A       eA  @  qA G  @-  A   @.  A   /  A  @/  A  /  A  /  A   @    2M           A      `  `   @  A K      K     A   8   %  1M      G%  `   @          B 	  H   "B      ,B  @   <B     PB     [B     hB  @  vB    B    B            
 B              
     @     B                              B               
       
                            
        @         B             
     @              B               
               
       @              B                      
       @          K                 
     @               
                  C h  @  %  G      C     !C    -C G     <      7C     @C G    HC      OC `     WC *  @  kC    `  yC E3    C `      C      C Q    C    	  C `    
  C    
  C `   
      @  C `     C `      
D `     D     
  !D     
  ,D    @
  6D    `
  &   
  AD   
  ID K      VD K     cD K     qD R  @  D G     D `      D    D    D     D  @  D    D     E     E  @  E    !E    ,E     8E  @  DE    PE    \E     gE  @  xE    E    E     E  @  E    E    E     E  @  F    /F    HF     hF  @  yF    F    F     F  @  F    F    G     %G  @  :G    QG    aG     wG  @  G    G    G     G  @  G    G    
H     H  @  4H    IH    dH     }H  @  H    H    H      H  @   I T      #I T      1I K      EI K      cI K      I K      I K      I K      I   !  I T   @!  I T   `!  I  !  I  !                  J                J               
         A      5J     IJ    ^J    xJ              6 `       J k      '  *     J      N  ň     Y  ǈ @   J Ɉ    J     J     d   @  J ˈ   J Ɉ   ~@ ͈    J ψ @  J ш   K ӈ   K Ո    'K ׈ @  AK l   PK ڈ   \K ܈    lK ވ @  
       _      yK        ?      ws  ?   @  3;	 ?     @ *          K    @  V             
         K                K      = ,      K M @           K                K                K 
     K    K    L    L    *L     9L @   QL    `L    nL    }L    L     L    @L          
       @               Ĉ       
       @     B        ƈ       
        @     B        Ȉ       
        @     B     K          ʈ       
        D        ̈       
V     @     Q          Έ       
       @     B     T       T                 Ј       
       @     B            ;B         ҈       
V     @     S         Ԉ       
V     @     S      O         ֈ       
       B     @     و                ؈       
       B     @     T       *         ۈ       
       B     @     T          ݈ L                     @   @                  
߈         L           
       @     k       B L      L    L     M    M    M             ,M 
    D  W     M
 G  
  KX      AM      QM      VM `      `M     xM     Q  O    M G   
  )  k      M    @  M K   `  M           M    0                     ߈               M       M    x         
V "  @   Q   M           
    "  @ /  B M           
   "  @ /  B N     drm_magic_t drm_prime_file_private dmabufs drm_minor kdev debugfs_list debugfs_lock drm_device drm_file stereo_allowed universal_planes aspect_ratio_allowed writeback_connectors was_master is_master master_lookup_lock lhead object_idr syncobj_idr syncobj_table_lock driver_priv fbs fbs_lock pending_event_list event_space event_read_lock drm_master drm_printer printfn puts drm_mm_node hole_stack rb_hole_size rb_hole_addr hole_size subtree_max_hole drm_mm color_adjust head_node holes_size holes_addr scan_active drm_vma_offset_node vm_lock vm_node vm_files drm_gem_object_funcs print_info get_sg_table drm_gem_object handle_count vma_node import_attach _resv drm_gem_lru drm_vgem_fence_attach out_fence drm_vgem_fence_signal vgem_file fence_idr fence_mutex vgem_fence vfile vgem_fence_close __vgem_fence_idr_fini vgem_fence_open vgem_fence_signal_ioctl vgem_fence_attach_ioctl vgem_fence_timeout vgem_fence_timeline_value_str vgem_fence_value_str vgem_fence_release vgem_fence_get_timeline_name vgem_fence_get_driver_name drm_mode_fb_cmd2 fb_id pixel_format pitches modifier drm_mode_create_dumb pitch unique unique_len magic_map lessor lessee_id lessee_list lessees leases lessee_idr if_version dev_private render driver_features unplugged anon_inode struct_mutex master_mutex filelist_mutex filelist_internal clientlist_mutex clientlist vblank_disable_immediate vblank_time_lock vbl_lock max_vblank_count vblank_event_list num_crtcs mode_config object_name_lock object_name_idr vma_offset_manager vram_mm switch_power_state fb_helper drm_modeset_acquire_ctx stack_depot trylock_only drm_modeset_lock drm_mode_config_funcs fb_create get_format_info output_poll_changed mode_valid atomic_check atomic_commit atomic_state_alloc atomic_state_clear atomic_state_free drm_framebuffer drm_format_info drm_mode_status drm_display_mode drm_atomic_state drm_mode_config connection_mutex acquire_ctx idr_mutex tile_idr fb_lock num_fb fb_list connector_list_lock num_connector connector_ida connector_list connector_free_list connector_free_work num_encoder encoder_list num_total_plane plane_list crtc_list property_list privobj_list min_width min_height max_width max_height fb_base poll_enabled poll_running delayed_event output_poll_work blob_lock property_blob_list edid_property dpms_property path_property tile_property link_status_property plane_type_property prop_src_x prop_src_y prop_src_w prop_src_h prop_crtc_x prop_crtc_y prop_crtc_w prop_crtc_h prop_fb_id prop_in_fence_fd prop_out_fence_ptr prop_crtc_id prop_fb_damage_clips prop_active prop_mode_id prop_vrr_enabled dvi_i_subconnector_property dvi_i_select_subconnector_property dp_subconnector_property tv_subconnector_property tv_select_subconnector_property tv_mode_property tv_left_margin_property tv_right_margin_property tv_top_margin_property tv_bottom_margin_property tv_brightness_property tv_contrast_property tv_flicker_reduction_property tv_overscan_property tv_saturation_property tv_hue_property scaling_mode_property aspect_ratio_property content_type_property degamma_lut_property degamma_lut_size_property ctm_property gamma_lut_property gamma_lut_size_property suggested_x_property suggested_y_property non_desktop_property panel_orientation_property writeback_fb_id_property writeback_pixel_formats_property writeback_out_fence_ptr_property hdr_output_metadata_property content_protection_property hdcp_content_type_property preferred_depth prefer_shadow prefer_shadow_fbdev quirk_addfb_prefer_xbgr_30bpp quirk_addfb_prefer_host_byte_order async_page_flip fb_modifiers_not_supported normalize_zpos modifiers_property cursor_width cursor_height suspend_state helper_private drm_property drm_mode_config_helper_funcs DRM_SWITCH_POWER_ON DRM_SWITCH_POWER_OFF DRM_SWITCH_POWER_CHANGING DRM_SWITCH_POWER_DYNAMIC_OFF final_kfree drm_driver postclose lastclose unload master_set master_drop gem_create_object prime_handle_to_fd prime_fd_to_handle gem_prime_import gem_prime_import_sg_table gem_prime_mmap dumb_create dumb_map_offset dumb_destroy patchlevel num_ioctls drm_vblank_crtc drm_vma_offset_manager vm_addr_space_mm drm_vram_mm drm_fb_helper drm_driver_feature DRIVER_GEM DRIVER_MODESET DRIVER_RENDER DRIVER_ATOMIC DRIVER_SYNCOBJ DRIVER_SYNCOBJ_TIMELINE DRIVER_USE_AGP DRIVER_LEGACY DRIVER_PCI_DMA DRIVER_SG DRIVER_HAVE_DMA DRIVER_HAVE_IRQ DRIVER_KMS_LEGACY_CONTEXT drm_ioctl_desc drm_ioctl_t drm_ioctl_flags DRM_AUTH DRM_MASTER DRM_ROOT_ONLY DRM_UNLOCKED DRM_RENDER_ALLOW drm_gem_shmem_object pages_use_count madv madv_list pages_mark_dirty_on_put pages_mark_accessed_on_put vmap_lock vmap_use_count map_wc vgem_device platform vgem_exit vgem_init vgem_gem_create_object vgem_postclose vgem_open vgem.ko ɬ                                                                                               	                      
                                            !                      q                           
      %                   >            	       T            
       h            <                                       $                                        (           !                                       	                             l                   8                    "           "       !           C              5    \              K                   w                               H          	                                                                                         @             0    `      N       F          U       d   	        H       s   !                {                                                                                                                                                                                          
                                 (       )                     <                     B                     T                     o                     z                                                                                                                                                                                          #                     ;                     E                     `                     j                     v                                                                                        @      E                                                                                                                                     
                                          C                     V                     ^                     t                                          
                                                    !           P                                                                            	          :      !                     3                     D                     U                     d                      __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 vgem_postclose vgem_exit vgem_device vgem_init vgem_driver vgem_open vgem_gem_create_object __UNIQUE_ID_license334 __UNIQUE_ID_description333 __UNIQUE_ID_author332 __UNIQUE_ID_author331 __UNIQUE_ID___addressable_cleanup_module330 __UNIQUE_ID___addressable_init_module329 vgem_ioctls vgem_driver_fops vgem_fence_get_driver_name vgem_fence_get_timeline_name vgem_fence_timeout vgem_fence_value_str vgem_fence_release __vgem_fence_idr_fini vgem_fence_timeline_value_str vgem_fence_ops __key.0 drm_open drm_poll devres_release_group dma_resv_reserve_fences __this_module snprintf drm_gem_shmem_dumb_create drm_gem_prime_mmap idr_replace ww_mutex_unlock cleanup_module dma_resv_add_fence kfree timer_delete_sync drm_gem_prime_handle_to_fd __fentry__ init_module drm_gem_object_lookup __x86_indirect_thunk_rax __stack_chk_fail refcount_warn_saturate drm_gem_mmap drm_ioctl drm_gem_prime_fd_to_handle drm_gem_object_free dma_fence_context_alloc idr_alloc platform_device_unregister mod_timer noop_llseek dma_fence_signal drm_read dma_fence_free vgem_fence_open ww_mutex_lock devres_open_group __mutex_init dma_fence_init drm_dev_unregister idr_destroy __devm_drm_dev_alloc drm_gem_shmem_prime_import_sg_table __x86_return_thunk jiffies dma_set_coherent_mask idr_for_each platform_device_register_full init_timer_key vgem_fence_close vgem_fence_signal_ioctl dma_set_mask kmalloc_trace dma_resv_test_signaled vgem_fence_attach_ioctl dma_fence_release drm_compat_ioctl drm_dev_register kmalloc_caches drm_release           7             Z             4   !          7   ;          c   ,       @          ]   W          J   f          S   r          4             S             7             c   D                 ]             S             S             7                G                 S             7                L                 S            7            F   !         7   1            T       :         -   A         7   N         5   W         H   a         7   m         F            S            `            S            <            7            :               T                -            F            7   H         9   [         c   4       j         ]            A                               N                              Y            T            D            ^            F   O         S   Y         K   f         +            3            1            I            B            X            @            `            1             <            <   Q         7   v         I            0            X            :            F            S            F            `   
         S            <   "         S   A         7   I                   S            Y       \         M            S            7               `               V            P                          O             *   $          C             7   ?                     D          W   h          L             \             U                                  Q                          b             *             C            ;            S                                             H                    P          6           X          ?           h          R           p          /           x          .                                                                                                                           ,                     E                     G           (         )           0         >           8         a           @         =           P         (           `         d                                                 0            @      8                   @                                                                                                                           (                    0                   8                    @             @      H             `      P                   X                   `             P      h             @      p                                 e                                                                                                                                                                     $             N      (                   ,                   0             !      4                                                                                                                                       &                    4                    8                     c       $             d       (             e       ,             j       0             ~       4                    8                    <                    @                    D                    H                    L                     P                    T             #       X             (       \                     `                    d             
       h                    l                    p                   t                   x                   |                                                                                                                                                                                            >                   @                   F                   V                   [                   `                   f                                                                                                                                                                                                                                                                                                                                                                                                                              #                  A                  E                  F                   H      $            J      (            L      ,            N      0            S      4            J      8            P      <            W      @            X      D            Y      H                  L                  P                  T                  X            	      \            
      `                  d                  h                  l                  p            !      t            &      x            4      |            @                  F                                                                                                                                                                      '                                                                           _           (             #       8          [           @             5                  2                      8           8         8           P         2            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.exit.text .rela.init.text .rela.rodata .rela__mcount_loc .rodata.str1.1 .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip .rela.smp_locks .rela.retpoline_sites __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                                                         :      @               a      (      &                    J                     Q      (                              E      @               @i      `       &                    Z                     y                                   U      @               i      P      &                    j                           H                              e      @               j            &   	                 w                     	      x                              r      @               xm      h      &                          2               `
      m                                                  
                                                               8                                    @               n      P      &                                               j                                                  X                                         @               0p      	      &                                                                                   @               y      `       &                                                                                   @               8z      0       &                                                
                                                        H                                     @               hz      `       &                                        (                                         @               z             &                                         0                                         @               z             &                    0                    @                    @               +     @               z      0       &                    J                    !                                    O     0               !      x                             X                     8"                                     h                     8"      .                             m                     $Q                                                          0Q      x	      '   (                 	                      Z      p                                                   ({      |                             0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  Ppuq2Vy~;\M[Pz4K<O GZyL4ȼu8Rk,H힪.Ɯ2 	 @d1ף:+iĦ	MȮ0	t
+s4Mo˴>廞Tz( Kʡ
Swb'ne
 	}7~|P*7Ad-LGѨT \9󰅋iznKV^Zihl?D!
$>Ai!*8-ձ         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    @5          @     @ ) (          GNU J3Bݮa        Linux                Linux   6.1.0-35-amd64      HH  1t
19      ff.         yHH  t1t
19 	     fyuI @I Hff.     f    1(     ATUSHHHVxHt,HH  LbHE u&t; 	    1f{tWH[]A\    {tz;  űE         L    kMx      L    U    UtsL   L$    L$sL   kx    f{{M
1E   O      L    kMx   pf         AT
  I   UH  SHHH    H    IT$HH  HH        -   H        H[]A\        H    H    H        H    H        H    HD$    D$    H    HD$    D$    H                                                          hid_a4tech parse failed
 hw start failed
 a4tech    can't alloc device descriptor
 license=GPL alias=hid:b0003g*v000009DAp0000022B alias=hid:b0003g*v000009DAp0000001A alias=hid:b0003g*v000009DAp0000000A alias=hid:b0003g*v000009DAp00000006 depends=hid retpoline=Y intree=Y name=hid_a4tech vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                     	                   	  
                 	                   	  +                                                                                          (               (      (                     (                               (                                                                                                                                                                m    __fentry__                                              9[    __x86_return_thunk                                      
IR    __hid_register_driver                                   a    input_event                                             &;    devm_kmalloc                                            4s    hid_open_report                                         q    hid_hw_start                                            Ë    _dev_err                                                ;    hid_unregister_driver                                   e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                                                   hid_a4tech                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0                      
t             :    
          
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  C    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> E @  ,       o= G   x=       }=              A = 
  `  ]  `       = `      = `      [        *  ?   <      Wr J    = K  B  =    @B       `B    M B  = K   B  =    B         D =   H   ]  `       X> E      +U             n_ K   @  = `     <              F =       ]  `       Wr I    ,        p(               B            I              H = ;    > U      >    @   > U     B       > R    *>    @  :>    `  H>             5!       #u            v        *  P    W>    @  _> S   k> Q    t> TG    "      u  U   > W    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? Q   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? Y    ? [ @  ? ]   ? _   ? a        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               L @     @        (@ `   @   4@ O               E       C@      L@     [@    m@    ~@      @     @    @           @            N       @   8    ?       { f @   @ `      @ *       h @    j     ]   @ k    @ m @  A n   @  p   X> a    A r @  A t   )A t   6A v    GA x @    z     Y    Y    u    @         T WA 
  h   L  Y       ] @   Y  Y    0  ]    N  |     Y @  ה  ~   %  Y   eA     qA  @  1    A    A              V       
       M        X       
       M               Z       
        M        \       
        M     I     C               ^       
        M     E        ` A      =               
b A      A        A        A    @          
d        >       
K       M     K          g       
       M     f        i        c       
       M     E                      l        e       
       M     I     C               o       
U      M     U                q       
       M     G     I     C                     s       
       M     G        u       
        M     I     C        w       
       M              y       
       M               {       
        M     E               }       
       M            U      Q                               
       M     U      Q                 
       M                                    
K       M         A      4        A    @   A    `              >              
         A       B    x         
   B M [   f B           
   B M Wr I 4
  C A     "B           
   B M  G Wr I 4
  C W   b     +B     ;B     hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code a4tech_sc hw_wheel delayed_value a4_driver_exit a4_driver_init hdev a4_probe a4_event a4_input_mapped a4_input_mapping hid-a4tech.ko   I2                                                                                                   	                                                                                                                     $            0       $       +     T       $       @     x       $       U                   l                   y                               	                                      <                                       $                    %            0       C                                      8                 '      (          v       1            Q       ?   	                N                   e                                                  x                                                                                                                	                (                     3                   ?                     H                     [                     g            x                             __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 a4_input_mapping a4_input_mapped a4_driver_init a4_driver a4_event a4_probe a4_probe.cold a4_driver_exit __UNIQUE_ID_license241 __UNIQUE_ID___addressable_cleanup_module240 __UNIQUE_ID___addressable_init_module239 a4_devices devm_kmalloc hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module __fentry__ init_module _dev_err __x86_return_thunk input_event __mod_hid__a4_devices_device_table hid_open_report                 '   !          *   1          '   W          *             '             *   
         +             +   '         *   C         +   [         +            +            '            !                        -                1       
         #                      "         *             '                                  $                                          %                                  )                                          (          )   1                   8                    D          )   M                                                  "                                      0                                                                                  e                    l                                          V                                        &                   !                                         %                    0                    s                                                                                                            $                    (                    ,                    0                    4                    8             &      <             +      @                   D                   H                   L                   P                   T                   X                   \                   `                   d             !      h             &      l                     p                    t                     x             Q       |                                                       *                            0                   X                    p                     x             0                  &                      (           8         (           P         &            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rela__mcount_loc .rela.smp_locks .rodata.str1.1 .rodata.str1.8 .modinfo .rodata .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                            &                             :      @               0+            &                    J                                                         E      @               -      x       &                    Z                           Q                              U      @               -             &                    n                     6                                    i      @               `.      0       &   	                 ~                     B      (                              y      @               .      x       &                                         l                                          @               /      0       &   
                       2               t      1                                   2                                                                             	                                                        x                                                    X                                          @               8/      x       &                                         l                                                         2                                          @               /            &                                                                             
                    @	      8                                   @               2             &                                        x
                                         @               X3             &                    (                    
                                    #     @               p3             &                    8                    
                    @               3     @               3      0       &                    R                    @                                     W     0               @      P                             `                                                          p                                                        u                     ($                                                          @$      P      '   !                 	                      (                                                         3                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  e>!r|*nkjlm~Q֍ʉKBd{1|gI/%v(
5[Dm,H75 05ikvSɜ~DuV$}eO]AO.5rt+6R
EǑE:Dl u'b.f4XZǥ3xBې	4/q;]: v'+d|DJ_oL08Up$HXFEs3\K?N8\jPO.|%ۑX}ӓ@         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >                    +          @     @ ' &          GNU %긜`/ľBҤ        Linux                Linux   6.1.0-35-amd64      f1=  	 t1    USHH^HH0t'J  AfAA  I(H   []    H    H    L$    L$        H    H    H        H        L$Hs0   J  H        L$    hid_accutouch hid-accutouch                    4%s: Invalid code %d type %d
          hid_map_usage                        P                                       license=GPL description=Elo Accutouch HID TouchScreen driver author=Martyn Welch <martyn.welch@collabora.co.uk alias=hid:b0003g*v000004E7p00000050 depends=hid retpoline=Y intree=Y name=hid_accutouch vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                              m    __fentry__                                              
IR    __hid_register_driver                                   ;    hid_unregister_driver                                   9[    __x86_return_thunk                                      $    ___ratelimit                                            ~    _printk                                                 e:X    module_layout                                                 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                               hid_accutouch                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         T  T  V  ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J                    ;              
 A       A    x         
   B J  D Wr F 4
  @ W   b     B            
t                           
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code accutouch_driver_exit accutouch_driver_init hdev accutouch_input_mapping   hid-accutouch.ko    qk                                                                                                   	                                                                                                              o       $                          -                   :                   S            	       i                   }            <                                       $                                @       8                                       w                                       (          	         '       +                   B           1       ]    =       2       s                                                  0                                                                                      #                     .                   :                     B                     O                     b            0        __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 accutouch_driver_init accutouch_driver accutouch_driver_exit accutouch_input_mapping __func__.13 _rs.12 accutouch_input_mapping.cold __UNIQUE_ID_license243 __UNIQUE_ID_description242 __UNIQUE_ID_author241 __UNIQUE_ID___addressable_cleanup_module240 __UNIQUE_ID___addressable_init_module239 accutouch_devices hid_unregister_driver __this_module __hid_register_driver cleanup_module __fentry__ init_module _printk ___ratelimit __x86_return_thunk __mod_hid__accutouch_devices_device_table               #             '   N          '   U                     \                     e          &   q                       #                                                           @                 !                @                                                   %   #             ;                                                                                    M                                                                                                      F                    L                    M                    R                     w       $                     (                    ,                     0                    4                     8             '       @                    H                                                     "                      $           8         $           P         "            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.exit.text .rela.text.unlikely .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rodata .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                            w                              :      @               X&             $                    J                                                         E      @                '      x       $                    Z                     6                                    U      @               x'      0       $                    j                     B      '                              e      @               '      H       $   	                 y      2               i                                                                                                  @               '      0       $                          2                                                                             P                                                                                                                                                      @                (      0       $                                               Z                                                   u      <                                    @               P(      h      $                                                                                                        x                                    @               )      H       $                                                                                 @                *             $                                                                                  @               *             $                    (                    @                    @               #     @               0*      0       $                    B                    
                                     G     0               
      P                             P                                                          `                                                        e                                                                                           %                    	                      #                                                         `*      t                             0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  Y+RV:o2
6j*- !X
W~0[ϽnqǷ~i1T4nj-#RX>48ijڴu֧\$[qFY h22s$<Ƕ];Mr4xy`0FTH.8bޛy'Ձxc	2Wzd}E>:ʷ0IײsTfI[<jįa3܀4HYwj5Wa(DŧiAĮsPU!+NSn&         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    w          @     @ , +          GNU P[ȉz(F>@E+        Linux                Linux   6.1.0-35-amd64              H      ff.     @     H      ff.     @         fD      AT
  @   UH  SHHH    H   ,      HIHXHH          C<   =  tv<1=  t1=  AT$-   H        H[]A\    1=  ˸@     UIIE1S   H   Hl7A   JJ| M9MFLApM)H0HH9ufMfMu[]ff	    @     AWAVAUATIUSH<  HH     H   <   <   Bj   H{fHI1f    fMH{Iͺ      f    AL$H{         AL$H{         AL$H{         H{111    G  <W  H1[]A\A]A^A_    HtE1{ Hj      H;A     D/      DD$D$    H;   1    H;D5          DD$D$6   H;   ECD)    H;>   :          CAHA9}?}  D}DEDs,DK4GH;D/          H;11    H;    1H;A|$          H;111    H   []A\A]A^A_    E1{ Lrud      1    H;AϺ5          H;$6          H;@ͺ:          CAIA9}AAnH;D/   AF   E>f$    H;@k11    H;    AL$H;         AL$H;         AL$H;           AWA
  AVEAUAATIԺ   UHH=    S    H   H 1EDEDD{HKغ
   Dk.CHHH9uSA	   HHA             AŅ    EuE1H    [D]A\A]A^A_    H=       
      IHtG   H¾   HA   A       AŅ    AFLA$    AAv        AWAAVIֺ4   AUA
  ATIH=    UDS    H   H@   @       H@Dh    fCKC HLfC	A	   A   4          Ņ%  H=    4   
      IH   4   H¾   LA   A       Ņ    AWD9    AG
f          LAW
f9    AG1AaDx      H@Dh    fCZC HLfC	A	   A   4          Ņ    E11L    H    []A\A]A^A_        ff.          AWAVAUATUSHH LH  LfeH%(   HD$1M&fH    ŅtQHD$eH+%(   R  H []A\A]A^A_    H  H    H        H    Ņu4       ƃ4  H      AF  $  1A   HT$H߾p  D$ 7    L$IF     A   HAF8   ȉʉ΃D@I1ɾ  AV(HT$AF,H      IF0    L$E11Ҿ  H߃L$    E11ҹx     Hp    E11ҹ     HQ        fAVt)  Ml$(Im AN(AV0E1E15   L    AN,AV4E1E16   L    AN tnE~$EteAF(Av,LL$D$t$    I$H  HtD$L$1҃  L    I$H  HtD$1҃A$  E1E1@   1L:       Av   L    Im AV8uIl$ AV8IL$01t  HcHA;F8rA~ ;  4       ƃ4   H      H     1A   HT$H߾@  D$ D$ D$ D$ D$ D$ D$ _    Dl$E11Ҿ@  HADL$.    1A   HT$H߾G      1A   HT$H߾H      1A   HT$H߾I      1A   HT$H߾J      1A   HT$H߾N      L$T$A   Ht$HcHigfffH")T$AF HcHigfffH")R  AF$D$H      IF0AN(1AV,HT$    T$AF C  HA   8к   E1HT$AF8    D$  AF    IH=  IFID$Iu(IE     IE   fAEAD$fAEAD$fAEAD$fAEI$`  I  I`  Iǅ      Iǅ      H.AVIM0ЃAF<1t  HcHA;F<rH.I   H( H(IE H( H(I~    L    A͂E11Ҿ@  AHDl$s    1IVA   H߾  R    AFm        SHHHH  PtOu;E11ҹx     7    E11ҹ     H    H[    E11ҹ   @      H[        f    H    H    H        H    HD$    D$    H    HD$    D$    H  H            H  H        L        I$  H            I$  H            I$  H            I$  H        I$  DH        H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H            H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H            H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H    D$    l$    H  H    D$    D$    H  H    D$    D$    H  H    D$    D$    H                                                                                                                hid_alps parse failed
 hw start failed
 failed to read command (%d)
 failed read register (%d)
 Opening low level driver
 io already started
 failed PRM_SYS_CONFIG_1 (%d)
 failed U1_DEV_CTRL_1 (%d)
 failed U1_NUM_SENS_X (%d)
 failed U1_NUM_SENS_Y (%d)
 failed U1_PITCH_SENS_X (%d)
 failed U1_PITCH_SENS_Y (%d)
 failed U1_RESO_DWN_ABS (%d)
 failed U1_PAD_BTN (%d)
 failed U1_DEVICE_TYP (%d)
 failed SP mode (%d)
 failed U1_SP_BTN (%d)
 DualPoint Stick io already stopped
 hid-alps drivers/hid/hid-alps.c  read register address error (%x,%x)
    read register size error (%x)
  read register checksum error (%x,%x)
   failed T4_PRM_ID_CONFIG_3 (%d)
 failed T4_PRM_FEED_CONFIG_1 (%d)
       failed T4_PRM_FEED_CONFIG_4 (%d)
       failed to change TP mode (%d)
                          alps_input_configured             N                  N                  N                  N                                        license=GPL description=ALPS HID driver author=Masaki Ota <masaki.ota@jp.alps.com> alias=hid:b*g*v0000044Ep0000120C alias=hid:b*g*v0000044Ep0000121E alias=hid:b*g*v0000044Ep00001215 alias=hid:b*g*v0000044Ep0000120B depends=hid retpoline=Y intree=Y name=hid_alps vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                 (               (                                             (    0  8  @  8  0  (                     @  8  0  (                     @                         (    0  8  0  (                     8                         (    0  8  0  (                     8                         (    0  8  X  8  0  (                     X                                                        (  8  X                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              m    __fentry__                                              9[    __x86_return_thunk                                      
IR    __hid_register_driver                                   {-ߓ    hid_hw_open                                             J    hid_hw_close                                            j    hid_hw_stop                                             &;    devm_kmalloc                                            4s    hid_open_report                                         q    hid_hw_start                                            Ë    _dev_err                                                ;    hid_unregister_driver                                   a    input_event                                                 input_mt_report_slot_state                                  input_mt_sync_frame                                     1Y    kmalloc_caches                                               kmalloc_trace                                           ^    hid_hw_raw_request                                      z    kfree                                                   4    __dynamic_dev_dbg                                       fi*    up                                                      #3    input_set_abs_params                                    oY    input_alloc_absinfo                                     |v    input_mt_init_slots                                     ʯ&f    down                                                    &%    input_allocate_device                                   ߖA'    input_register_device                                       input_free_device                                       V
    __stack_chk_fail                                        _    _dev_warn                                               e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                hid_alps                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0                      
t             :              
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      ?<    R<    c<    x< 	   < 
   <    <      <        *         4
     @   /!     `   <      ;5        <        <    @   <    `   =    h        p   *        =       =       %=       -=       ?=                      I=    @   4
  D    U=               ^=       l=       x=    @  =    `  A           =      =    @  =    `  =      =      =             K      X> F @  ,       = H   =       >              B 
> 
  `  ]  `       > `      #> `      [        *  ?   I=      Wr K    4> L  B  B>    @B       `B    N B  K> K   B  W>    B         E \>   H   ]  `       X> F      +U             n_ K   @  f> `     I=              G n>       ]  `       Wr J    ,        p(               C            J              I ~> ;    > U      >    @   > U     B       > S    >    @  >    `  >             5!       #u            v        *  Q    >    @  > T   > Q    > TG    "      u  V   
? X    ? G  @  !?    @  /? @    7?      H?      T?       `?       t?    @  ?    `  ? R   ? K     ? H            ?    @  4    `  ?      ? K      `     ? k   @  ? k           	      `      ov  k     @ Z    @ \ @  @ ^   /@ `   @@ b        @  NR      T@     `@      m@ `   @  x@ *    @ D     H/  0    [               M @     @        @ `   @   @ P               F       @      @     @    @    A      A     )A    =A           A            O       RA   8    ?       { g @   ]A `      fA *       i @    k     ^   oA l    |A n @  A o   @  q   X> b    A s @  A u   A u   A w    A y @    {     Z    Z    u    @         U A 
  h   L  Z       ^ @   Y  Z    0  ^    N  }     Z @  ה     %  Z   A     A  @  1    B    B              W       
       N        Y       
       N               [       
        N        ]       
        N     J     D               _       
        N     F        a B      =               
c ,B      9B        CB        NB    @          
e        >       
K       N     K          h       
       N     g        j        d       
       N     F                      m        f       
       N     J     D               p       
U      N     U                r       
       N     H     J     D                     t       
       N     H        v       
        N     J     D        x       
       N              z       
       N               |       
        N     F               ~       
       N            U      Q                               
       N     U      Q                 
       N                                    
K       N               YB     \B        _B   @     +U      hB +U  @   oB N         tB $      B $      B $      B *      B *      B *   @  B *   `  B *     B *     B *     B *     B      B $       B $      B $      B $      C $       C 
  4   C $        C $      ,C     ^ $      Y K     4C K    7C K  0  :C K  X  CC $     JC &                                  >              
                 TC       eC    x         
    oB N vC           
   oB N [   g C           
   oB N  H Wr J 4
  D W   b     C           
   oB N  H C     C      C    dU        
   oB N C     C           
   oB N X> F           C           
   oB N p  *   D    
D $   D K   D     5D     hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_class_request HID_REQ_GET_REPORT HID_REQ_GET_IDLE HID_REQ_GET_PROTOCOL HID_REQ_SET_REPORT HID_REQ_SET_IDLE HID_REQ_SET_PROTOCOL hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code U1 T4 alps_dev input2 hdev max_fingers has_sp sp_btn_info x_active_len_mm y_active_len_mm x_max y_max x_min y_min btn_cnt sp_btn_cnt t4_contact_data palm x_lo x_hi y_lo y_hi t4_input_report reportID numContacts contact zx zy palmTime kilroy timeStamp alps_driver_exit alps_driver_init alps_remove alps_probe alps_input_mapping alps_input_configured alps_sp_close alps_sp_open alps_post_resume alps_post_reset alps_raw_event read_val write_val read_flag u1_read_write_register t4_read_write_register hid-alps.ko D|`                                                                                                   	                      
                                                                                                               S       !            t       !       +            !       @            !       U                   l                   y                               	                                     <                                       $                                               	            8                        "    0              0    P       
       <    `              G            8       W   	                h                            h                 9          8       <           `                                     t                  @                         8       *           P      E                 U    M      f       j          
       {                                                            (       +                                             $            x       ,                    2                     H                     U                     k                     x   "                                                                                                      	                                                 x                                                 !                     ,                   8                     J                     `                     q                     z                                                                                                                                                                                                                                                            /                      __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 alps_input_mapping alps_driver_init alps_driver alps_sp_open alps_sp_close alps_remove alps_probe alps_probe.cold alps_driver_exit t4_calc_check_sum.part.0 alps_raw_event u1_read_write_register u1_read_write_register.cold t4_read_write_register .LC10 t4_read_write_register.cold alps_input_configured __UNIQUE_ID_ddebug239.0 alps_input_configured.cold alps_post_reset alps_post_reset.cold alps_post_resume __func__.13 __UNIQUE_ID_license245 __UNIQUE_ID_description244 __UNIQUE_ID_author243 __UNIQUE_ID___addressable_cleanup_module242 __UNIQUE_ID___addressable_init_module241 alps_id .LC18 input_allocate_device devm_kmalloc hid_unregister_driver hid_hw_start __this_module input_mt_sync_frame __hid_register_driver up input_mt_report_slot_state cleanup_module kfree __mod_hid__alps_id_device_table __dynamic_dev_dbg hid_hw_stop __fentry__ init_module input_free_device input_register_device __stack_chk_fail _dev_err input_mt_init_slots down hid_hw_open hid_hw_close _dev_warn __x86_return_thunk input_event input_set_abs_params input_alloc_absinfo hid_hw_raw_request kmalloc_trace hid_open_report kmalloc_caches             B             M             B             J   1          B   =          K   Q          B   V          A   a          B             5             S                                 7                         M   !         B            M            B            N   =         N   Y         N   w         N            N            N            M   
         N            <   1         N   W         N   n         N            N            <            9            N            N   	         M   '         <   =         N   S         N   i         N            N            <            9            N            N   !         B   J         T          P         R            Q               4                >            M            T                   R   $         Q   /            N       @         >   a         B            T   ,                R            $            Q            T   ,                R   G         Q   Q            p       ^                   m                                               $            Q                               >   
         >            M   .                   A         B   z         J            M               `                	                    @            J                              ;   -	                  	                  	                  	                  
                   
         3   P
         O   k
         O   
         P   
         P   
         O   
         H   `            !      s         I   {         K               '                                          :                  \                  ~            }                  [      4
            9      y
            =      
         4   
                                                 0       p         E            D                                 _               F            B   -                  L            I      V         M   r            k      |         M            B             B                                  8                                          :                                 G                                    	       +          G   4                    D             (       I          G   N                   ^             E       c          G   k          >   p                                E                 G                                   (                 G                                   (                 G                                   H                 G                                  G   	                            G               S      +                  4         G   =            S      M            l      V         G   _            S      o                  x         G               S                  z                L                                 p                G               S                                  G               S                                  G               S                                  G   !            S      /                  4         L   9            s      I            T      R         G   [            S      k            7      t         G   }            S                                 G               S                                  G               S                                  G               S                                  G               S                                  G   '            S      7                   @         G   I            S      Y                   b         G   k            L      {                            G               L                                  G               L                                     6                                                                               0                     P       (             `       0                    8                   @                    H             `      P             @      X                   `                                 
                                                                                                                                                          U      $             {                                                                                 !                    0                    A                    P                    Z                     `       $             g       (             r       ,             z       0                    4                    8                    <                    @                   D                   H                   L                    P             &      T             0      X                   \                   `                   d                   h                   l                   p                   t                   x                   |                                                                                                                                                                                                                                                                                                                                                 
                                                          '                   1                   6                   ;                   D                   O                                                                                                                                                        Y                  `                  g                  l                  v                                                                               $                  (                  ,                  0                  4                  8                  <            2      @            @      D            G      H            I      L            K      P            M      T            N      X            O      \            V      `                  d                  h                  l                  p                  t                  x                  |                                                                                                      T                  U                  Z                  z                  {                                                                                               8                                      M                                                                             t                                   	   *                                                0             `       8             P       H                   p                                  @                                                       =                      C                                                                                      `       8         C           P         =            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rela__mcount_loc .rodata.str1.1 .rodata.str1.8 .rodata .modinfo .rodata.cst2 .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela__jump_table .rela.data .rela.exit.data .rela.init.data .rela__dyndbg .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                             @       $                              .                     d       <                              ?                                                         :      @               R            )                    J                     *                                    E      @               X^      x       )                    Z                     I                                   U      @               ^      X      )                    n                                                         i      @               (g      0       )   	                 ~                           h                              y      @               Xg      8      )                          2               p                                        2               h                                                                                                                        B                                                  Z                                                        ^      (                                    @               h             )                                                                                                 8                                         @               i      
      )                                                                              
                    %                                         @               Ht      H       )                                        %      8                                   @               t             )                    '                    &                                    "     @               hu             )                    7                     '                                    2     @               u             )                    G                    '      8                              B     @               u      `       )                     U                    @'                    @               P     @               u      0       )   "                 o                    *                                     t     0               *      P                             }                     +                                                          +      D                                                  TE                                                          hE            *   4                 	                      `M      >                                                   (v                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  tRsΐDB?m@1Y4[7.簀1р>P|
ԮQ5ȔL^	ޢ ƞ,RR~<},#fY̲_{Q^l0YQ:l@oNvГ0 {@AXFo:%x?'r2~	b5/Ұ}f=x@٩^N)ct7{:p] 3 D}~/G+>n`*         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >                    0          @     @ 1 0          GNU )$6N~<!746        Linux                Linux   6.1.0-35-amd64      AVAUATLX  UHSLH  AFtAF    }<,  teH       LI    H3        HI9t'H;    H3LH        HI9u[1]A\A]A^    H    L                 UHSHH:FHH  v*~Fet@HMHu)   t:St?H[]    HMHt܃:;v׀x5et.H̀~@e    HMHu봀x.ux:u    x;eu    f         USH@tHD[]    HP  D9uֺ      DD$H<$    DD$H<$ff.          HH׋(  LH  t9AHNxHt-w@t$SMZA@tf1  Au1[    1        LIOuA      Dڋ    t)H      
rHftf9uHtJ=     H    )     rHftf9uHtJ    t)H    8   
rHftf9uHtJfu1EAR   P<+   HH  H       
PHft7f9uHt-IP  pIP  @Ƅ	  MZA   tPMZIrrI  t7H    $   
PHftf9uHtE   I3Hf9O>wLωm   [    g     l     ft     @@   H    HyAغ   QAGxH
=*MZ@u%@tt9ARHH    pI3ArtH    CvQ@  tIz  tM  tEH    
  H       H    HCH    H    ff.     f    SHH  HHxx    H[    ff.          AT   A  UHH=    S    HtNHH          fDcA	   HA   f1fC    H߉    []A\        Hp  lff.         AV
  AUL  ATUSHLvLﾨ       H    HHHLpHH      Aą    -   H    Aą    HxE111H    H    H5    HHƘ:      HH  @	tZH   tPHc  Hc  HHHHPHDHtHt%H  t   9  t
   H    A   u[D]A\A]A^    HsXH{XHH  H9t܋H  HHօu  HH9   HP@HR:  uH=             IHt   L   HA   A           AV        D  
    L    H   HtVHp  H   1HH     H   AVPH   H@(    9    H   1L    L    D[]A\A]A^    H6H9ANENLH    EFH        9ff.     f    SHHHH  @	tnH   tdHc  Hc  HHHHPHDHtHt9H  t/   9  t!       H5    H[HƘ:      [    f    HH  B t.SHH92  t%QftCftbH1[    1    H^HH   th   AfyA   IH^HH0tq  AfqA  IH^HH0toA  fHA  IuH    H    L$    L$    I     FH    H    L$    L$t    H    H    L$    L$t    f.         ATHUSHHс  t1Ɂ  tH[]A\    HsLH  HV*
HkHH04    @fHA  I@HAD$   HCH8 H    H0JHHf: uH    JHHf: uH    JHHf: uH    JHHf: uH    JHHf: uH    JHHf: uH    JHHf: uH    JHHf: uH    JHHf: uH   []A\    H    H    L$    L$    I         H    H    H        H  H        If    H  H        IN       H4$H  H    HT$    H$HT$@F@@    H    H  HT$H$    H$HT$@;@5Hu    H  H    HT$H$    HT$pH$2  Hx    H     	    H    L        H    L        H    L        H    L        H    LA        H    L        L$H         H        L$    L$Hs0     H        L$    L$Hs0     H        L$    L$Hu0     H        L$    H        hid_apple Bluetooth Keyboard can't alloc apple descriptor
 parse failed
 hw start failed
 backlight request failed: %d
 apple::kbd_backlight apple drivers/hid/hid-apple.c SONiX USB DEVICE Keychron AONE GANSS                                                                                                     Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling
   Non-apple keyboard detected; function keys will default to fnmode=2 behavior
   fixing up Magic Keyboard JIS report descriptor
 fixing up MacBook JIS keyboard report descriptor
       fixing up Magic Keyboard battery report descriptor
     backlight config struct: bad version %i
        backlight config: off=%u, on_min=%u, on_max=%u
 backlight set request failed: %d
       4hid_apple: %s: Invalid code %d type %d
                                                                       apple_backlight_init    hid_map_usage                                      `                                                                                                                                                                                                                                                                                !                  "                  )                 *                 +                 O                  O                  P                  P                  Q                  ,                 -                 V                 U                 W                 .                 g               L   g                  l               L   l                  #                  $                  %                  0                  1                  2                  6                  7                  8                  ?                  @                  A                  B                  C                  D                  E                  F                  G                  L                  M                  N                  I                  J                  K                  R                  S                  T                  b                  c                  d                  Y                  Z                  [                                                                        r                  s                  t                  z                 {                 |                 }                 ~                                                      @                  9                 :                 ;                 
                                                 L                                     L                                     L                                    L                                                                                                          8 }   } 8   d ~   ~ d           ) V   V )                       $ O   % P   & Q    K    L    M    G   	 H   
 I   2 R   4 S   5 N   ' J    7    u    b   @ E   ` `                      o   ;   <   = q  > r  ? s  @ E  A   B   C   D   g h   l m   i f   j k          o    n   ;   <   = x  >   ?   @   A   B   C   D q  W r  X s  g h   l m   i f   j k                        o    n    ;    <    =    >    ?    @    A   	 B   
 C    D    W   
 X   g h   l m   i f   j k                        o    n   )     ;    <    =    >    ?    @    A   	 B   
 C    D    W   
 X   g h   l m   i f   j k                  o    n   ;   <   = x  >   @   A   B   C q  D r  W s  X   g h   l m   i f   j k                              o    n   ;   <   = x  >   ?   @   A   B   C   D q  W r  X s  g h   l m   i f   j k                        o    n   ;   <   = x  >   A   B   C   D q  W r  X s  g h   l m   i f   j k                                    o    n   ;   <   = x  >   @ E  A   B   C   D q  W r  X s  g h   l m   i f   j k             swap_fn_leftctrl        swap_opt_cmd    iso_layout fnmode license=GPL parm=swap_fn_leftctrl:Swap the Fn and left Control keys. (For people who want to keep PC keyboard muscle memory. [0] = as-is, Mac layout, 1 = swapped, PC layout) parmtype=swap_fn_leftctrl:uint parm=swap_opt_cmd:Swap the Option ("Alt") and Command ("Flag") keys. (For people who want to keep Windows PC keyboard muscle memory. [0] = as-is, Mac layout. 1 = swapped, Windows layout.) parmtype=swap_opt_cmd:uint parm=iso_layout:Swap the backtick/tilde and greater-than/less-than keys. ([-1] = auto, 0 = disabled, 1 = enabled) parmtype=iso_layout:int parm=fnmode:Mode of fn key on Apple keyboards (0 = disabled, 1 = fkeyslast, 2 = fkeysfirst, [3] = auto) parmtype=fnmode:uint alias=hid:b0005g*v0000004Cp0000029F alias=hid:b0003g*v000005ACp0000029F alias=hid:b0005g*v0000004Cp0000029A alias=hid:b0003g*v000005ACp0000029A alias=hid:b0005g*v0000004Cp00000320 alias=hid:b0003g*v000005ACp00000320 alias=hid:b0005g*v0000004Cp0000029C alias=hid:b0003g*v000005ACp0000029C alias=hid:b0003g*v000005ACp0000030B alias=hid:b0003g*v000005ACp0000030A alias=hid:b0005g*v000005ACp0000023B alias=hid:b0005g*v000005ACp0000023A alias=hid:b0005g*v000005ACp00000239 alias=hid:b0003g*v000005ACp00000340 alias=hid:b0003g*v000005ACp00000280 alias=hid:b0003g*v000005ACp0000027F alias=hid:b0003g*v000005ACp0000027E alias=hid:b0003g*v000005ACp0000027D alias=hid:b0003g*v000005ACp0000027C alias=hid:b0003g*v000005ACp0000027B alias=hid:b0003g*v000005ACp0000027A alias=hid:b0003g*v000005ACp00000274 alias=hid:b0003g*v000005ACp00000273 alias=hid:b0003g*v000005ACp00000272 alias=hid:b0003g*v000005ACp00000292 alias=hid:b0003g*v000005ACp00000291 alias=hid:b0003g*v000005ACp00000290 alias=hid:b0003g*v000005ACp0000025B alias=hid:b0003g*v000005ACp0000025A alias=hid:b0003g*v000005ACp00000259 alias=hid:b0003g*v000005ACp00000264 alias=hid:b0003g*v000005ACp00000263 alias=hid:b0003g*v000005ACp00000262 alias=hid:b0003g*v000005ACp00000254 alias=hid:b0003g*v000005ACp00000253 alias=hid:b0003g*v000005ACp00000252 alias=hid:b0003g*v000005ACp0000024B alias=hid:b0003g*v000005ACp0000024A alias=hid:b0003g*v000005ACp00000249 alias=hid:b0003g*v000005ACp0000024E alias=hid:b0003g*v000005ACp0000024D alias=hid:b0003g*v000005ACp0000024C alias=hid:b0003g*v000005ACp00000247 alias=hid:b0003g*v000005ACp00000246 alias=hid:b0003g*v000005ACp00000245 alias=hid:b0003g*v000005ACp00000244 alias=hid:b0003g*v000005ACp00000243 alias=hid:b0003g*v000005ACp00000242 alias=hid:b0003g*v000005ACp00000241 alias=hid:b0003g*v000005ACp00000240 alias=hid:b0003g*v000005ACp0000023F alias=hid:b0003g*v000005ACp00000238 alias=hid:b0003g*v000005ACp00000237 alias=hid:b0003g*v000005ACp00000236 alias=hid:b0003g*v000005ACp00000232 alias=hid:b0003g*v000005ACp00000231 alias=hid:b0003g*v000005ACp00000230 alias=hid:b0003g*v000005ACp00000225 alias=hid:b0003g*v000005ACp00000224 alias=hid:b0003g*v000005ACp00000223 alias=hid:b0005g*v0000004Cp0000026C alias=hid:b0003g*v000005ACp0000026C alias=hid:b0005g*v0000004Cp00000267 alias=hid:b0003g*v000005ACp00000267 alias=hid:b0005g*v000005ACp0000022E alias=hid:b0005g*v000005ACp00000257 alias=hid:b0005g*v000005ACp00000255 alias=hid:b0005g*v000005ACp00000256 alias=hid:b0005g*v000005ACp0000022D alias=hid:b0005g*v000005ACp0000022C alias=hid:b0003g*v000005ACp00000251 alias=hid:b0005g*v000005ACp00000250 alias=hid:b0003g*v000005ACp00000250 alias=hid:b0005g*v000005ACp0000024F alias=hid:b0003g*v000005ACp0000024F alias=hid:b0003g*v000005ACp0000022B alias=hid:b0003g*v000005ACp0000022A alias=hid:b0003g*v000005ACp00000229 alias=hid:b0003g*v000005ACp00000222 alias=hid:b0003g*v000005ACp00000221 alias=hid:b0003g*v000005ACp00000220 alias=hid:b0003g*v000005ACp0000021F alias=hid:b0003g*v000005ACp0000021E alias=hid:b0003g*v000005ACp0000021D alias=hid:b0003g*v000005ACp0000021C alias=hid:b0003g*v000005ACp0000021B alias=hid:b0003g*v000005ACp0000021A alias=hid:b0003g*v000005ACp00000219 alias=hid:b0003g*v000005ACp00000218 alias=hid:b0003g*v000005ACp00000217 alias=hid:b0003g*v000005ACp00000216 alias=hid:b0003g*v000005ACp00000215 alias=hid:b0003g*v000005ACp00000214 alias=hid:b0003g*v000005ACp0000020F alias=hid:b0003g*v000005ACp0000020E alias=hid:b0003g*v000005ACp00000304 depends=hid retpoline=Y intree=Y name=hid_apple vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                                                                                                  (  0  (                   0                (          (                (          (                                                                                                                   (  0  (                   0  (                   0                                                                             (               (               (                  0  (  0      (                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          m    __fentry__                                              
IR    __hid_register_driver                                   Z    strncmp                                                 SMu    strlen                                                  9[    __x86_return_thunk                                      Z%    strcmp                                                  o    _dev_info                                               A̴f    kmemdup                                                 a    input_event                                             ܐ    timer_delete_sync                                       j    hid_hw_stop                                             ;    hid_unregister_driver                                   1Y    kmalloc_caches                                               kmalloc_trace                                           ^    hid_hw_raw_request                                      z    kfree                                                   &;    devm_kmalloc                                            4s    hid_open_report                                         q    hid_hw_start                                            9c    init_timer_key                                          P    jiffies                                                     mod_timer                                               P    hid_hw_request                                          Qkn    devm_led_classdev_register_ext                          4    __dynamic_dev_dbg                                       Ë    _dev_err                                                $    ___ratelimit                                            ~    _printk                                                 6    param_ops_uint                                          UT{    param_ops_int                                           e:X    module_layout                                                                                 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       hid_apple                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         H  H  f         
t             :              
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      ?<    R<    c<    x< 	   < 
   <    <      <        *         4
     @   /!     `   <      ;5        <        <    @   <    `   =    h        p   *        =       =       %=       -=       ?=                      I=    @   4
  D    U=               ^=       l=       x=    @  =    `  A           =      =    @  =    `  =      =      =             K      X> F @  ,       = H   =       >              B 
> 
  `  ]  `       > `      #> `      [        *  ?   I=      Wr K    4> L  B  B>    @B       `B    N B  K> K   B  W>    B         E \>   H   ]  `       X> F      +U             n_ K   @  f> `     I=              G n>       ]  `       Wr J    ,        p(               C            J              I ~> ;    > U      >    @   > U     B       > S    >    @  >    `  >             5!       #u            v        *  Q    >    @  > T   > Q    > TG    "      u  V   
? X    ? G  @  !?    @  /? @    7?      H?      T?       `?       t?    @  ?    `  ? R   ? K     ? H            ?    @  4    `  ?      ? K      `     ? k   @  ? k           	      `      ov  k     @ Z    @ \ @  @ ^   /@ `   @@ b        @  NR      T@     `@      m@ `   @  x@ *    @ D     H/  0    [               M @     @        @ `   @   @ P               F       @      @     @    @    A      A     )A    =A           A            O       RA   8    ?       { g @   ]A `      fA *       i @    k     ^   oA l    |A n @  A o   @  q   X> b    A s @  A u   A u   A w    A y @    {     Z    Z    u    @         U A 
  h   L  Z       ^ @   Y  Z    0  ^    N  }     Z @  ה     %  Z   A     A  @  1    B    B              W       
       N        Y       
       N               [       
        N        ]       
        N     J     D               _       
        N     F        a B      =               
c ,B      9B        CB        NB    @          
e        >       
K       N     K          h       
       N     g        j        d       
       N     F                      m        f       
       N     J     D               p       
U      N     U                r       
       N     H     J     D                     t       
       N     H        v       
        N     J     D        x       
       N              z       
       N               |       
        N     F               ~       
       N            U      Q                               
       N     U      Q                 
       N                                    
K       N                          r          
                            
                            
 YB        ?              
 rB       YX      B N   B      B      B      B      B N     4    @   B       B       B      B I                 B      h[  &       ]O &        $              
                          
                          
 C      $C $       v  $      B &      B &       B &   0   .C      $C $       v  $       &       &                                
                          
                          
                          
                          
                          
            >    a          
                                O         IC       [C    x         
    B N mC           
   B N [   g zC           
    [X  @ UX  C           
   B N = H C           
   B N  H Wr J 4
  D W   b     C     C           
U  B N > U  B    C     C            
   B N Wr J 4
  D A     D           
      +U  *          ;5    A     D     hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_class_request HID_REQ_GET_REPORT HID_REQ_GET_IDLE HID_REQ_GET_PROTOCOL HID_REQ_SET_REPORT HID_REQ_SET_IDLE HID_REQ_SET_PROTOCOL hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code apple_non_apple_keyboard apple_sc_backlight hdev backlight_off backlight_on_min backlight_on_max apple_sc fn_on fn_found pressed_numlock battery_timer apple_key_translation apple_backlight_config_report report_id apple_backlight_set_report apple_driver_exit apple_driver_init apple_remove apple_probe apple_backlight_led_set apple_input_configured apple_input_mapped apple_input_mapping apple_report_fixup apple_battery_timer_tick apple_event input_event_with_scancode   hid-apple.ko    Z                                                                                                   	                                                                                                              %                      )                            $                  $       +           $       @           $       U     ;      $       j     _      $                  $                  $                  $                  $                  $            7      $            [      $                 $       '          $       <          $       Q          $       f          $       {    3      $           W      $           {      $                 $                 $                 $                 $           /      $       #    S      $       8    w      $       M          $       b          $       w          $                 $           +      $           O      $           s      $                 $                 $       
          $                 $       4    '      $       I    K      $       ^    o      $       s          $                 $                 $                 $           #	      $           G	      $           k	      $           	      $           	      $       0    	      $       E    	      $       Z    
      $       o    C
      $           g
      $           
      $           
      $           
      $           
      $                 $           ?      $           c      $       ,          $       A          $       V          $       k          $                 $           ;      $           _      $                 $                 $                 $                 $           
      $       (    7
      $       =    [
      $       R    
      $       g    
      $       |    
      $           
      $                 $           3      $           W      $           {      $                 $                 $       $          $       9          $       N    /      $       c    S      $       x    w      $                 $                 $                 $                 $           +                                   7                 C      	       4    L             H    [      <       `                   i           $       q                       @       8                             `	                          =                             =              	    `      b       	                N
    |                )                (	    	                 x             A	    	                )               T	    	             l	    
      l       	    	      x       	          r       	    @
      f       	          x       	    @      l       	    
      r       
    `
      `       
    @      r       :
    p      "       G
   	                Y
                 y
                  
    @            
                 
   %         8       
                  
    p	      6      
                  
            (           u      x           
            1          '       J                   V                   m   !                   #                    @       	                                                      (       -    0             J                  f                     (       (           H      
                 r                            P       (           X             
    .      h       ,
                 F
    x       (       U
    c             h
                     m
                     |
    @       	      
                     
                     
                     
   '               
                     
   	                                                                               /                     ;                     F                   R                     Z                     g                     q                     z                                                                                                                                                                                                                                                                                  '                     5                     E                      __UNIQUE_ID_alias289 __UNIQUE_ID_alias288 __UNIQUE_ID_alias287 __UNIQUE_ID_alias286 __UNIQUE_ID_alias285 __UNIQUE_ID_alias284 __UNIQUE_ID_alias283 __UNIQUE_ID_alias282 __UNIQUE_ID_alias281 __UNIQUE_ID_alias280 __UNIQUE_ID_alias279 __UNIQUE_ID_alias278 __UNIQUE_ID_alias277 __UNIQUE_ID_alias276 __UNIQUE_ID_alias275 __UNIQUE_ID_alias274 __UNIQUE_ID_alias273 __UNIQUE_ID_alias272 __UNIQUE_ID_alias271 __UNIQUE_ID_alias270 __UNIQUE_ID_alias269 __UNIQUE_ID_alias268 __UNIQUE_ID_alias267 __UNIQUE_ID_alias266 __UNIQUE_ID_alias265 __UNIQUE_ID_alias264 __UNIQUE_ID_alias263 __UNIQUE_ID_alias262 __UNIQUE_ID_alias261 __UNIQUE_ID_alias260 __UNIQUE_ID_alias259 __UNIQUE_ID_alias258 __UNIQUE_ID_alias257 __UNIQUE_ID_alias256 __UNIQUE_ID_alias255 __UNIQUE_ID_alias254 __UNIQUE_ID_alias253 __UNIQUE_ID_alias252 __UNIQUE_ID_alias251 __UNIQUE_ID_alias250 __UNIQUE_ID_alias249 __UNIQUE_ID_alias248 __UNIQUE_ID_alias247 __UNIQUE_ID_alias246 __UNIQUE_ID_alias245 __UNIQUE_ID_alias244 __UNIQUE_ID_alias243 __UNIQUE_ID_alias242 __UNIQUE_ID_alias241 __UNIQUE_ID_alias240 __UNIQUE_ID_alias239 __UNIQUE_ID_alias238 __UNIQUE_ID_alias237 __UNIQUE_ID_alias236 __UNIQUE_ID_alias235 __UNIQUE_ID_alias234 __UNIQUE_ID_alias233 __UNIQUE_ID_alias232 __UNIQUE_ID_alias231 __UNIQUE_ID_alias230 __UNIQUE_ID_alias229 __UNIQUE_ID_alias228 __UNIQUE_ID_alias227 __UNIQUE_ID_alias226 __UNIQUE_ID_alias225 __UNIQUE_ID_alias224 __UNIQUE_ID_alias223 __UNIQUE_ID_alias222 __UNIQUE_ID_alias221 __UNIQUE_ID_alias220 __UNIQUE_ID_alias219 __UNIQUE_ID_alias218 __UNIQUE_ID_alias217 __UNIQUE_ID_alias216 __UNIQUE_ID_alias215 __UNIQUE_ID_alias214 __UNIQUE_ID_alias213 __UNIQUE_ID_alias212 __UNIQUE_ID_alias211 __UNIQUE_ID_alias210 __UNIQUE_ID_alias209 __UNIQUE_ID_alias208 __UNIQUE_ID_alias207 __UNIQUE_ID_alias206 __UNIQUE_ID_alias205 __UNIQUE_ID_alias204 __UNIQUE_ID_alias203 __UNIQUE_ID_alias202 __UNIQUE_ID_alias201 __UNIQUE_ID_alias200 __UNIQUE_ID_alias199 __UNIQUE_ID_alias198 __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 apple_driver_init apple_driver apple_input_configured non_apple_keyboards apple_input_configured.cold apple_report_fixup apple_report_fixup.cold input_event_with_scancode apple_event swapped_fn_leftctrl_keys apple_iso_keyboard swapped_option_cmd_keys magic_keyboard_alu_fn_keys powerbook_numlock_keys apple2021_fn_keys magic_keyboard_2015_fn_keys macbookpro_no_esc_fn_keys macbookair_fn_keys apple_fn_keys powerbook_fn_keys macbookpro_dedicated_esc_fn_keys apple_remove apple_driver_exit apple_backlight_set.constprop.0 apple_backlight_led_set apple_probe apple_battery_timer_tick __UNIQUE_ID_ddebug247.0 apple_probe.cold apple_input_mapped __func__.16 _rs.15 apple_input_mapped.cold apple_input_mapping apple_input_mapping.cold __func__.18 __UNIQUE_ID_license251 __UNIQUE_ID___addressable_cleanup_module250 __UNIQUE_ID___addressable_init_module249 apple_devices __UNIQUE_ID_swap_fn_leftctrl246 __UNIQUE_ID_swap_fn_leftctrltype245 __param_swap_fn_leftctrl __param_str_swap_fn_leftctrl __UNIQUE_ID_swap_opt_cmd244 __UNIQUE_ID_swap_opt_cmdtype243 __param_swap_opt_cmd __param_str_swap_opt_cmd __UNIQUE_ID_iso_layout242 __UNIQUE_ID_iso_layouttype241 __param_iso_layout __param_str_iso_layout __UNIQUE_ID_fnmode240 __UNIQUE_ID_fnmodetype239 __param_fnmode __param_str_fnmode .LC9 param_ops_uint __mod_hid__apple_devices_device_table devm_kmalloc hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module kfree timer_delete_sync __dynamic_dev_dbg hid_hw_stop __fentry__ init_module _printk ___ratelimit _dev_info _dev_err mod_timer hid_hw_request strncmp devm_led_classdev_register_ext __x86_return_thunk input_event strcmp jiffies init_timer_key kmemdup hid_hw_raw_request kmalloc_trace strlen param_ops_int hid_open_report kmalloc_caches                  -             =             `	      L             	      T             \                    m             {                                                           
                                                          )            9       H                   S            k       a                                                "            )            /            x      Q         
   \            	                  s                  	               
                       	      .            
                  	                  @                              @
                                    @      1            
      >            `
      N            @      Z            
      q                                                                                                       	                        !            A            i            r            A                              -                                                                                          E            ^                        D                                           [                                                        @            x       ^                   k                  |                                                p               	                                   M	            T	            d	            j	            q	            	            	            2
                   9
                    B
            N
            q      a
                   h
                    q
            ~
                  
                   
                    
            
                  
            
            G            
      e            `
                  	                  	                  
                  @
                                                      @      B            I                   P                    Y            e                                                                                      @                    
                                               6       '             P       ,             9                    K                    U             k                   r                                                                                                                                                       @                               |                                                |                   I       (            -            N      4            ;       <            A            N      H                   V            [            N      d            Z       l            q            |                                                N
                                                N
                                                N
                                                e                   @                                                                                                `                          (             p      0                   8                    @             @      H                   P             p	      X             
                                                          
                   -                   ?                   S                   m                                             $                   (                   ,                   0             	      4             #      `	                   h	                   p	                   x	                                 0                                                           
           (             H      0                     8                     H          
          P             X      X                     `                     p             x      x             c                                                             |                                                           !                   (                                                         ]                                       i	      $             	      (             	      ,             
      0             A                                                             	                                                                                                                                $                    (                    ,                    0                    4                    8                    <                    @                    D                    H                   L                   P                   T             W      X             `      \             f      `             i      d             o      h             y      l                   p                   t                   x                   |                                                   !                   -                                                         c                   p                   v                                                                                                                                                                                                                                                        4                   @                   G                   N                   W                   X                   Y                   S                   W                   Y                   [                   ]                   b                                                                                                                                                       $                  (            \	      ,            h	      0            i	      4            n	      8            p	      <            	      @            	      D            	      H            	      L            	      P            
      T            
      X            
      \            
      `            
      d            
      h            
      l            
      p            
      t            
      x            
      |            6                  <                  ?                  A                  F                  u                                                                             =                                      u                                                                                                                                  	   *       @                    H             @       p             @      x             p                                                          
                   p	                                                                                                                                                   p      8                    P                     .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .rela.rodata .modinfo .rela__param .rodata.cst2 .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela__jump_table .rela.data .rela.exit.data .rela.init.data .rela__dyndbg .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                           @       $                              .                     d       <                              ?                            u                             :      @               x            .                    J                     
                                    E      @                     x       .                    Z                     4
                                   U      @                      h      .                    n                     H                                    i      @               h      0       .   	                 y      2               T                                                        $      `                                    @                            .                          2                                                                      |      8                                    @                     P      .                                               j                                    @                     `       .                                         *!                                                        1                                          @               h            .                                         h2                                                        j2      4                                    @                     8      .                                         2                                   
                    85                                        @                      h
      .                                         7                                    ,                    >                                    '     @                     H       .                    >                    >                                    9     @               У             .                    I                    `@                                    D     @                            .   !                 Y                    h@                                    T     @                            .   #                 i                    p@      8                              d     @               ؤ      `       .   %                 w                    @                    @               r     @               8      0       .   '                                     @D                                         0               @D      P                                                  D                                                          D                                                        X`                                                          p`            /                    	                       t      T                                                   h                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  
z@T:ӷnTL24[HKhb~
Ǩr(|
=N3n>WbSG~0b*fS.3G aobepՕN:}Y
b̾W,r Pا7m ۿˇCFm-UvX4(
p]v|#5μCU)+@/ql!Ϡ
>J% ɋ.?C
ZoȶHsNP^m\         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >                    @          @     @ ( '          GNU uD[jS;ݥ        Linux                Linux   6.1.0-35-amd64              HH~1H      HH  H9HAH2H   H     H   HG(  HqH s r   H@    fP HpH      HpHw0HHH9ug01    f         SHH      H{8[    @     ATL  
  p   USHLH    HthHXHHx8E1,     11H    @`        HH  H        =   H        H[]A\         ATLg(USHL    S,HŅu[HL]A\    H{1ɾ       H{111    C,    H[L]A\    f.         AVAUATUSHH  u*(  t!f:%HtEEh    ;&   f;%t[1]A\A]A^    {uH} H    H       ҀzuLm`E1L    UdIątH} 1ɾ       H} 111    Eh   HH}       TEUd    H} 111    H5    H}8H    DuhLL    5UdH}           H} 111    H5    H}8H    S@ZRA    H    H    H        H    LD$    D$HLD$    D$    H    LD$    D$H                                                                hid_appleir parse failed
 hw start failed
 possible flat battery?
 appleir                              %%                               @                   @                   A                   B                   C                                      license=GPL description=HID Apple IR remote controls author=Benjamin Tissoires <benjamin.tissoires@redhat.com> author=James McKenzie alias=hid:b0003g*v000005ACp00008243 alias=hid:b0003g*v000005ACp00008242 alias=hid:b0003g*v000005ACp00008241 alias=hid:b0003g*v000005ACp00001440 alias=hid:b0003g*v000005ACp00008240 depends=hid retpoline=Y intree=Y name=hid_appleir vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                     (               (                                                                   (  0  (                   0                  (                                                                                                                                                                                                                               m    __fentry__                                              9[    __x86_return_thunk                                      
IR    __hid_register_driver                                   j    hid_hw_stop                                             ܐ    timer_delete_sync                                       &;    devm_kmalloc                                            9c    init_timer_key                                          4s    hid_open_report                                         q    hid_hw_start                                            Ë    _dev_err                                                W    devm_kfree                                              ;    hid_unregister_driver                                   4    _raw_spin_lock_irqsave                                  p\    _raw_spin_unlock_irqrestore                             a    input_event                                             P    jiffies                                                     mod_timer                                               e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                   hid_appleir                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0               ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J                    F               
 A   p   ` +U      ;5 J @   A     A I    '  *     A       A    @                                 ;              
                                   
 
B       B    x         
    ;5 J 2B           
   ;5 J [   c AB           
   ;5 J  D Wr F 4
  @ W   b     OB           
   ;5 J o= D eB           
   ;5 J X> B      &     ~B     B             
t                           
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code appleir keymap key_up_timer current_key prev_key_idx appleir_driver_exit appleir_driver_init appleir_remove appleir_probe appleir_input_mapping appleir_input_configured appleir_raw_event key_up_tick hid-appleir.ko                                                                                                     	                      
                                                                         $                   $       +            $       @            $       U           $       j     9                                     E                  Q      	            Z                  k      <                                       $                                              $            8      3                  L                  [                  i    p      f       u            H          	                          m                                                                                                    -                   D           )       _    5       :       u    o                                                                                                                       	                                                                                #                     .                   :                     E                     N                     X                                                                                                                                                  __UNIQUE_ID_alias198 __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 appleir_input_mapping appleir_driver_init appleir_driver appleir_input_configured appleir_remove appleir_probe key_up_tick appleir_probe.cold appleir_driver_exit appleir_raw_event flatbattery.15 keydown.13 __UNIQUE_ID___addressable_cleanup_module244 __UNIQUE_ID___addressable_init_module243 appleir_devices __UNIQUE_ID_license242 __UNIQUE_ID_description241 __UNIQUE_ID_author240 __UNIQUE_ID_author239 devm_kmalloc hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module timer_delete_sync _raw_spin_lock_irqsave hid_hw_stop __fentry__ init_module devm_kfree _dev_err mod_timer __mod_hid__appleir_devices_device_table _raw_spin_unlock_irqrestore __x86_return_thunk input_event jiffies init_timer_key hid_open_report                 1             8             1             8             1             0             .             1             (               p      )         ;   8         <   @            +       M         *   U            b         8   q         1            /            7            9            9            7            1   .         8   ?            +       K         4   b         /   |         9            9            9            9            :            5            7             9            9            :   #         5             1                                  +                                          ,                                 4   "          3   +             U      2                    >          4                                  )                                                                                                           (             p      0                                                                          
                                        a                   -                                                                                                                                                                                             $                    (                    ,                    0                    4             ]      8             ^      <             _      @             a      D             f      H             m      L             p      P             w      T             |      X             }      \                   `                   d                   h                   l                   p                   t                   x                   |                                                                                                                               $                   '                   )                   +                   -                   2                   M                                                                                 H                                                              C                            0                    8                    H                   p                                                    -                      2           8         2           P         -            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rela__mcount_loc .rodata.str1.1 .rela.smp_locks .rodata .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                         @       $                              .                     d       <                              ?                            M                             :      @               3            %                    J                                                         E      @               7      x       %                    Z                           H                              U      @               7             %                    n                     T                                    i      @                8      0       %   	                 ~                     `      8                              y      @               P8             %                          2                     K                                                                                            @               8      0       %                                                                                                                                                            W                                          @               (9      `       %                                         g      ,                                                                                            @               9            %                                         `	                                                         
      8                                    @               8>             %                    	                                                             @               >             %                                                                                  @               >             %                    )                    @                    @               $     @               ?      0       %                    C                                                         H     0                     P                             Q                                                          a                                                        f                     )                                                          )            &   (                 	                      /                                                         @?      u                             0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  T\}[Rt! %F<s/7
۞y3%p'KIfn^N
`ľ=-<Tá#W؞ӯOl<5
N-p&pWS(exw\WLP* &`#y[6#8e[Zċ-Z16lsPJb毌
p$G|߬(75a݉H <Ƚ&jU1M         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                              @     @ - ,          GNU VE୉8RObg        Linux                Linux   6.1.0-35-amd64      UH  SHH      HH    []    ff.     f    AT  I   UH    S    H    0LA	   HA      H    H߉        1[]A\         HH  Hx( u1    q    AUIATIUHL  SH    Ht9A4$HHLA	   A   H    H߉    []A\A]            SHeH%(   HD$HH  HP 1Ht)BHt$   HD$ZĈD$E    HT$eH+%(   u
H[        ff.          UHo$SHHHeH%(   HD$1D$ZD$     HHƋC D$    H{   Ht$    HD$eH+%(   uH[]        ff.         f1Ɂ  1t1    %  t=   tz     1    fD      AWAVAUATIUHSHHLH  It	:7   @tU L   e     t5H   H҃⟁  HEAAń  9U    t
} K  tM K  tMw^HH[]A\A]A^A_    ~6%g~7e]    {Ig{J]       u
   Z   19tHcЉƃ<uHcЀ<ZuVHcҀ<uٍnHcH݀} u    McB<;	=EEMcB<v+Hߺ  L$M Hc    L$HH    {=tM {> uM$  
  P   L    IH          
    ff.          USHH  HH} Ht:Hǜ      HHE ƀ  HE H      H} Hx      H[]    f    AUATIUSH    B   Hw2   /u;1H$H    H9   x{   A$1FIu<H@HX  I$1/u&H$    H    H9   x:   A$1H[]A\A]    A$   1A$   1H    	     H=    H:  H       IH   H}A   E1Hƅ   	          ƅ    	tL    _AEAUkdHH'      t1D    L    D      AW
  AVAUL  ATI   USHLH@eH%(   HD$81    H    HH  Md$HX  HH    L     HtAI   Le AtHE(    A@tH        AĀt,  @HE(    A   tH        At
,      H]AĀ     LH  Ld$1   LL  @   IF`    IFh   IFp    AFH   HAƆ    LAǆ       Iǆ       Lt$    H@        H   LH      L    IF@Hf  H    Iv@LLI       IF8H=     LH    H    Aą    -   H    Aą    HUH    H}( H    H    HEHH}( tHaŅuFHD$8eH+%(     H@D[]A\A]A^A_    L   ML  HA    H  H@ЀxHE    H           t_HE(    Le H  H@ЀxI,  @Le HE(    ADH    L    H           tHE(    Le ZHE(    Le I    ff.         AVAUATIUSH0HH  HneH%(   HD$(1Ht1HVz0t'1HT$(eH+%(     H0[]A\A]A^    HS(H     
E1E11Ҿ5   H    HC(E1E11Ҿ6   HH    HC(HDh    HH  HtD  HC(HDh    HH  HtD$  HC(xg    HU0Hm HC(   Hp        {0 HkHL$1Ҿ!  DSTSD$        D  uD$I$H  M$  H          Ht$LHZASUS TeHD$Hch.Inc. HD$           Ht$LD$Z 1fD$    H=       
      HH     H¾Z   LA   A           DuH    A  
    L    HC H}  ƀ   HC LH   ǀ      HC Lp  HC H     HC @   HC H@     HC H@0    HC Hx  HC H  H  H  HC 1Hǀ      HC ǀ      Hs           HF@0t]:      H    HE     HkE1E11H          E1E11H   0       E1E1   1Ҿ:   H    FDD$I$  H    H        ~Hs L    H    L    ;    fD      AWAVAUATUSHHHH  H}8Ht	:  HE(Htb;]  HE    V0]Z  t;  1H[]A\A]A^A_    tu;uSHE tuÀ;ub{u{ uH}   q          H}111    H}1ɺq          H}111    z\H}HO;F{<{(2             H}111    H}1ɺ          H}111       S0      	    ;HPLsE1E1#  HE(AD;x  DcAOIAx~
EnAAH}/      D    H}DD    MtAHU(AvLeȋR   L%   	   )AFT$5   	    L$6   L       HE(HcP~QA   AFAND$0      L    L$:   L       HE(HcPIKH}         HE(LMx~`I@  HcP~OH H1H4P$xAA)A   EHEH@H9uHt   LϾ       LML    PD$      !ff.     @     ATAUH  SHH    D  HH    H       It[LH]A\    H5    Hx          L[H]A\    fD      AUATSHHLH  I4$@u&ƀ  t%B=  t=  t
w	3f1  1E     t(@  1ҁ   I  H[A\A]    =  U  wZ=   o
     =  
  =    HCH0d    AfqA  I QH[  =  q	    =
  	  =    HCH02  A1  AfDiA  I QH  =   Z
    =     HCH0     AfyA  I QH  =     w\\s     |     =   hHCH0:     AfQA  I QH5  =     :  =   `     =   HCH0  A   AfDQA  I QH   kI  lHCH0'     AfyA  I QH   5^     8vHCH0     AfqA  I QHF=     =   0HCH0g  A   AfDYA  I QHA$   AD$0  =        =   HCH0uH    H    L$    L$	      7   HCH0  A   AfDYA  I QHU=     =   ?HCH0     AfQA  I QH=     =      LcLH0l  A   AfDYA  I QH   =   uyHCH0     AfQA  I QH   =	  u?HCH0  	  AfqA  I QH\   t=  tk1q=    =  d  HCH0v	  A  AfDQA  I QHHCH*   H[A\A]    H{q          H    H    L$    L$    I     H    H    L$    L$t    H    H    L$    L$t    H    H    L$    L$t    H    H    L$    L$e    H    H    L$    L$=    H    H    L$    L$    H    H    L$    L$    I     H    H    L$    L$t    H    H    L$    L$t    H    H    L$    L$t    H    H    L$    L$e    H    H    L$    L$=    =    HCH0  A  AfDaA  I QHf= \HCH0  A   AfDiA  I QH'LkLH0q  A   AfDQA  I QHLkLH0     AfqA  I QHLkLH0  A   AfDYA  I QHHCH0F     AfyA  I QHNLkLH0H    H    L$    L$    LkLH0  A   AfDQA  I QHLkLH0w  A   AfDiA  I QHHCH0  A   AfDiA  I QHpLkLH0[H    H    L$    L$    HCH0uH    H    L$    L$r    HCH02  A   AfDaA  I QHLcLH0Z    AfyA  I QHLcLH0  0  AfQA  I QHsLcLH0  A  AfDYA  I QH;LcLH0     AfqA  I QHLcLH0    AfyA  I QHHCH0  A  AfDiA  I QHLcLH0  A   AfDQA  I QHbLcLH0-    AfQA  I QH,H    H    L$    L$b    H    H    L$    L$:    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$r    H    H    L$    L$J    H    H    L$    L$5    H    H    L$    L$
    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$m    H    H    L$    L$E    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$        H    H    H        I$  H            I$  H            H  H    D$    D$    H{H    H          H  H            I$  H        E     AH    H    H    HEI$  L$    Jt;J|;       AEL$B;HB )AEHAEH I    I$  H        cJI    H  H        C7I    I$  H        ƃ   I    M     H    L    H޹=   LE AEA I}BAE= *LP    E P   I    H    L        H        H$A1H    IF8L    H$        H    L        H    LA        H        H    L        I$  H    D$    D$    LH        H        H    L        H    L        H]ASUS TeH    LfD$]HD$Hch.Inc. HD$ D$] 1fD$        LHt$    yH    L           Ht$L    yH    L           Ht$L    yH    L           Ht$LD$^D$^    yH    L           Ht$L        H    L        L$H4%          H        L$    L$It$0     H        L$    L$H4%          H        L$    L$H4%          H        L$    L$H4%          H        L$    L$H4%          H        L$    L$H4%          H        L$    L$Iu0      H        L$    L$H4%          H        L$    L$H4%          H        L$    L$Iu0      H        L$    L$H4%         H        L$    L$H4%       	  H        L$    L$Iu0      H        L$    L$H4%         H        L$    L$It$0   0  H        L$    L$H4%          H        L$    L$H4%          H        L$    L$H4%          H        L$    L$It$0      H        L$    L$Iu0      H        L$    L$H4%          H        L$    L$H4%          H        L$    L$It$0     H        L$    L$It$0      H        L$    L$H4%          H        L$    L$H4%         H        L$    L$H4%         H        L$    L$H4%       1  H        L$    L$It$0     H        L$    L$Iu0      H        L$    L$H4%          H        L$    L$Iu0      H        L$    L$Iu0      H        L$    L$It$0     H        L$    L$It$0      H        L$    H                                                                                                                                        hid_asus T100CHI T90CHI Asus TouchPad Asus Keyboard Can't alloc Asus descriptor
 T100HAN T200TA asus-keyboard-%s-battery Asus hid parse failed: %d
 Asus hw start failed: %d
 Asus input not registered
 Asus Touchpad Keys Asus initialise N-KEY Device asus::kbd_backlight asus drivers/hid/hid-asus.c Asus failed to alloc dma buf: %d
       Asus failed to start multitouch: %d
    Asus failed to set keyboard backlight: %d
      Unmapped Asus vendor usagepage code 0x%02x
     Fixing up Asus notebook report descriptor
      Fixing up Asus T100 keyb report descriptor
     Fixing up %s keyb report descriptor
    Fixing up Asus G752 keyb report descriptor
     Fixing up Asus N-KEY keyb report descriptor
    Fixing up Asus N-Key report descriptor
 Unable to register battery device
      Asus hid battery_probe failed: %d
      Asus input mt init slots failed: %d
    WMI backlight check: rc %d value %x     Asus failed to send init start command: %d
     Asus failed to send init command 1.0: %d
       Asus failed to send init command 1.1: %d
       Asus failed to send init command 2.0: %d
       Asus failed to send init command 2.1: %d
       Asus failed to send init command: %d
   Asus failed to send configuration command: %d
  Asus failed to request functions: %d
   Failed to initialize backlight.
        4%s: Invalid code %d type %d
                                                                                                                                          strnlen         __fortify_strlen        hid_map_usage           asus_kbd_wmi_led_control_present 
                                                                     T                   7                   "                  i                   f                                    k                        P                  P            %                 *  Q                 E  Q                                     P                 =                                      P
  d                      P
  (                     0                       P
  (                       `                     
                     license=GPL description=Asus HID Keyboard and TouchPad author=Frederik Wenigwieser <frederik.wenigwieser@gmail.com> author=Victor Vlasenko <victor.vlasenko@sysgears.com> author=Brendan McGrath <redmcg@redmandi.dyndns.org> author=Yusuke Fujimaki <usk.fujimaki@gmail.com> alias=hid:b0003g0001v00000B05p0000183D alias=hid:b0003g*v0000048Dp0000CE50 alias=hid:b0005g*v00000B05p00008502 alias=hid:b0003g*v00000C45p00005112 alias=hid:b0003g*v0000062Ap00005110 alias=hid:b0003g*v000004F2p00001125 alias=hid:b0003g*v00000B05p00001807 alias=hid:b0003g*v00000B05p000017E0 alias=hid:b0003g*v00000B05p0000196B alias=hid:b0003g*v00000B05p000019B6 alias=hid:b0003g*v00000B05p00001866 alias=hid:b0003g*v00000B05p00001869 alias=hid:b0003g*v00000B05p00001822 alias=hid:b0003g*v00000B05p00001837 alias=hid:b0003g*v00000B05p00001854 alias=hid:b0018g*v00000B05p00000101 alias=hid:b0018g*v00000B05p00008585 depends=hid,usbhid,asus-wmi retpoline=Y intree=Y name=hid_asus vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                        (                 (                (            (                  (          (                                   (    0  8  @  8  0  (                     @                                           (  0  (                 0                         (    0  8  x  8  0  (                     x                         (  0  `  0  (                   `                         (    0  8  @  8  0  (                     @                                                                   (                     (                     (                       (    (      @  x  `  (                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          m    __fentry__                                              4    _raw_spin_lock_irqsave                                  p\    _raw_spin_unlock_irqrestore                             9[    __x86_return_thunk                                      
IR    __hid_register_driver                                   A̴f    kmemdup                                                 ^    hid_hw_raw_request                                      z    kfree                                                   Ë    _dev_err                                                V
    __stack_chk_fail                                        _    _dev_warn                                               &;    devm_kmalloc                                            o    _dev_info                                                   memmove                                                 8߬i    memcpy                                                  -    cancel_work_sync                                        j    hid_hw_stop                                             r    power_supply_get_drvdata                                P    jiffies                                                 1Y    kmalloc_caches                                               kmalloc_trace                                           &m    strstr                                                  ڮ    usb_hid_driver                                              strnlen                                                 9    devm_kasprintf                                          )    devm_power_supply_register                                  power_supply_powers                                     4s    hid_open_report                                         q    hid_hw_start                                            kx    dmi_match                                                   fortify_panic                                           ;    hid_unregister_driver                                   #3    input_set_abs_params                                    oY    input_alloc_absinfo                                     |v    input_mt_init_slots                                     lW    asus_wmi_evaluate_method                                Qkn    devm_led_classdev_register_ext                          ۡg    input_set_capability                                    4    __dynamic_dev_dbg                                       W    devm_kfree                                              a    input_event                                             Lm    power_supply_changed                                        input_mt_report_slot_state                                  input_mt_sync_frame                                     Ӆ3-    system_wq                                               6    queue_work_on                                           $    ___ratelimit                                            ~    _printk                                                 e:X    module_layout                                                                                 
                                                                                                                                                                                                                                                                                                                                                                                              /   B   I                                                       "                                             hid_asus                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         T  T    ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      ?<    R<    c<    x< 	   < 
   <    <      <        *         4
     @   /!     `   <      ;5        <        <    @   <    `   =    h        p   *        =       =       %=       -=       ?=                      I=    @   4
  A    U=               ^=       l=       x=    @  =    `  A           =      =    @  =    `  =      =      =             K      X> C @  ,       = E   =       >              ? 
> 
  `  ]  `       > `      #> `      [        *  <   I=      Wr H    4> I  B  B>    @B       `B    K B  K> K   B  W>    B         B \>   H   ]  `       X> C      +U             n_ K   @  f> `     I=              D n>       ]  `       Wr G    ,        p(               @            G              F ~> ;    > U      >    @   > U     B       > P    >    @  >    `  >             5!       #u            v        *  N    >    @  > Q   > Q    > TG    "      u  S   
? U    ? G  @  !?    @  /? @    7?      H?      T?       `?       t?    @  ?    `  ? O   ? K     ? H            ?    @  4    `  ?      ? K      `     ? k   @  ? k           	      `      ov  k     @ W    @ Y @  @ [   /@ ]   @@ _        @  NR      T@     `@      m@ `   @  x@ *    @ D     H/  0    [               J @     @        @ `   @   @ M               C       @      @     @    @    A      A     )A    =A           >            L       RA   8    ?       { d @   ]A `      fA *       f @    h     [   oA i    |A k @  A l   @  n   X> _    A p @  A r   A r   A t    A v @    x     W    W    u    @         R A 
  h   L  W       [ @   Y  W    0  [    N  z     W @  ה  |   %  W   A ~    A  @  1    B    B              T       
       K        V       
       K               X       
        K        Z       
        K     G     A               \       
        K     C        ^ B      =               
` ,B      9B        CB        NB    @          
b        ;       
K       K     K          e       
       K     d        g        a       
       K     C                      j        c       
       K     G     A               m       
U      K     U                o       
       K     E     G     A                     q       
       K     E        s       
        K     G     A        u       
       K              w       
       K               y       
        K     C               {       
       K            U      Q                        }       
       K     U      Q                 
       K                                    
K       K         YB       YX      gB K   !  Q    @      '  *    fs  K    
  lB                      B    @   B    `   B       B       l=              
 B 
     4        gB K @     +U     B +U     B     O   @  B K     /? @    B ;     7?       B       B K   @  	C                                 4                   %F               
            ;              
                                    
 C       -C    x         
U  gB K > U  B    >C           
    gB K PC           
   gB K [   d \C           
   gB K gC     yC     C           
   gB K  E Wr G 4
  A W   b     C           
   gB K  E C     C      C            
UX   [X  C           
     [X  @ UX  
D           
   gB K d[  +  '= Q   $D           
   gB K X> C           8D           
   gB K Wr G 4
  A A     GD            
t                 1          
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_class_request HID_REQ_GET_REPORT HID_REQ_GET_IDLE HID_REQ_GET_PROTOCOL HID_REQ_SET_REPORT HID_REQ_SET_IDLE HID_REQ_SET_PROTOCOL hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code asus_kbd_leds hdev asus_touchpad_info res_x res_y contact_size max_contacts asus_drvdata tp_kbd_input kbd_backlight enable_backlight battery_desc battery_stat battery_in_query battery_next_query asus_driver_exit asus_driver_init asus_report_fixup asus_remove asus_probe asus_reset_resume asus_resume asus_start_multitouch asus_input_mapping asus_input_configured asus_battery_get_property asus_kbd_backlight_work asus_kbd_backlight_get asus_kbd_backlight_set asus_kbd_set_report asus_raw_event asus_event   hid-asus.ko }                                                                                               	                      
                                                                                        !                            '            5      $       +     Y      $       @     }      $       U           $       j           $                  $            
      $            1      $            U      $            y      $                  $                  $                 $       '    	      $       <    -      $       Q    Q      $       f    u             }            @                                 	                                  <                                     $                   3       
                       @       8      *    @       m       @    a              G            >       b                  t           i           @      r           >       "                            `                  P      :           ~                                         K                ^       *                 D          e      O                 [    P             k                 ~                     0                 p                                                                                       	                    
      
         !         8       #          z       :                U                 d    p      #      w    (                          (           !                @       !                                                                                 '           +       B    7       =       X    t       6       n           4                  0                                                                                              #                                                                                                   3   	                B                                          I                     d                     {                                                                                                                                                                                                                                                                               #                     7                     >                     M                     b                     {                                                                                                                                                   	                                                                *                     2                     F                     W                     k                     ~                                                                                                      __UNIQUE_ID_alias210 __UNIQUE_ID_alias209 __UNIQUE_ID_alias208 __UNIQUE_ID_alias207 __UNIQUE_ID_alias206 __UNIQUE_ID_alias205 __UNIQUE_ID_alias204 __UNIQUE_ID_alias203 __UNIQUE_ID_alias202 __UNIQUE_ID_alias201 __UNIQUE_ID_alias200 __UNIQUE_ID_alias199 __UNIQUE_ID_alias198 __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 asus_kbd_backlight_get asus_driver_init asus_driver asus_start_multitouch buf.17 asus_start_multitouch.cold asus_reset_resume asus_kbd_set_report asus_resume asus_resume.cold asus_kbd_backlight_work asus_kbd_backlight_work.cold asus_event asus_event.cold asus_report_fixup asus_report_fixup.cold asus_remove asus_battery_get_property asus_probe asus_i2c_tp asus_t100chi_tp asus_battery_props asus_t100ha_tp medion_e1239t_tp asus_t200ta_tp asus_t100ta_tp asus_probe.cold __func__.24 __func__.23 asus_driver_exit asus_input_configured __UNIQUE_ID_ddebug248.4 asus_kbd_backlight_set asus_input_configured.cold asus_raw_event asus_input_mapping __func__.22 _rs.21 asus_input_mapping.cold __func__.19 __UNIQUE_ID_license252 __UNIQUE_ID___addressable_cleanup_module251 __UNIQUE_ID___addressable_init_module250 asus_devices __UNIQUE_ID_description247 __UNIQUE_ID_author246 __UNIQUE_ID_author245 __UNIQUE_ID_author244 __UNIQUE_ID_author243 devm_kmalloc hid_unregister_driver hid_hw_start memmove __this_module queue_work_on input_mt_sync_frame __hid_register_driver input_mt_report_slot_state cleanup_module memcpy devm_power_supply_register _raw_spin_lock_irqsave __dynamic_dev_dbg hid_hw_stop fortify_panic __fentry__ init_module _printk ___ratelimit __stack_chk_fail asus_wmi_evaluate_method strnlen _dev_info devm_kfree _dev_err input_mt_init_slots strstr usb_hid_driver input_set_capability power_supply_get_drvdata _raw_spin_unlock_irqrestore devm_led_classdev_register_ext _dev_warn __x86_return_thunk input_event power_supply_changed input_set_abs_params jiffies devm_kasprintf dmi_match kmemdup power_supply_powers cancel_work_sync input_alloc_absinfo hid_hw_raw_request kmalloc_trace __mod_hid__asus_devices_device_table hid_open_report kmalloc_caches system_wq                 e             a   &          t   /          w   A          e   X             a       ^          ~   g                                    _                                 w             e             w             e             ~               !         _   .         w   A         e               :                w            i            e            a            t                \       ;         w   @         i   Q         e   g         w               z                w            e   N         w   g            G                  '                                  ~   '                   ^         T   o                              f               e            a            t                        c            e            s   >         {            {            w            {                                              2         _            _            e            T               D                                  p   .                  ?         q           Z            P      n         q                                                         k                                 ^      (            `       5         |   I         {   _         `   o                  z                                    .               V                                 j                  &                          	         w   2	         c   X	            Q       b	         }   n	                  	            0      	                  	         n   	            Y       	         }   	            p      	                  
         i   
         e   s
         w   
         z   
         z   
            
            4         o   <                  h         j                                                                                        B            J                  W         _   s         T                                                            
                  '
         u   f
         r   n
                   
         z   
         z   
         z   
            8      
         	           
         b   
         m                              v            i   !         e            w            x            x            x             x   i         x   x         x            x            x            y   T         x   c         \            x            x            x            x   F         x            x            Z            e   
         a            t   $         a   ?         t   F            W         Y   f         t   q         e            w               (                                    h               p               w            r                (                                    h                     /            (       6                    ?         h   L                  S            (       Z                    c         h   p                  w            (       ~                             h                                 (                                    h               n                  (                                    h                                 (                                    h                                 (                           #         h   /                  B            (       I                    R         h   _            	      f            (       m                    v         h                                 (                                    h                                 (                                    h               h                  (                                    h                     ~            (                                    h               d      \            (       c                    l         h   }            W	                  (                                    h                                 (                                    h               	                  (                                    h               G                  (                                    h                                 (                           &         h   7            A      >            (       E                    N         h   _            ~	      f            (       m                    v         h                                 (                                    h                                 (                                    h               1                  (                                    h                                  (       
                               h   '                   .             (       5                     >          h   O                   V             (       ]                     f          h   w                   ~             (                                      h                <                   (                                      h                	                   (                                      h                \                   (                            !         h   !            ,	      !            (       %!                    .!         h   ?!                  F!            (       M!                    V!         h   g!            	      n!            (       u!                    ~!         h   !            H                e                                  X                        @                 [                                  n                       0             (       5          n   :                    J             P       S          n   \                   i             P       u          n   z                                                  v                `                                   l                8                   	                                                        l             W   '                  6                   ;         l   G                  U                   Z         l   f                  u            h      z         l               8                  3                  8               l            ^               -                                  n                                                  d                              n   )            	      .            z      7            y       ?         n   D                  K            4       Y         n   ^                  e                   j         d   q                   ~         n               '	                                 n               N
                                 n            _               
                  x               n               
                  P               n               
                         3         l   E                   R            `      Z         v   _            
      q                   ~                           v               
                                                    v               
                                                    v               
                         	            a                                  v               
      :                  ?         g   H                  b                  g         g   p            /                                 g                                                g               /                                 g                                                g                     9                  >         g   G                  `                  e         g   n                                             g                                                g                                                g                                       
         g               /      3                  8         g   A            /      Z                  _         g   h                                             g               /                                 g               /                                 g                                                g                     .                  3         g   <                  V                  [         g   d            /      }                           g                                                g                                                g               /                                  g   	            /      #                  (         g   1            /      N                  S         g   \                  y                  ~         g               /                                 g               /                                 g               /                                 g   	            /      	                  #	         g   ,	                  I	                  N	         g   W	            /      p	                  u	         g   ~	                  	                  	         g   	                  	                  	         g   	            /      	                  	         g   	            /                   @                 U                                                           @                                                (             @      0                   8             P      @                   H                   P                    X                   `             
      h                    p                   x             p                    b                                      
                   y                                                          k                                       Y      $                   (                   ,             *      0             d      4                   8                   <             1      @                   D                   H                   L             -      P             `      T                   X             	      \             >      `                   d                   h             J      l                   p                   t                   x             #      |             [                                       .                                                            -                                      :                   f                                       M      $                   (             
	      ,             r
      0                   4                   8                                                                                              -                    .                    3                    @                    G                     U       $             ]       (                    ,                    0                    4                    8                    <                    @                    D                    H                    L                    P                    T             &      X             )      \             +      `             -      d             2      h             9      l             @      p             F      t             J      x                   |                                                                                                                                                  8                   9                   :                   ?                   D                   P                                                                                                                                                                                              @                   D                   E                   G                   I                   K                   M                   R                                                                                                                                                                                         	                  
                         $                  (                  ,                  0                  4                  8                  <                  @                  D                  H                  L                  P                  T                  X                  \                  `                  d                  h            	      l            	      p            	      t            	      x            	      |            
	                  	                  
                  
                  
                  
                  
                  
                   
                  $
                  j
                  k
                  l
                  n
                  p
                  r
                  w
                                                       '                  )                  +                  -                  .                  /                  6                                                                                                                                                                                                                                                             5                  <                   >      $            C      (            _      ,            c      0            e      4            j      8            p      <            w      @            y      D            z      H                  L                  P                  T                  X                  \                  `                  d                  h                  l                  p                  t            !      x                    |                                                   >                   `                   ~                                                                          !                  	                                                           n                   
                	   *       @             
      H                    p                   x                                                    P                                      p                   
                   @                                     ]                      f                                              @                                       8      8         f           P         ]            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rela__mcount_loc .rodata.str1.1 .rodata.str1.8 .rela.smp_locks .rodata .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela__jump_table .rela.data .rela.exit.data .rela.init.data .rela__dyndbg .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                            !                             :      @               8            *                    J                     3"                                    E      @               H      x       *                    Z                     R"      	                             U      @                           *                    n                     K,                                    i      @                     0       *   	                 ~                     W,                                    y      @                           *                          2               ,      )                                  2                .                                                       2                                          @               `            *                                         2                                                         5                                                        |9      <                                    @               x      h      *                                         9                                                        =                                         @                           *                                         @      @                              
                    L                                         @                     H       *                                        L                                         @               0            *                    *                    xN                                    %     @               8             *                    :                    N                                    5     @               P             *                    J                    N      8                              E     @               h      `       *   !                 X                    N                    @               S     @                     0       *   #                 r                    @R                                     w     0               @R      P                                                  R                                                          R                                                        m                                                          m            +   T                 	                      Xz                                                                                            0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  +
Fa|҂H	vcJ˳}fx,rD[#B?ou.9,Z'w_@E'Ҡ0~ u(K7
O${tF{±A*J<~gٴbFlRS]N":Ҧf'geŚ\f8vD6/x-7v'hⓖ4ݎz-A%J         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >                    (          @     @ ' &          GNU vLЇ\OOZ        Linux                Linux   6.1.0-35-amd64      :5Hv~4%t    ~5            H    H    H        H        RH  H4$H        H$@5eY    hid_aureal aureal                       fixing Aureal Cy se W-01RN USB_V3.1 report descriptor.
 license=GPL alias=hid:b0003g*v00000755p00002626 depends=hid retpoline=Y intree=Y name=hid_aureal vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                U  &&                                                                                                                                          m    __fentry__                                              
IR    __hid_register_driver                                   ;    hid_unregister_driver                                   9[    __x86_return_thunk                                      o    _dev_info                                               e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                                                   hid_aureal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         <  <  L  ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J                    ;              
 A       A    x         
U  A J > U  B     B            
t                           
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code aureal_driver_exit aureal_driver_init hdev aureal_report_fixup hid-aureal.ko                                                                                                      	                                                                                                                     $            0              -                   :     <              S     H       	       i     Q              }     a       <                                       $                                        8                                       '           	         &                                             J                   s            0                                                                                                                                                               0                             __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 aureal_driver_init aureal_driver aureal_driver_exit aureal_report_fixup aureal_report_fixup.cold __UNIQUE_ID_license241 __UNIQUE_ID___addressable_cleanup_module240 __UNIQUE_ID___addressable_init_module239 aureal_devices hid_unregister_driver __this_module __hid_register_driver cleanup_module __fentry__ init_module _dev_info __mod_hid__aureal_devices_device_table __x86_return_thunk                          #                #          #                                                                                                                                                             !   "          #                                                                                "                    !                                          '                                                                                                                                                !       $             &                                                 h                                                                  8                     P                     .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.exit.text .rela.text.unlikely .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .modinfo .rodata .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                            '                              :      @               #      `       $                    J                                                          E      @               0$      x       $                    Z                                                          U      @               $      0       $                    j                            &                              e      @               $      H       $   	                 y      2                                                                       *                                          @                %      0       $                          2               @      8                                                  x                                                                0                                                    P                                          @               P%      H       $                                         \      <                                                         (                                    @               %             $                                                                                                  @      8                                    @               &      H       $                                        x                                         @               &             $                                                                                 @               &             $                    (                                        @               #     @                '      0       $                    B                    @	                                     G     0               @	      P                             P                     	                                     `                     	                                   e                     0                                                          H      `      %                    	                      !      &                                                   0'      t                             0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  '(9WlSpd"jaW͔XR ,H$MW	'zKEChC]Y[n[cjNfeEޓ?C _2TNKdprb;Al :
	+Q0"t3;ʚ`W:Ā(#!]^ OG􂱧k4sot@ͷZڒQCW_sZp>/EֵzH^WܟdP3p         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    @          @     @ - ,          GNU w)5!^`'Wjx(?        Linux                Linux   6.1.0-35-amd64      SH    H[    f         AVAUIATUSBJL  =    L&)HHHHHӉH/)HHHHHH/    A$H  tZMD$@E11I1r(t HR0HcD<I;B(rAIE;$H  r        Me LL	       1[]A\A]A^         AVAUATUSHHD  H  H        
   H        H8  H8  Hp  H9    H8  LhHp  H9    Lp  A$H     It$@E11H1J(t HR0Hc    H;B(rFDHA;$H  rA
{<      H=       
      IH   A   H    LH    AŅtjL    DH    H    H        Z[]A\A]A^    H  H    H    H    E1MAM&LHߺ	       H    H        H    H    H        H    H        A$H           H    H        Me     H    H    A    H    HD$    D$    H    H    DH    H    H    HD$    D$    H    HD$    H    D$    H        hid_axff drivers/hid/hid-axff.c ACRUX HID hardware probe...
 parse failed
 hw start failed
 no inputs found
 no output reports found
 hw open failed
 acrux                                     7%s: called with 0x%04x 0x%04x 7%s: running with 0x%02x 0x%02x        not enough fields in the report: %d
    Force Feedback for ACRUX game controllers by Sergei Kolzun <x0r@dv-life.ru>
    Failed to enable force feedback support, error: %d
             ax_probe                           4                   4                                        license=GPL description=Force feedback support for ACRUX game controllers author=Sergei Kolzun alias=hid:b0003g*v00001A34p0000F705 alias=hid:b0003g*v00001A34p00000802 depends=hid,ff-memless retpoline=Y intree=Y name=hid_axff vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                             (  0  (                                          (  0  8  0  (                   8                  0  8                                                                                                                                                                                                 m    __fentry__                                              
IR    __hid_register_driver                                   J    hid_hw_close                                            j    hid_hw_stop                                             SI    hid_debug                                               P    hid_hw_request                                          9[    __x86_return_thunk                                      ~    _printk                                                 ;    hid_unregister_driver                                   4s    hid_open_report                                         q    hid_hw_start                                            1Y    kmalloc_caches                                               kmalloc_trace                                               input_ff_create_memless                                 z    kfree                                                   _    _dev_warn                                               {-ߓ    hid_hw_open                                             4    __dynamic_dev_dbg                                       o    _dev_info                                               Ë    _dev_err                                                e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 hid_axff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0                      
t             :              
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      ?<    R<    c<    x< 	   < 
   <    <      <        *         4
     @   /!     `   <      ;5        <        <    @   <    `   =    h        p   *        =       =       %=       -=       ?=                      I=    @   4
  D    U=               ^=       l=       x=    @  =    `  A           =      =    @  =    `  =      =      =             K      X> F @  ,       = H   =       >              B 
> 
  `  ]  `       > `      #> `      [        *  ?   I=      Wr K    4> L  B  B>    @B       `B    N B  K> K   B  W>    B         E \>   H   ]  `       X> F      +U             n_ K   @  f> `     I=              G n>       ]  `       Wr J    ,        p(               C            J              I ~> ;    > U      >    @   > U     B       > S    >    @  >    `  >             5!       #u            v        *  Q    >    @  > T   > Q    > TG    "      u  V   
? X    ? G  @  !?    @  /? @    7?      H?      T?       `?       t?    @  ?    `  ? R   ? K     ? H            ?    @  4    `  ?      ? K      `     ? k   @  ? k           	      `      ov  k     @ Z    @ \ @  @ ^   /@ `   @@ b        @  NR      T@     `@      m@ `   @  x@ *    @ D     H/  0    [               M @     @        @ `   @   @ P               F       @      @     @    @    A      A     )A    =A           A            O       RA   8    ?       { g @   ]A `      fA *       i @    k     ^   oA l    |A n @  A o   @  q   X> b    A s @  A u   A u   A w    A y @    {     Z    Z    u    @         U A 
  h   L  Z       ^ @   Y  Z    0  ^    N  }     Z @  ה     %  Z   A     A  @  1    B    B              W       
       N        Y       
       N               [       
        N        ]       
        N     J     D               _       
        N     F        a B      =               
c ,B      9B        CB        NB    @          
e        >       
K       N     K          h       
       N     g        j        d       
       N     F                      m        f       
       N     J     D               p       
U      N     U                r       
       N     H     J     D                     t       
       N     H        v       
        N     J     D        x       
       N              z       
       N               |       
        N     F               ~       
       N            U      Q                               
       N     U      Q                 
       N                                    
K       N         YB      X> F                >              
               
       +U      k       TU          eB       tB    x         
    B N B           
   B N [   g B           
   "  +U    k     TU  B     hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_class_request HID_REQ_GET_REPORT HID_REQ_GET_IDLE HID_REQ_GET_PROTOCOL HID_REQ_SET_REPORT HID_REQ_SET_IDLE HID_REQ_SET_PROTOCOL hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code axff_device ax_driver_exit ax_driver_init hdev ax_remove ax_probe axff_play    hid-axff.ko S                                                                                                   	                                                                                                              !                      _       $                   $       +                   B             @      O                   h            	       ~                               <                                       $                                        8                                                           I           	                                   !         8       '    I              5            	       A                   X           >       s    J                                                                H                                                    #                                    0   	                ?                     E                     W                     c                     n                   z                                                                                                H                                                                                                                                                          -                     =                      __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 ax_driver_init ax_driver ax_remove axff_play axff_play.cold ax_driver_exit ax_probe __UNIQUE_ID_ddebug239.0 ax_probe.cold __func__.13 __UNIQUE_ID_license245 __UNIQUE_ID_description244 __UNIQUE_ID_author243 __UNIQUE_ID___addressable_cleanup_module242 __UNIQUE_ID___addressable_init_module241 ax_devices hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module kfree __dynamic_dev_dbg hid_hw_stop __fentry__ init_module _printk _dev_info _dev_err hid_hw_request __mod_hid__ax_devices_device_table hid_hw_open hid_hw_close _dev_warn __x86_return_thunk hid_debug input_ff_create_memless kmalloc_trace hid_open_report kmalloc_caches               ,   
          4             +   !          ,   C          7                          7                %                 1   	         6            ,   4         :   <                   I         %   Q            _       o            E                   {                                   ;                   9   -                    8         8   G         )   Q                   Y         5   a         3   i                   w         6                                	                    *            1               p                /             ,                                  &                                          '                	                                      .                        %                    0             	       7                     <          .   E                    L             \       T          0   _             G      f             K       r          0   {             i                   m                 0                H                 0                =                 0                i                                    0             +                i                                     $                                                                                                    !                                       v                                                                                                                          '                    )                    .                     /       $             0       (                   ,                   0                   4                   8                   <             
      @                   D                   H                   L                   P                   T                   X             $      \             n      `             o      d             p      h             r      l             t      p             v      t             {      x                   |                                                                           I                                                                                  $                   {                	   *                                                 0                   8                                (                      -                                                                   	                            8         -           P         (            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .rodata .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela__jump_table .rela.data .rela.exit.data .rela.init.data .rela__dyndbg .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                                                         :      @                3      0      *                    J                     q                                    E      @               P6      x       *                    Z                                                         U      @               6      p      *                    n                     t                                    i      @               89      0       *   	                 y      2                                                                                                                  @               h9      `       *                          2               @                                                        4                                          @               9             *                                         @      h                                                                                                                                                      @               9      0       *                                                                                                                                            @               :            *                                         `	      @                              
                                                             @               =      H       *                                              8                                   @               =      `       *                    *                                                        %     @               H>             *                    :                                                         5     @               `>             *                    J                          8                              E     @               x>      `       *   !                 X                    @                    @               S     @               >      0       *   #                 r                                                         w     0                     P                                                                                                                  	                                                  *                                                          0*            +   $                 	                      /      L                                                   ?                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  AH@bHUb=ӏ:Vp.1pd
\br.sKuoKEz='` Vo;9VX[d݈UBJ[ye;<yS
LR0,U#j`d4{oáMbO|RSFAnщTH>TWniaQc!ʵ36@6`Av+ $f#RvFʱ,*LFPUze~pE;         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >                    2          @     @ ) (          GNU [؊֜ oȇ!v,        Linux                Linux   6.1.0-35-amd64      UHSHH^HH          H-        H[]    @     IH1ɉf1   t    AH  tSHf;t<t|:tDH[    H^HH0      @fpA  I@H   H^HH0      @fxA  I@HH^HH0tQ   @fHA  I@HH    H    L$    L$    I     hH    H    L$    L$t    H    H    L$    L$t        H    H    H        H  H    D$    D$    H  H    D$    D$    L$Hs0      H        L$    L$Hs0      H        L$    L$Hs0      H        L$    H        hid_belkin parse failed
 hw start failed
 belkin                              4%s: Invalid code %d type %d
                                  hid_map_usage                      
  2                                                         license=GPL alias=hid:b0003g*v00001020p00000006 alias=hid:b0003g*v0000050Dp00003201 depends=hid retpoline=Y intree=Y name=hid_belkin vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                                                                             m    __fentry__                                              
IR    __hid_register_driver                                   4s    hid_open_report                                         q    hid_hw_start                                            9[    __x86_return_thunk                                      Ë    _dev_err                                                ;    hid_unregister_driver                                   $    ___ratelimit                                            ~    _printk                                                 e:X    module_layout                                                 
                                                                                                                                                                                                                                                                                                                                                                                                                                               hid_belkin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         |  |  Z  ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J                    ;              
 A       A    x         
   A J [   c  B           
   A J  D Wr F 4
  @ W   b     
B            
t                 
          
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code belkin_driver_exit belkin_driver_init hdev belkin_probe belkin_input_mapping   hid-belkin.ko                                                                                                      	                                                                                                                     $            0       $       +     T              B                   O     `              h     l       	       ~     u                          <                                       $                                @       8                   L                    @           	                    P       b      #                   /            (       6    @       u       P                   g                                                  H                                                                                           	                !                     ,                   8                     @                     M                     V            H       }                                           __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 belkin_driver_init belkin_driver belkin_probe belkin_probe.cold belkin_driver_exit belkin_input_mapping __func__.13 _rs.12 belkin_input_mapping.cold __UNIQUE_ID_license241 __UNIQUE_ID___addressable_cleanup_module240 __UNIQUE_ID___addressable_init_module239 belkin_devices hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module __fentry__ init_module _printk ___ratelimit _dev_err __mod_hid__belkin_devices_device_table __x86_return_thunk hid_open_report           %             ,   "             5          !   =                    H          +   Q          %   o          +             +   >                    E                    N         (   Z            <       m                    t                    }         (               c                                                        (                                %                                  "                        @                 #   
                              )                =       *                    3          )   <             =       U                     Z          '   c             Z      |                               '                Z                                     '                Z                   @                                                                             P                                                            4                    G                    n                                                                                  
                                        E                    F                    G                    L                     P       $             ~       (                    ,                    0                    4                    8                   <                     @                    D                     H             @       L                    P                     T                    @             *       H                     p                                  P                  $                      &           8         &           P         $            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .rodata .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                                                         :      @               )            &                    J                     R                                    E      @               +      x       &                    Z                     q                                    U      @                ,      h      &                    n                     &                                    i      @               -      0       &   	                 y      2               2      1                                                  c                                          @               -      H       &                          2                                                                                                                 @                .      H       &                                               h                                                    (                                                                                                   @               H.      H       &                                                                                                  y      X                                    @               .            &                                                                             
                    `      x                                   @               0      `       &                                        	                                         @                1             &                    (                    	                                    #     @               1             &                    8                     
                    @               3     @               01      0       &                    R                    
                                     W     0               
      P                             `                     
                                     p                     
                                   u                     "                                                          "      8      '                     	                      '                                                         `1                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  Mθ92^c^>Diy+F=b.1ƣ8[87d{]ߥ6vd߈.α?EMxnIElZ'ǂB4tvb?
VmQVԙ1 BDDLہ\,zRHPc4fAuaQݧ6c-"Y3Ā`(l*ζ{5ټOMEk{?IQ^"%QX
CL         ~Module signature appended~
                                                                                                                                                                                                                                                                                     ELF          >                    5          @     @ ) (          GNU <D/KI$C<9        Linux                Linux   6.1.0-35-amd64      HH6HH  IRHvPfHv0҉HHIXHI0H0	       1        AVAUATUHSH~ t,  @H    Å    
   H    Å    H8  H8  Hp  H9    H8  LpHp  H9    Lp  A$H      It$@1HB(    1HR0Hcȃ    H;B(rHA;$H  rH=       
      IHt'A   H    HL    tL    []A\A]A^    Me LH	       H  H            H    H    H        H        H  H            H  H            H  H            H  H            H  H            H  H            hid_betopff parse failed
 hw start failed
 no inputs found
 no output reports found
 no values in the field
 betop                             not enough fields in the report: %d
    Force feedback for betop devices by huangbo <huangbobupt@163.com>
      license=GPL alias=hid:b0003g*v000020BCp00005500 alias=hid:b0003g*v00008380p00001850 alias=hid:b0003g*v000011C0p00005506 alias=hid:b0003g*v000011C2p00002208 depends=hid,ff-memless retpoline=Y intree=Y name=hid_betopff vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                  "                   U                   P                     U                                                                         (  0  (                   0                            0                                                                                                          m    __fentry__                                              
IR    __hid_register_driver                                   P    hid_hw_request                                          9[    __x86_return_thunk                                      ;    hid_unregister_driver                                   4s    hid_open_report                                         q    hid_hw_start                                            1Y    kmalloc_caches                                               kmalloc_trace                                               input_ff_create_memless                                 z    kfree                                                   o    _dev_info                                               Ë    _dev_err                                                e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                                                   hid_betopff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0                      
t             :              
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      ?<    R<    c<    x< 	   < 
   <    <      <        *         4
     @   /!     `   <      ;5        <        <    @   <    `   =    h        p   *        =       =       %=       -=       ?=                      I=    @   4
  D    U=               ^=       l=       x=    @  =    `  A           =      =    @  =    `  =      =      =             K      X> F @  ,       = H   =       >              B 
> 
  `  ]  `       > `      #> `      [        *  ?   I=      Wr K    4> L  B  B>    @B       `B    N B  K> K   B  W>    B         E \>   H   ]  `       X> F      +U             n_ K   @  f> `     I=              G n>       ]  `       Wr J    ,        p(               C            J              I ~> ;    > U      >    @   > U     B       > S    >    @  >    `  >             5!       #u            v        *  Q    >    @  > T   > Q    > TG    "      u  V   
? X    ? G  @  !?    @  /? @    7?      H?      T?       `?       t?    @  ?    `  ? R   ? K     ? H            ?    @  4    `  ?      ? K      `     ? k   @  ? k           	      `      ov  k     @ Z    @ \ @  @ ^   /@ `   @@ b        @  NR      T@     `@      m@ `   @  x@ *    @ D     H/  0    [               M @     @        @ `   @   @ P               F       @      @     @    @    A      A     )A    =A           A            O       RA   8    ?       { g @   ]A `      fA *       i @    k     ^   oA l    |A n @  A o   @  q   X> b    A s @  A u   A u   A w    A y @    {     Z    Z    u    @         U A 
  h   L  Z       ^ @   Y  Z    0  ^    N  }     Z @  ה     %  Z   A     A  @  1    B    B              W       
       N        Y       
       N               [       
        N        ]       
        N     J     D               _       
        N     F        a B      =               
c ,B      9B        CB        NB    @          
e        >       
K       N     K          h       
       N     g        j        d       
       N     F                      m        f       
       N     J     D               p       
U      N     U                r       
       N     H     J     D                     t       
       N     H        v       
        N     J     D        x       
       N              z       
       N               |       
        N     F               ~       
       N            U      Q                               
       N     U      Q                 
       N                                    
K       N         YB      X> F                >              
               
       +U      k       TU          hB       zB    x         
   B N [   g B           
   "  +U    k     TU  B     hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_class_request HID_REQ_GET_REPORT HID_REQ_GET_IDLE HID_REQ_GET_PROTOCOL HID_REQ_SET_REPORT HID_REQ_SET_IDLE HID_REQ_SET_PROTOCOL hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code betopff_device betop_driver_exit betop_driver_init hdev betop_probe hid_betopff_play   hid-betopff.ko  .                                                                                               	                                                                                                                     $            0       $       +     T       $       @     x       $       U                   l                   y                               	                                      <                                       $                                        8                  O                          '    P       V      3   	                D                   [                                                  x                                                                                                                                                     %                   1                     ;                     D                     S                     f            x                                                                                            __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 betop_driver_init betop_driver hid_betopff_play betop_driver_exit betop_probe betop_probe.cold __UNIQUE_ID_license241 __UNIQUE_ID___addressable_cleanup_module240 __UNIQUE_ID___addressable_init_module239 betop_devices hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module kfree __fentry__ init_module _dev_info _dev_err hid_hw_request __x86_return_thunk __mod_hid__betop_devices_device_table input_ff_create_memless kmalloc_trace hid_open_report kmalloc_caches                  %   D          )   K          *   Q          %   r          .   |             t                                  \                    D                    ,                                        ,         /          ;         -   S                    ^         ,   j         $   y         *            )               (                '             %                                  !                                          "                                     
             U                 (                j      "                     '          (   ,             j      :             <       ?          (   D             j      R             +       W          (   \             j      j                    o          (   t             j                                    (                j                                                              P                     G                    J                    x                                         O                    P                    W                    Y                    [                    \                    `                     q      $             r      (             t      ,             v      0             x      4             }      8                   <                     @                    D                     H                    L                     P                                  m                            0             P                  #                      &           8         &           P         #            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.exit.text .rela.text.unlikely .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .modinfo .rodata .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                                                         :      @               ,            &                    J                     F                                    E      @               .      x       &                    Z                     e                                    U      @                /      0       &                    j                     q                                    e      @               P/            &   	                 y      2                     s                                                  t                                          @                1      H       &                          2                     k                                                                                            @               H1             &                                                                                                         x                                                                                              @               `1      0       &                                               ~                                                         T                                    @               1            &                                                                             
                     
      8                                   @               3      H       &                                        8                                         @               3             &                    (                    @                                    #     @               3             &                    8                                        @               3     @                4      0       &                    R                                                          W     0                      P                             `                     P                                     p                     P                                   u                     D%                                                          X%            '                    	                      )                                                         04                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  \1hf|X! G-oZ"!Lda"~:cBAB#:%TS2S[UZ(dyR)onǡsBq^tZp ݴt:{nG<3g+9pyFӷȔ?MByǦ;patq:F!Ppe"UI 	K`/#hv߶Nfv,P5fp7sx-B`I;         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    PS          @     @ * )          GNU TO?<;@        Linux                Linux   6.1.0-35-amd64      :          H        ff.     f    ATUHSHH  LcL    CLH    H{@    H[]A\    ff.     f    HGPHP@HBxH    1H9|tHHu1    @H    ff.     f    AW  AVAUATUSHHLo@    H  IHCLsLL  Jx0    { Iu=HL    L    { I   HL    [L]A\A]A^A_    C IE0L    IE0@   SIE0PIE0@    IE0@    IE0@    IE0@    IE0@    H{    LL    HCH{A	   Lp0D@4    7[]A\A]A^A_    C IE0L    IE0@   IE0S։PSIE0PIE0@   IE0@    IE0@    IE0@    H{    LL    HCH{A	   Lp0D@4             AUATUSHGPH@@HhxH    A1H9|tHHu[]A\A]    LeL       uHEuBH!UHL    tE8L    } HtHL[]A\A]    H	H5    HU@        ff.         AUATUSH  HH  H    f:PuYfz DjAD8cuD8kt?HkH    DcHDkHC9    H    { ItLH    [1]A\A]    H5    HS@        ff.         AW
  `   AVAUL  ATUHLSH    H-  HH  HHH(@     Aǅ    
   H    Aǅ    A   11Ҿ   H    HCH    H8  H8  H9    H8  HBH   H   HCX    1HC@HCHHCHC    HCPHzH        Aǅ:  H   H      E1HH
H}  HL$H$H4$
  L    IH   H   Lp  ED$HuH  Ht$H    L    1EN|M7L1AGLIAG   IG0    IG         Aǅu{Ib    C LcLfC    fC8    { HtLHL    H    L    HD[]A\A]A^A_    H  AH    H5    HS@        A    H    H    H        SH  HH        H[    H    H        [H    ]HA\A]    H  H            H    L    A    H    L        H    L        H    L    H        hid_bigbenff no device data
 parse failed
 hw start failed
 no output report found
 no inputs found
 %s:red:bigben%d bigben                                                                 unexpected rdesc, please submit for review
     LED and force feedback support for BigBen gamepad
      license=GPL alias=hid:b0003g*v0000146Bp00000902 depends=hid,ff-memless retpoline=Y intree=Y name=hid_bigbenff vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                           k  	                                                                                                                                         (    0  8  0  (                     8  0  (                     8                       (                 (                 (                       (                 (                         (    0  8  H  8  0  (                     H                              (                 (  H                                                                                                                                                                                                                                                                                                                                                                                                                m    __fentry__                                              
IR    __hid_register_driver                                   9[    __x86_return_thunk                                      _    _dev_warn                                               4    _raw_spin_lock_irqsave                                  p\    _raw_spin_unlock_irqrestore                             -    cancel_work_sync                                        j    hid_hw_stop                                             Ë    _dev_err                                                o    hid_alloc_report_buf                                    z    kfree                                                   ,M    hid_output_report                                       ^    hid_hw_raw_request                                      ;    hid_unregister_driver                                   Ӆ3-    system_wq                                               6    queue_work_on                                           &;    devm_kmalloc                                            4s    hid_open_report                                         q    hid_hw_start                                            T    hid_validate_values                                         input_ff_create_memless                                 SMu    strlen                                                  nJne    snprintf                                                Qkn    devm_led_classdev_register_ext                          o    _dev_info                                               e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                           	 %5 Eu
										
					
u%F;ue	9Be & F 	0	1	3	4u
& F 	2	5 
!&
!&                                                                           hid_bigbenff                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         @  @  r         
t             :              
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      ?<    R<    c<    x< 	   < 
   <    <      <        *         4
     @   /!     `   <      ;5        <        <    @   <    `   =    h        p   *        =       =       %=       -=       ?=                      I=    @   4
  D    U=               ^=       l=       x=    @  =    `  A           =      =    @  =    `  =      =      =             K      X> F @  ,       = H   =       >              B 
> 
  `  ]  `       > `      #> `      [        *  ?   I=      Wr K    4> L  B  B>    @B       `B    N B  K> K   B  W>    B         E \>   H   ]  `       X> F      +U             n_ K   @  f> `     I=              G n>       ]  `       Wr J    ,        p(               C            J              I ~> ;    > U      >    @   > U     B       > S    >    @  >    `  >             5!       #u            v        *  Q    >    @  > T   > Q    > TG    "      u  V   
? X    ? G  @  !?    @  /? @    7?      H?      T?       `?       t?    @  ?    `  ? R   ? K     ? H            ?    @  4    `  ?      ? K      `     ? k   @  ? k           	      `      ov  k     @ Z    @ \ @  @ ^   /@ `   @@ b        @  NR      T@     `@      m@ `   @  x@ *    @ D     H/  0    [               M @     @        @ `   @   @ P               F       @      @     @    @    A      A     )A    =A           A            O       RA   8    ?       { g @   ]A `      fA *       i @    k     ^   oA l    |A n @  A o   @  q   X> b    A s @  A u   A u   A w    A y @    {     Z    Z    u    @         U A 
  h   L  Z       ^ @   Y  Z    0  ^    N  }     Z @  ה     %  Z   A     A  @  1    B    B              W       
       N        Y       
       N               [       
        N        ]       
        N     J     D               _       
        N     F        a B      =               
c ,B      9B        CB        NB    @          
e        >       
K       N     K          h       
       N     g        j        d       
       N     F                      m        f       
       N     J     D               p       
U      N     U                r       
       N     H     J     D                     t       
       N     H        v       
        N     J     D        x       
       N              z       
       N               |       
        N     F               ~       
       N            U      Q                               
       N     U      Q                 
       N                                    
K       N                             YB   `   ;5 N     X> F @   '  *     fs  K      gB $      qB $      B $           B K     B K     o Q                [X                   >              
               
       +U      k       TU          B       B    x         
U  ;5 N > U  B    B           
   ;5 N [   g B           
    ;5 N B           
UX   a [X  B           
     a [X  A  UX  C           
   "  +U    k     TU  C     ,C      hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_class_request HID_REQ_GET_REPORT HID_REQ_GET_IDLE HID_REQ_GET_PROTOCOL HID_REQ_SET_REPORT HID_REQ_SET_IDLE HID_REQ_SET_PROTOCOL hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code bigben_device led_state right_motor_on left_motor_force work_led work_ff bigben_driver_exit bigben_driver_init bigben_report_fixup bigben_probe bigben_remove bigben_get_led bigben_set_led hid_bigben_play_effect bigben_worker   hid-bigbenff.ko 
C                                                                                               	                                                                                                                     $            0              -                   :     G              S     S       	       i     \              }     n       <                                       $                                        8                   #            @                                      0       C                  C       %                   9                 G   	                Z                 i    4              }                     I                  0      m          a       S                                                                ;            0       J                     P                    V                     h                     u                                                                                                                                                    	                                                 0       #                     :                     F                     Q                   ]                     g                     |                                                                                                                                                                                                                   0                      __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 bigben_driver_init bigben_driver bigben_report_fixup pid0902_rdesc_fixed bigben_report_fixup.cold bigben_remove bigben_get_led bigben_get_led.cold bigben_worker bigben_driver_exit bigben_set_led bigben_set_led.cold hid_bigben_play_effect hid_bigben_play_effect.cold bigben_probe bigben_probe.cold __UNIQUE_ID_license241 __UNIQUE_ID___addressable_cleanup_module240 __UNIQUE_ID___addressable_init_module239 bigben_devices .LC12 .LC13 hid_output_report devm_kmalloc hid_unregister_driver hid_hw_start hid_validate_values __this_module snprintf queue_work_on __hid_register_driver cleanup_module kfree __mod_hid__bigben_devices_device_table _raw_spin_lock_irqsave hid_hw_stop __fentry__ init_module _dev_info hid_alloc_report_buf _dev_err _raw_spin_unlock_irqrestore devm_led_classdev_register_ext _dev_warn __x86_return_thunk cancel_work_sync input_ff_create_memless hid_hw_raw_request strlen hid_open_report system_wq                 6   
                          @                >   1          6   K          4   Z          ;   c          ?   o          5             6                                 >             >             6             9   !         4   5         ;   =         4   U         ;   g         2            (            ;            A   
         >   t         (            ;            A            6               0                >            4   $         ;   4         4   N         ;   `         D   n         /            6               E                4            ;            4            ;   
         >            D            /   1         6   [         )   }         C                               +               w                ,                                  ]                          &                  +         @   K         B   r         )               e                .                                                 <            &            '   %         4   9         ;   @            0       H         8   ^         >   x         5            D            /             6                                  -                                          0                                  =             >   #             
       +          :   0                    8             
       E          :   S             
       X          :   ]                   d             T       l          :   w             p      ~             +                 :                H                                    :                H                   <                 :                                  *                                                           0                                                (                   0                   8             0                                                                                                                                          	                   ]                                                             #                    0                    7                    8                    <                    k                    l                     n       $             s       (                    ,                    0                    4                    8                    <                    @                    D                    H                    L             Z      P             ^      T             `      X             b      \             d      `             f      d             k      h                   l                   p                   t                   x             
      |                                                                                                                                                                                                                                                                    H                   I                   K                   M                   R                   t                                                                                                                                                                           	                                      %                   0                   7                   C                   E                  N                  O                  V                  Z                  P                  T                  U                   W      $            Y      (            [      ,            ]      0            b      4                  8                    <                   @                    D                   H                   L            4       P            5       T            =       X            B       \            D       `            I       d            a       h                   l                    p                                 u                            0             0      8             0       h                                1                      7           8         7           P         1            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .modinfo .rodata .rodata.cst2 .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                             @       $                              .                     d       <                              ?                                                         :      @               <            '                    J                     =                                    E      @               C      x       '                    Z                     \                                    U      @               PD            '                    n                                                         i      @               `F      0       '   	                 y      2                     |                                                        @                                    @               F             '                          2                     c                                                  <	                                          @               PG             '                                         @	                                                          
      0                                                    0
                                                        4
                                           @               hG             '                                         T
      .                                                        t                                   @               (H            '                    
                                                                                                                      @               P      x       '                    %                    P                                          @               XQ             '                    5                    X                                    0     @               pQ             '                    E                                        @               @     @               Q      0       '                     _                                                          d     0                      P                             m                     P                                     }                     P                                                        2                                                          02      x      (   (                 	                      8      :                                                   Q                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  ciY8W]LGM]dV	ut?F]qnz 4&Wok3BːyAdksYsRS/OCwm"*;YJhՕE>y"IV*vz/쓽ApKe.OZB/쯅-|Y@Q&=eX7U=ouzd̢Аbץ=Ƌ\%GAfE	ѕ~]{         ~Module signature appended~
                                                                                                             ELF          >                     2          @     @ * )          GNU Um9Tx.6Qr:':wA        Linux                Linux   6.1.0-35-amd64      :Hv~<t    ~        f         H1ɉf1   u/SHf     t  tUH[        H^HH0      @fHA  I@H   H[    H^HH0      @fxA  I@HH^HH0tQ   @fpA  I@HH    H    L$    L$    I     ^H    H    L$    L$t    H    H    L$    L$t        H    H    H        H        RH  H4$H            H$fPfPY    L$Hs0      H        L$    L$Hs0      H        L$    L$Hs0      H        L$    hid_cherry cherry                            fixing up Cherry Cymotion report descriptor
    4%s: Invalid code %d type %d
                          hid_map_usage                      j  #                  j  '                                       license=GPL alias=hid:b0003g*v0000046Ap00000027 alias=hid:b0003g*v0000046Ap00000023 depends=hid retpoline=Y intree=Y name=hid_cherry vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                                                                                       m    __fentry__                                              
IR    __hid_register_driver                                   ;    hid_unregister_driver                                   9[    __x86_return_thunk                                      o    _dev_info                                               $    ___ratelimit                                            ~    _printk                                                 e:X    module_layout                                                 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                               hid_cherry                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0             Q         
t             :              
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  C    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> E @  ,       o= G   x=       }=              A = 
  `  ]  `       = `      = `      [        *  ?   <      Wr J    = K  B  =    @B       `B    M B  = K   B  =    B         D =   H   ]  `       X> E      +U             n_ K   @  = `     <              F =       ]  `       Wr I    ,        p(               B            I              H = ;    > U      >    @   > U     B       > R    *>    @  :>    `  H>             5!       #u            v        *  P    W>    @  _> S   k> Q    t> TG    "      u  U   > W    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? Q   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? Y    ? [ @  ? ]   ? _   ? a        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               L @     @        (@ `   @   4@ O               E       C@      L@     [@    m@    ~@      @     @    @           @            N       @   8    ?       { f @   @ `      @ *       h @    j     ]   @ k    @ m @  A n   @  p   X> a    A r @  A t   )A t   6A v    GA x @    z     Y    Y    u    @         T WA 
  h   L  Y       ] @   Y  Y    0  ]    N  |     Y @  ה  ~   %  Y   eA     qA  @  1    A    A              V       
       M        X       
       M               Z       
        M        \       
        M     I     C               ^       
        M     E        ` A      =               
b A      A        A        A    @          
d        >       
K       M     K          g       
       M     f        i        c       
       M     E                      l        e       
       M     I     C               o       
U      M     U                q       
       M     G     I     C                     s       
       M     G        u       
        M     I     C        w       
       M              y       
       M               {       
        M     E               }       
       M            U      Q                               
       M     U      Q                 
       M                                    
K       M                    >              
 A       A    x         
   A M  G Wr I 4
  C W   b     A           
U  A M > U  B    	B     hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code ch_driver_exit ch_driver_init hdev ch_input_mapping ch_report_fixup    hid-cherry.ko                                                                                                      	                                                                                                                     $            0       $       +     T              B                    O     `              h     l       	       ~     u                          <                                       $                                @       8                                       '           	         1           0       j                         %            (       ,   	 1       u       B                   Y                                                  H                                                                                                                        H       *                     5                   A                     I                     V                     `                      __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 ch_driver_init ch_driver ch_driver_exit ch_report_fixup ch_report_fixup.cold ch_input_mapping __func__.13 _rs.12 ch_input_mapping.cold __UNIQUE_ID_license241 __UNIQUE_ID___addressable_cleanup_module240 __UNIQUE_ID___addressable_init_module239 ch_devices .LC2 hid_unregister_driver __this_module __hid_register_driver cleanup_module __mod_hid__ch_devices_device_table __fentry__ init_module _printk ___ratelimit _dev_info __x86_return_thunk                &             +                #          +   1          &   t          +   {          +             +   &                    -                    6         )   B            -       U                    \                    e         )   r            T       y                                                 )               {                 &                                  "                        @                 #                @                 !                                  *                 -          +   F             0       K          (   T             B      m             0       r          (   {             B                   0                 (                B                                                              0                                                                                                     "                    s                    z                                        ,                                          '                    0                    J                    Q                    p                    s                                                $                    (                    ,                   0                     4                    8                     <                    @                     D                    H             ,       L             1       P                    @                    H                                                       0                  $                      '           8         '           P         $            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.exit.text .rela.text.unlikely .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .rodata .modinfo .rodata.cst2 .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                             @       $                              .                     d       <                              ?                                                         :      @               (            '                    J                     :                                    E      @               *      x       '                    Z                     Y                                    U      @               H+      0       '                    j                     e                                    e      @               x+      8      '   	                 y      2                                                                                                                 @               ,      H       '                          2               8      O                                                                                            @               ,      H       '                                               h                                                                                                                                                                                                               @               @-             '                                               ~                                                   b      T                                    @               -            '                    
                                                                                   x                                   @               /      `       '                    %                    8	                                          @               (0             '                    5                    @	                                    0     @               @0             '                    E                    	                    @               @     @               X0      0       '                     _                     
                                     d     0                
      P                             m                     P
                                     }                     P
                                                        @"                                                          X"             (   !                 	                      x&      s                                                   0                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  3zZ1WP&$j7
`>,1vtY5ut1Ya;$Y}4Lc]=;fX㹚zmL=^~IsAʮ_qg|7*yvmb:*F]<FZکPվ/_6u׮OS02_YB-4aIΡ;j\_sάtNx@z?%tɆFxŢ@@9xu         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >                    O          @     @ ) (          GNU )%TLPfCЪ        Linux                Linux   6.1.0-35-amd64      H      u>SHH,             -   H        H[        fD      H  HHI؀yt    <!  u:v~@u~Au~Euۀ~F             ~8  t1    ~0uH  uSHF@HP  H@xHXH             H    111H    1ɺ   H߾       111H       [    ff.     f    f1=   t1    SHHHFH*=    w_=   .     =  u  =     H^HH0  A  AfDQA  I QH   =    *  =    =    H^HH0K  A  AfDYA  I QHJ=        =     HFH0A     AfyA  I QH   H[    =   P  HFH0P  A   fJA  I RH=     =   
  HFH0Z  A   AfDYA  I QHk=
    =  u6H^HH0T  A1  fJA  I RH#=	    HFH0  	  AfyA  I QH=    HFH0   A  fJA  I RHHFH0     AfYA  I QHtH^HH0  A  AfDYA  I QH<H^HH0$  A   AfDQA  I QHH^HH0<  A  AfDQA  I QHH^HH0T     AfqA  I QH1H^HH0O    AfYA  I QHYH^HH0    AfyA  I QH#H    H    L$    L$    I     H    H    L$    L$t    H    H    L$    L$t    H    H    L$    L$t    H    H    L$    L$e    H    H    L$    L$=    H    H    L$    L$    HFH0     AfqA  I QHH^HH0  0  AfqA  I QHH    H    L$    L$    H    H    L$    L$\    H    H    L$    L$4    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$    H    H    L$    L$l    H    H    L$    L$D    H    H    L$    L$        H    H    H        H  H    D$    D$    H  H    D$    D$    RH  H4$H        H$@F/@A/Y    H  H        1    L$Hs0   1  H        L$    L$H4%         H        L$    L$H4%          H        L$    L$Hs0     H        L$    L$Hs0     H        L$    L$Hs0     H        L$    L$Hs0     H        L$    L$Hs0      H        L$    L$Hs0      H        L$    L$Hs0     H        L$    L$Hs0     H        L$    L$H4%          H        L$    L$H4%          H        L$    L$H4%         H        L$    L$H4%       	  H        L$    L$H4%          H        L$    L$Hs0   0  H        L$    H        hid_chicony Chicony hid parse failed: %d
 Chicony hw start failed: %d
 Fixing up report descriptor
 chicony                                             can't find wireless radio control's input       4%s: Invalid code %d type %d
                                                                                          hid_map_usage                                           #                   6                   !                                      license=GPL alias=hid:b0003g*v000004F2p00001421 alias=hid:b0003g*v000004F2p00001236 alias=hid:b0003g*v000004F2p00001123 alias=hid:b0003g*v000004F2p00000418 depends=hid,usbhid retpoline=Y intree=Y name=hid_chicony vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                                                                                                                                                                           m    __fentry__                                              
IR    __hid_register_driver                                   ڮ    usb_hid_driver                                          4s    hid_open_report                                         q    hid_hw_start                                            9[    __x86_return_thunk                                      Ë    _dev_err                                                ;    hid_unregister_driver                                   o    _dev_info                                               a    input_event                                             _    _dev_warn                                               $    ___ratelimit                                            ~    _printk                                                 e:X    module_layout                                                 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                               hid_chicony                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0             p  ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J                    ;              
 A       A    x         
   A J [   c A           
U  A J > U  B    B           
   A J  D Wr F 4
  @ W   b     B           
   A J X> B           +B            
t                           
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code ch_driver_exit ch_driver_init hdev ch_probe ch_switch12_report_fixup ch_input_mapping ch_raw_event hid-chicony.ko                                                                                                 	                                                                                                                     $            0       $       +     T       $       @     x       $       U                   l                   y                               	                                      <                                       $                                @       8                   Z                   D          	                $    `       M       =    D       *       [                  h    n              z    P      *                                     (                                                                                              x       +                     A                     N                  \                     r   	                            x                                                                                                                                                                                                                                             __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 ch_driver_init ch_driver ch_probe ch_probe.cold ch_driver_exit ch_switch12_report_fixup ch_switch12_report_fixup.cold ch_raw_event ch_raw_event.cold ch_input_mapping __func__.13 _rs.12 ch_input_mapping.cold __UNIQUE_ID_license245 __UNIQUE_ID___addressable_cleanup_module244 __UNIQUE_ID___addressable_init_module243 ch_devices hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module __mod_hid__ch_devices_device_table __fentry__ init_module _printk ___ratelimit _dev_info _dev_err usb_hid_driver _dev_warn __x86_return_thunk input_event hid_open_report                ,             2           %          6   -                    :          '   B             L          4   V          4   a          ,   z          4                @                 4             ,             4                j                5            5   &         5   4         5   ?         4   Q         ,   d         4            4   q                    x                             /                                                                      /                                                                       /                                                                      /                                                                      /   -                  4                    ;                    D         /   U                  \                    c                    l         /   }            9                                                       /               d                                              %         /   6                   =                    D                    M         /   ^            O      e                    l                    u         /                                                                      /                                                                      /                                                                       /               v                                                       /   &            (      -                    4                    =         /   N                  U                    \                    e         /   v                            ,                                  (                        @                 )                *                 1                B       .                    7          1   @             B       S             G       X          0   j          4   x                     }          3                9                   0                 .                                   0                 .                                   0                 .                                 0                .   (                  A            0       F         .   O                  h            0       m         .   v                              0                .                                 0                .                                 0                .                                 0       	         .                     +            0       0         .   9                  V            0       [         .   d                              0                .                                 0                .                                 0                .                                 0                .                     )            0       .         .   7                               @                 &                                                           `                                         P                    x                                      @                                                                            d                                             $                   (             K      ,                   0                   4                   8             .      <             d      @                   D                                 K                    U                    y                                                            >                   c                                       i                                                                                  J                    K                    Z                    `                                                $                    (             >      ,             C      0             P      4             i      8             p      <                   @                   D                   H             z      L                     P                    T                     X             D       \             E       `             i       d             n       h                    l             ;      p                     t                    @             d       H                     p                                                      `                    P                 *                      -           8         -           P         *            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .rodata .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                            z                             :      @               7            &                    J                     	                                    E      @               0@      x       &                    Z                     9	      ;                             U      @               @            &                    n                     t                                    i      @               F      0       &   	                 y      2                     l                                                        (                                    @               F      x       &                          2               
      O                                                  h
      H                                    @               8G            &                                         
                                                          X                                                        i      $                                    @               H             &                                                                                                  A      x                                    @               I            &                                                                             
                    @      x                                   @               L             &                                                                                 @                M             &                    (                                                        #     @               8M             &                    8                                         @               3     @               PM      0       &                    R                                                         W     0                     P                             `                                                          p                           l                             u                     </                                                          P/      (      '   &                 	                      x4      +                                                   M                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  %[+PAǭr۳KJ:VAW2 L6,SRj1̶1sU#t{9@V4U- ^(׊(ِ&F7e/BC?NN&cл#y#cLSd(=4l}(>gؘ!1EiO݊ߺ|(Va!
!|gɴo~qѕckh3RQi!         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    P>          @     @ # "          GNU Ceq'6hp         Linux                Linux   6.1.0-35-amd64              H        H             :<    H    f.         HVHH        HfHHB(    H8       1         SHH      H[    D      HH    H    H        t	H    H    H    H        tH    D$    D$H    D      U   
  SHHH=        HtH,     HHHXHH          =   H        H[]             t1    z uS:  HH  t:  t21[    H;1ɺ          H;111    1[    H;   PH  H    H$    H$H    >   Z    H  H    D$    D$HD$    D$    H  H    D$    D$                                                                      Fixing CMedia HS-100B report descriptor
 hid_cmedia parse failed
 hw start failed
 cmedia_hs100b cm6533_jd         
                                                            
  "                                       license=GPL description=CM6533 HID jack controls and HS100B mute button author=Thomas Weißschuh author=Ben Chen alias=hid:b0003g*v00000D8Cp00000022 alias=hid:b0003g*v00000D8Cp00000014 depends=hid retpoline=Y intree=Y name=hid_cmedia vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                                                                                                                                                                                                                                                                     m    __fentry__                                              9[    __x86_return_thunk                                      ;    hid_unregister_driver                                   o    _dev_info                                               ۡg    input_set_capability                                    j    hid_hw_stop                                             z    kfree                                                   
IR    __hid_register_driver                                   1Y    kmalloc_caches                                               kmalloc_trace                                           4s    hid_open_report                                         q    hid_hw_start                                            Ë    _dev_err                                                a    input_event                                             e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           	 %		u		/	 	 & 	 u	                                                                                           hid_cmedia                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0                      
t             :              
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  C    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> E @  ,       o= G   x=       }=              A = 
  `  ]  `       = `      = `      [        *  ?   <      Wr J    = K  B  =    @B       `B    M B  = K   B  =    B         D =   H   ]  `       X> E      +U             n_ K   @  = `     <              F =       ]  `       Wr I    ,        p(               B            I              H = ;    > U      >    @   > U     B       > R    *>    @  :>    `  H>             5!       #u            v        *  P    W>    @  _> S   k> Q    t> TG    "      u  U   > W    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? Q   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? Y    ? [ @  ? ]   ? _   ? a        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               L @     @        (@ `   @   4@ O               E       C@      L@     [@    m@    ~@      @     @    @           @            N       @   8    ?       { f @   @ `      @ *       h @    j     ]   @ k    @ m @  A n   @  p   X> a    A r @  A t   )A t   6A v    GA x @    z     Y    Y    u    @         T WA 
  h   L  Y       ] @   Y  Y    0  ]    N  |     Y @  ה  ~   %  Y   eA     qA  @  1    A    A              V       
       M        X       
       M               Z       
        M        \       
        M     I     C               ^       
        M     E        ` A      =               
b A      A        A        A    @          
d        >       
K       M     K          g       
       M     f        i        c       
       M     E                      l        e       
       M     I     C               o       
U      M     U                q       
       M     G     I     C                     s       
       M     G        u       
        M     I     C        w       
       M              y       
       M               {       
        M     E               }       
       M            U      Q                               
       M     U      Q                 
       M                                    
K       M                          >   A      ` +U      ;5 M @   A                                    >              
         A       A    x         
U  ;5 M > U  B    A           
    ;5 M B           
   ;5 M [   f %B           
   ;5 M  G Wr I 4
  C W   b     1B           
   ;5 M o= G EB           
   ;5 M X> E      &     \B     hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code cmhid switch_map cmedia_exit cmedia_init cmhid_hs100b_report_fixup cmhid_remove cmhid_probe cmhid_input_mapping cmhid_input_configured cmhid_raw_event hid-cmedia.ko   A
t)                                                                         	                      
                                                                  q       $                   $       +                   B                   O                   h            	       ~                               <                                       $                                                   @      8                   8           0                          /       5          >       H    P       =       _                  l           k       x           x           /       M                 n                                                         0           @       0                          4           <       O    H              e    a              {                                                                                                                                                                             k                                        0       1                     :                     O    @       0       u                                                                                                          __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 cmhid_input_mapping cmedia_exit cmhid_driver cmhid_hs100b_driver cmhid_hs100b_report_fixup cmhid_hs100b_report_fixup.cold hs100b_rdesc_fixed cmhid_input_configured cmhid_remove cmedia_init cmhid_probe cmhid_probe.cold cmhid_raw_event __UNIQUE_ID___addressable_cleanup_module244 __UNIQUE_ID___addressable_init_module243 cmhid_hs100b_devices cmhid_devices __UNIQUE_ID_license242 __UNIQUE_ID_description241 __UNIQUE_ID_author240 __UNIQUE_ID_author239 hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module kfree hid_hw_stop __fentry__ init_module _dev_info __mod_hid__cmhid_hs100b_devices_device_table _dev_err input_set_capability __mod_hid__cmhid_devices_device_table __x86_return_thunk input_event kmalloc_trace hid_open_report kmalloc_caches                  -             4             -                @                &   $                     )          &   1          -   :             B          4   Q          -             2             4             -             ,             +             -                                  (                        @                )             4                                  (                                          )               @      
         &            4   !         -   ;         8   $       @         6   e         7   m            [       z         '               +                4            -            4            4            5            5             4                                  /                      +          4   9                    B          1   R          +   [                   i                    r          1                                                          0                    P                            (                    0                    8                                 
                    A                                                                                                                                               $             *                                                                                  -                    0                    F                    P                                                $                    (                    ,                    0                    4                    8                    <                    @                   D                   H                    L             &      P             1      T             8      X                   \                   `                   d                   h                   l                   p                   t                   x                   |                                                                                                               *                    /                    |                     *                            h             0       @            8       H            @       p                   x                                                                     P                  *                      .           8         .           P         *            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.text.unlikely .rela__mcount_loc .rodata.str1.8 .rodata.str1.1 .rodata .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                                                         :      @               X1                                 J                           |                              E      @               `5                                  ^                     *      @                              Y      @               P6                                  k      2               p      )                             z      2                     B                                                        p                                                    P      &                                                  v      (                                    @               7                 
                                                                                                                                         @                8                                                      @                                                                                                    @               ;                                                       
                                          @               <                                                       
                                          @               <                                                                           @                    @               <      0                            "                                                         '     0                     P                             0                                                          @                           T                             E                     $(                                                          8(      X      !   &                 	                      -                                                         <      T                             0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  `_Bk`DS,ZJ[7{>o:%/)ݎ;Wj
x&TUe*	DdS3nX!xCJ8܆a 29dTT
ƁN-b#11&.5$~rrHюZg$#cMg6 wCʓ{>60,A\kUv~Q99CmƮH}3N"RQ0*СÜp6m)AS	Y4CZ         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ELF          >                              @     @ , +          GNU Tq8CS#ˍVMp        Linux                Linux   6.1.0-35-amd64      p          HH  H@Ht   t    t1    ǀp      1    ǀp     1    ff.     @     ATUSHH  HLeMtIH    H      LAƄ$      I$x      I<$    L    HH  HEHt5ƀ  H}    HEHx      HEH8    H}    H[]A\        AU
   ATUHHSHHeH%(   HD$HE@HT$D$    Lh@    uzDD$A@wcAXh  E1MXj @      Lj        H    HHT$eH+%(   u!H[]A\A]    HH    ff.     @     AU     ATUSHGPH=    Hh@HE@Lh@    HtlAXE1E1Hh        MXjLP΀      H    DcA    H    [D]A\A]    AfD      AV  AUATIԺ   UHSHG@H=    Lp@    H   AXE1E1Hh        MXjLP΀      H    KA    H       L       H    Hc[]A\A]A^    HD      AV  AUATIԺ   UHSHG@H=    Lp@    H   AXE1E1Hh        MXjLP΀      H    <t@<0    H    H       L       H    Hc[]A\A]A^    H    H        UHSHHHG@
H@@HXSuPzWA0   uDXh  E1ɹ@   j    j        H    HH[]    HuzWuA   Hff.         H  HHI؀yt    O<4  t>  u:   vxKuڀxMuԀxNu΀xO        fD        unSWA@   @   HҺ    HX@DOE1ɺ   HC@H@@Xh  LXj Lj        H    [        f      t    SHE1ɹ@   1   HX@HC@H@@Xh  H-   j j DGHǁ       H    [    f    p  H5    Hx          ff.     f    AWAVAUATUSHLfH      9  L  L  H
     L    H  L HHH      Ņ    -   H    Ņ    IF؀x uAe  AuH[]A\A]A^A_    H=      
  LH      ID$H  H   HuH      
  LxL    IH   H   HuH  H    LL    ID$LH   ƀ   ID$L0ID$@   ID$H@     ID$H@0    ID$Hx  ID$H  H  H  ID$1Hǀ      It$    ID$H8    I|$    ID$    H    L    H=      
  LH      IH  IGH   HuH      
  L@	LL$    HH   H   L$HuH  H    LH<$    H<$1LH   AƆ   Ix  I  I>LI  AF   IF     IF0    I  Iǆ      Aǆp          u3H    L    AƆ  L    Ix      I>    L    1H    LIG    :6,ff.         Hȋ	1f1ҁ     USD0HA   DA?                      g     
  -    H^HK0fwHuZH    H    L$    L$         H^Hc    HK0f2  H)  @fPA  I@H   H[]           tX   N  -    H^HK0fwHuH    H    L$    L$tT       @-    H^HK0fw	HKH    H    L$    L$    I     7-    H^HK0fw	HH    H    L$    L$t    H    H    L$    L$t    -    H^HK0fw	HH    H    L$    L$G        H    H    H        H    HD$    HcD$    DH    H    A    H    H    H    H        H    H    H    H        H    H    H    H߉D$    HcD$    RH  H    H$    H$@M&Y    H߉H    [    H߉H    [    H    L        H    L        H3   L$H        L$    H3   L$H        L$    H3   L$H        L$    H3   L$H        L$    H3   L$H        L$    H3   L$H        L$    H                                                                                                                                hid_corsair %d
 HW SW K90 in unknown mode: %02hhx.
 %s
 Failed to set macro mode.
 Fixing up report descriptor
 parse failed
 hw start failed
 %s::record %s::backlight corsair current_profile macro_mode  Failed to change current profile (error %d).
   Failed to get K90 initial state (error %d).
    Read invalid backlight brightness: %02hhx.
     Read invalid current profile: %02hhx.
  Failed to get K90 initial mode (error %d).
     Failed to set record LED state (error: %d).
    Failed to set backlight brightness (error: %d).
        Failed to initialize K90 macro functions.
      Failed to initialize K90 backlight.
    4%s: Invalid code %d type %d
                                  hid_map_usage                                          4                   >                   	                                                                                              profilekey_codes                                                              recordkey_codes                                               gkey_codes                                                    description=HID driver for Corsair devices author=Oscar Campos author=Clement Vuchener license=GPL parm=profilekey_codes:Key codes for the profile buttons parmtype=profilekey_codes:array of ushort parm=recordkey_codes:Key codes for the MR (start and stop record) button parmtype=recordkey_codes:array of ushort parm=gkey_codes:Key codes for the G-keys parmtype=gkey_codes:array of ushort alias=hid:b0003g*v00001B1Cp00001B09 alias=hid:b0003g*v00001B1Cp00001B3E alias=hid:b0003g*v00001B1Cp00001B34 alias=hid:b0003g*v00001B1Cp00001B02 depends=hid,usbcore,usbhid retpoline=Y intree=Y name=hid_corsair vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                 $                                     $                                     $                                                                                                                                               (  @  H  P  X  @  (                 @                       (  0  8  @  (                 (                         (  0  8  @  H  0  (                   0                         (  0  8  @  H  0  (                   0                   (  0  8                                                 (                                   (                                             (    0  8  @  8  0  (                     @                                              @  (  0                                 @                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   m    __fentry__                                              9[    __x86_return_thunk                                      
IR    __hid_register_driver                                   y    sysfs_remove_group                                      y    led_classdev_unregister                                 -    cancel_work_sync                                        z    kfree                                                   j    hid_hw_stop                                             i    kstrtoint                                               =     usb_control_msg                                         V
    __stack_chk_fail                                        _    _dev_warn                                               1Y    kmalloc_caches                                               kmalloc_trace                                           nJne    snprintf                                                ;    hid_unregister_driver                                   o    _dev_info                                               Ӆ3-    system_wq                                               6    queue_work_on                                           ڮ    usb_hid_driver                                          &;    devm_kmalloc                                            4s    hid_open_report                                         q    hid_hw_start                                            SMu    strlen                                                  E:#    __kmalloc                                               ܂A    led_classdev_register_ext                               '    sysfs_create_group                                      Ë    _dev_err                                                $    ___ratelimit                                            ~    _printk                                                 y    param_array_ops                                         .    param_ops_ushort                                        e:X    module_layout                                                 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             hid_corsair                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         x  x    ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J         A       YX      @      !  Q    fs  K     A     A      A      4        B  @                                                                           ;              
         B       B    x         
U  0B J > U  B    5B           
   "  J   D Wr F 4
  @ W   b     PB           
   "  J Wr F 4
  @ A     fB           
    "  J tB           
   "  J [   c B     B      B      B      B      B      C            
     [X  @ UX  C           
UX   [X  'C     :C            
t                 !          
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code k90_led k90_drvdata record_led corsair_drvdata k90 corsair_driver_exit corsair_driver_init hdev corsair_mouse_report_fixup corsair_input_mapping corsair_event corsair_remove corsair_probe k90_store_current_profile k90_show_current_profile k90_store_macro_mode k90_show_macro_mode k90_record_led_work k90_backlight_work k90_brightness_set k90_record_led_get k90_backlight_get hid-corsair.ko  ͻ\                                                                                               	                      
                                                                                              $                  $       +           $       @           $       U                  l             @      y     /                  ;      	            D                  U      <                                       $                                       Q                              @       8      )    p              8           (       G                  a                                                0                            O       .                            }       /       
    `             "                  <   	                P           Z       k           &           `      ~                                   n                            P      #                 u                (            
            -                 E                   Q            (       X           $       i                     ;                         +           +                  ?                  W                                 '                    P            x       `                 j                  ~                      c       8                  *                   (                                            .           I       M          )       p    (       (                             @                  7      )           `      $           P       (           `             "                  9                     F                     \                     m                     z   "                                                                                 	                                                                                                                         	            x       1                   =                     E                     R                     c                     m                     v                                                                                                                                                                                             
                                          "                     2                     <                     K                      __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 k90_record_led_get corsair_event corsair_driver_init corsair_driver corsair_remove k90_attr_group k90_store_current_profile k90_store_current_profile.cold k90_backlight_get k90_backlight_get.cold k90_show_current_profile k90_show_current_profile.cold k90_show_macro_mode k90_show_macro_mode.cold k90_store_macro_mode k90_store_macro_mode.cold corsair_driver_exit corsair_mouse_report_fixup corsair_mouse_report_fixup.cold k90_record_led_work k90_record_led_work.cold k90_backlight_work k90_backlight_work.cold k90_brightness_set corsair_probe corsair_probe.cold corsair_input_mapping corsair_record_keycodes __func__.13 _rs.12 corsair_gkey_map corsair_profile_keycodes corsair_input_mapping.cold __UNIQUE_ID_description254 __UNIQUE_ID_author253 __UNIQUE_ID_author252 __UNIQUE_ID_license251 __UNIQUE_ID___addressable_cleanup_module250 __UNIQUE_ID___addressable_init_module249 corsair_devices k90_attrs dev_attr_macro_mode dev_attr_current_profile __UNIQUE_ID_profilekey_codes248 __UNIQUE_ID_profilekey_codestype247 __param_profilekey_codes __param_str_profilekey_codes __param_arr_profilekey_codes __UNIQUE_ID_recordkey_codes246 __UNIQUE_ID_recordkey_codestype245 __param_recordkey_codes __param_str_recordkey_codes __param_arr_recordkey_codes __UNIQUE_ID_gkey_codes244 __UNIQUE_ID_gkey_codestype243 __param_gkey_codes __param_str_gkey_codes __param_arr_gkey_codes devm_kmalloc hid_unregister_driver param_ops_ushort hid_hw_start __this_module snprintf queue_work_on __hid_register_driver cleanup_module param_array_ops kfree led_classdev_unregister hid_hw_stop __fentry__ __mod_hid__corsair_devices_device_table init_module _printk ___ratelimit __stack_chk_fail _dev_info _dev_err kstrtoint usb_hid_driver usb_control_msg sysfs_create_group led_classdev_register_ext _dev_warn __x86_return_thunk sysfs_remove_group cancel_work_sync kmalloc_trace strlen hid_open_report __kmalloc kmalloc_caches system_wq              \             j             \   ;          j   L          j   ]          j   q          \                                 k             Z             l             Y             Y             Z             l            Y            Y            [   !         \   a         d            f                        j            a            \            q          -         m   l         f   y            8                                   Y            j            \            q                   m             f   -            f       =            K       D                   V         T   ^         Y   n         j            \            q                   m            f               y                                                         4       +         T   3         Y   C         j   J                   a         \            f                               j            \            j   Q                   V         j   a         \            f                               j            j            \            j   8         f   D                   J         j   Q         \   ^         r   o         U            \            e                    O            o               #               R                     2         j   9         q   D       O         m   u         n            p                               T               P                         6                  @         h   U         Y   _         Y   o                  w         i            q   D                m            n            p    	                   	         T   R	            P      Z	                    l	            `      |	         h   	                   	         g   	         Z   	         l   	         Y   	         Y   	            P      	         i   
         \   
                  
                    
                    
         `   
            7      
                   '         j   .         j   I                  f                    m                    v         `                                                                                        `                                                           
                             `   #            }      *                    1                    :         `   G            Z      N                  o                    v                             `                               \                                  S                        @                 V                                  i                      %             `       -          i   8                   A             0       I          i   T                    \          i   f             V      o             0       w          i                                 i                +                                    i                8                 i                                   S                 b             j                                 i   	                           i               ~                c   #                  *            p       2         c   7                  L                  Q         _   Z                  o                  t         _   }                                             _                                                _                                                _                                                 _   	                               @                 P                                                                               p                            (                    0                   8                   @             `      H                    P             `      X                   `             P      h                   p              
                                                      Q                             P         Q           X                           Q                                                             S                     X                                (                    0          S           8          X           H             @      P             `      X          S           `          X           p                                                     :                    K                    \                                                          m                   B                          $                   (             U      ,                   0                   4                   8             I      <             1      @             &      D             -      H                                                       a                    p                    w                    x                    y                                                                 $                   (                    ,             '      0             .      4             /      8             6      <             =      @                   D                   H                   L                   P                   T                   X                   \                   `                   d                   h                   l                    p                   t                   x                   |                                K                   ^                   e                   t                                                                                                                                                                                                                                                                                                                (                   f                   g                   i                   k                   m                   r                   {                                                                                                                                                                                                            ;                  <                  >                   @      $            B      (            G      ,            Y      0            `      4            f      8            j      <            q      @                  D                  H                  L                  P                  T                  X                  \                  `                  d                   h            Z      l            `      p            l      t                  x                  |                                                                                                                                          $                  &                  @                  I                  N                  P                  s                                                                                                                                                                  %                  (                  )                  +                  -                  /                  1                  6                  	                   
                  
                   "
                  -
                  "                  %                  &                  2                                                                $                    (                   ,            O       0                   4                   8                   <                   @                   D                   H                  L                  P                  T            ;      X            
      \                    `                   @                    H                     p                   x             p                                                             
                                                                                                                                                   `                 W                      ^           8         ^           P         W            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rela__mcount_loc .rodata.str1.1 .rodata.str1.8 .rela.smp_locks .rela.rodata .modinfo .rela__param .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                        @       $                              .                     d       <                              ?                                                         :      @               XW      
      )                    J                     <
                                    E      @               8e      x       )                    Z                     [
      
                             U      @               e            )                    n                     h                                    i      @               j      0       )   	                 ~                     t      x                              y      @               j      h      )                          2                                                        2                                                                                                                @               (l             )                                                                                   @               @l             )                                         @                                                              x                                    @               l             )                                         P      L                                    @               n            )                                                                                                 2      d                                   @               o      X      )                                              @                                                  %      $                                   @               (~      h      )                    *                    (                                    %     @                            )                    :                    (                                    5     @                            )                     J                    @(                    @               E     @                     0       )   "                 d                    +                                     i     0               +      P                             r                     ,                                                          ,                                                        $D                                                          8D      
      *   O                 	                       O      U                                                                                      0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  _>c|49b1I'Vltͺ*IZ*jDE>p+A($;7`8.+2'ј>*
<(KRU
wXED8㼃od)~-7>"3-ǼƸH8PJ'k1֚NcJA,7x4޽j/eA*s q `N 9k[$Q$ls,02L7S)A         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    HN          @     @ - ,          GNU 7,hv2[o!j$]        Linux                Linux   6.1.0-35-amd64      SHH  8HXuHu1[    { t_LC MtV    JrtN1H    t:8uHc@LǾ           H{ 111    [    @    f    HH  HtHPHtB 8 u    HH<$    H<$H    ff.                  1H        <xu    ff.         S    Åu[    f    :tHv~	t    ~uf~s/            USH_Ht"HH{Ct~`HE    []    H        H    tHHCHBHH     H    HH"HC    H    렾       f.         AV
     AUL  ATUHLS    H+  HH  HI    Å    HE -   x  u
A$   H    Å    H        H    H    u   HH       Hs/   H    tH{   C`  P	F  H   I\$LH    L    Åt+LOH        H    []A\A]A^    H        HE @=     =  urH    tH=    (   
      HH   L5    HhHH    @   L    0H    H    LsIH8  H8  HH9u4H
HH9%Hʀx( tH@HtIT$HB ID$@              H            H    H    H        H  H            H        =    H    HcH    H    9=     HE        RH  H4$H            H$fPsY    H    L        H    L        H        hid_cougar space F18 6cougar: G6 mapped to %s
 parse failed
 hw start failed
 cougar                                                                       unmapped special key code %0x: ignoring
        4cougar: no mappings defined for G6/spacebar   usage count exceeds max: fixing up report descriptor
                                        
P                   
p                                      g6_is_space                                                                                  parm=g6_is_space:If true, G6 programmable key sends SPACE instead of F18 (default=true) key_mappings=G1-G6 are mapped to F13-F18 license=GPL description=Cougar 500k Gaming Keyboard author=Daniel M. Lambea <dmlambea@gmail.com> alias=hid:b0003g*v0000060Bp0000700A alias=hid:b0003g*v0000060Bp0000500A depends=hid retpoline=Y intree=Y name=hid_cougar vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions   /                                                                                                                                                             (  0  (                   0                                  0                                                                                                                                                                                                                                          m    __fentry__                                              
IR    __hid_register_driver                                   9[    __x86_return_thunk                                      a    input_event                                             _    _dev_warn                                               j    hid_hw_stop                                             J    hid_hw_close                                            ;    hid_unregister_driver                                   ~    _printk                                                 h    param_set_bool                                          o    _dev_info                                               KM    mutex_lock                                              UrS    __list_del_entry_valid                                  82    mutex_unlock                                            z    kfree                                                   _i    refcount_warn_saturate                                  &;    devm_kmalloc                                            4s    hid_open_report                                         q    hid_hw_start                                                hid_compare_device_paths                                w    devm_add_action                                         {-ߓ    hid_hw_open                                             1Y    kmalloc_caches                                               kmalloc_trace                                           h    __list_add_valid                                        Ë    _dev_err                                                rc    param_get_bool                                          e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                           x9n                                                                                         hid_cougar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         x  x    ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J         A   (   ]  `       ,$  0       K      "  J      +U     A      A K       0   @                      ;              
         A       
B    x   B    [        
    :B J ?B           
   :B J X> B           MB           
   :B J [   c ^B           
    _ k   kB           
U  :B J > U  B    B     B              
t                           
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code cougar_shared cougar special_intf cougar_driver_exit cougar_driver_init cougar_param_set_g6_is_space hdev cougar_remove cougar_raw_event cougar_probe cougar_remove_shared_data cougar_report_fixup cougar_fix_g6_mapping  hid-cougar.ko   Z                                                                                                   	                                                                                                                     $                  $       +     *             B                    O     6             h     B      	       ~     K                  [      <                                       $                                        8                               p                                            B           	                3           5       I           J       {                 d    0                 P      /           e       -                            @                         g          `                        (                          :   !                c            H       s            (           H                  `                           X           X       )                                    (                  -       5                     :                     G                     ]                     j   #               x                                             	                                                                                                                                                                                                                                (                     A                     L                     X                     g                     t                                                                                                                                                                                    H        __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 cougar_driver_init cougar_driver cougar_raw_event cougar_mapping cougar_raw_event.cold cougar_remove cougar_driver_exit cougar_fix_g6_mapping cougar_fix_g6_mapping.cold cougar_param_set_g6_is_space cougar_report_fixup cougar_report_fixup.cold cougar_remove_shared_data cougar_udev_list_lock cougar_probe cougar_udev_list cougar_probe.cold __UNIQUE_ID___addressable_cleanup_module245 __UNIQUE_ID___addressable_init_module244 cougar_id_table __param_g6_is_space __param_str_g6_is_space cougar_g6_is_space_ops __UNIQUE_ID_g6_is_space243 __UNIQUE_ID_key_mappings242 __UNIQUE_ID_license241 __UNIQUE_ID_description240 __UNIQUE_ID_author239 .LC9 devm_kmalloc hid_unregister_driver hid_hw_start __this_module param_get_bool __hid_register_driver cleanup_module kfree hid_hw_stop __fentry__ init_module _printk refcount_warn_saturate _dev_info devm_add_action __list_add_valid _dev_err hid_compare_device_paths mutex_lock hid_hw_open param_set_bool hid_hw_close __list_del_entry_valid _dev_warn __x86_return_thunk input_event mutex_unlock kmalloc_trace hid_open_report kmalloc_caches __mod_hid__cougar_id_table_device_table             :             I   5             l      Q             p      p             q      u          J             J             I                          :             9             F             9             :                l                                      p                         !            #       1         :   7         E   J         I   Q         :   d         I   v            a       {         I            :            I               @               C            G               @               K            8            =   !         :   E         1   `         M   j                            3                                  @               C               \                  `                  `               B                              ?   4            @      9         K   A         9   P         I   W            @      \         K            D            N   ,                L               d                  `               @               d                  `      O         =   ^         =   j            @      t         K             :                                  4                                          6   
                               H                                    0       #          <   )             {      1                    ;                    D                    P             {      \             q      a          <   t             `       y          >             0             I                >                 A                A                   0                 A                A                                     2                                                                                                    0      (             P      0                   8                                                           h             0      p          5                         H                 4                        `                                                                                 I                   c                   z                                      O                                                                                                     #                                                                                                            $                    (                    ,                    0             %      4             0      8             6      <             I      @             N      D             P      H                   L                   P                   T                   X                   \                   `                   d                   h                    l             '      p             3      t             <      x             =      |             D                   H                   I                   K                   M                   O                   T                                                                                                                        f                                                                                                                          O                            0                    8                    H                     h             P      P            P      X            P      `            `      h            `                 7                      ;           8         ;           P         7            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .rela.smp_locks .rela.rodata .rela__param .modinfo .rodata.cst2 .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                           @       $                              .                     d       <                              ?                                                         :      @               x;      H      *                    J                     '                                    E      @               A      x       *                    Z                     F                                    U      @               8B            *                    n                                                          i      @               HD      0       *   	                 y      2                     V                                                  b      @                                    @               xD             *                          2                                                                       @                                          @               8E      0       *                                         `                                           @               hE      0       *                                               (                                    @               E      `       *                                                                                                 	                                                        	                                           @               E             *                                         	      &                             
                    
                                         @               F            *                                                                             ,                                                        '     @               PK             *                    7                    H                                    2     @               @L             *                    G                    P                                    B     @               XL             *   !                 W                                        @               R     @               pL      0       *   #                 q                                                          v     0                      P                                                  P                                                          P      w                                                  .                                                          .            +   1                 	                      `6                                                         L                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  p*l#pQL*ǁ9^.fKՈ8p׻Iēi[zZ*d%͹@SW3Qߵ<NabbÏtJ_<'LcD(ۑQ3ʥ>l2P`	L~/;|In
?ݢOdѾsr+S=
;Wӄ2d[j">;Ԡz>LKrd+ӂ 51ɋ(_ WqXv*^jg 2[Lt[vzG         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    5          @     @ ) (          GNU $B@Xk	FL4        Linux                Linux   6.1.0-35-amd64              HH~H,      HH  H9HAHhH   H  q s r H   HG(  HAt   HpHg i j  Hp H` l  Hp(H   eHp0H  Hp8H Hp@HH@    H@    HpHH	 HpPHw0HHH9ug01    f            U1A   SDJ1҉LHD)уHH	ƃuH@HH  HHHHHH1
HH,t\     H9uHlCftCH;          H;1ɉ       H;111    1[]    1    H  HH        ff.         UH  
  h   SHHH    HtE,     HHXHH          -   H        H[]        H    H    H        H    HD$    D$    H    HD$    D$    H                                                hid_creative_sb0540 parse failed
 hw start failed
 creative-sb0540           Could not get a key for main_code %llX
                               1                                                      anmlqkjsihgfenbc{krx~urqw|s}vyz}ztpou{xv|wlicense=GPL description=HID Creative SB0540 receiver author=Bastien Nocera <hadess@hadess.net> alias=hid:b0003g*v0000041Ep00003100 depends=hid retpoline=Y intree=Y name=hid_creative_sb0540 vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                                                                                                                                                                                                                                        m    __fentry__                                              9[    __x86_return_thunk                                      
IR    __hid_register_driver                                   a    input_event                                             Ë    _dev_err                                                &;    devm_kmalloc                                            4s    hid_open_report                                         q    hid_hw_start                                            ;    hid_unregister_driver                                   e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                   hid_creative_sb0540                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0         T  T    ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J                    F     ,          
 A   h   ` +U      ;5 J @   A                      ,              ;              
         A       B    x         
   ;5 J [   c $B           
   ;5 J  D Wr F 4
  @ W   b     :B           
   ;5 J o= D XB           
   ;5 J X> B      &     yB            
t                 
          
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code creative_sb0540 keymap creative_sb0540_driver_exit creative_sb0540_driver_init creative_sb0540_probe creative_sb0540_input_mapping creative_sb0540_input_configured creative_sb0540_raw_event  hid-creative-sb0540.ko  ~aR                                                                                                   	                      
                                                                                        _       $                          -                   :                   S            	       i                   }            <                                       $                                                            8                                           2    @       X       H          x       ^            8       y   	                                                                  0                                     )       4    5       *       J                     W                     m                     z                                          	                                                                                                                                   0                             __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 creative_sb0540_input_mapping creative_sb0540_driver_init creative_sb0540_driver creative_sb0540_input_configured creative_sb0540_raw_event creative_sb0540_codes creative_sb0540_probe creative_sb0540_probe.cold creative_sb0540_driver_exit __UNIQUE_ID___addressable_cleanup_module243 __UNIQUE_ID___addressable_init_module242 creative_sb0540_devices __UNIQUE_ID_license241 __UNIQUE_ID_description240 __UNIQUE_ID_author239 devm_kmalloc hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module __fentry__ init_module _dev_err __x86_return_thunk input_event __mod_hid__creative_sb0540_devices_device_table hid_open_report               '             *             '             *            '   u            @                +            +            +            *            *                                )            '            !   5         -   =                   J         #   R            ]         *             '                                  $                                          %                "                 )                R                          +          )   4             R                                     "                                                                                                                                                                 
                                                                              \                                                                                                                                                                                         $                   (                   ,                   0                   4                   8                   <             Z      @             [      D             \      H             a      L             h      P                     T                    X                     \             8       `                     d                                  3                            0                   H                    p                                                    &                      (           8         (           P         &            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rela__mcount_loc .rodata.str1.1 .rela.smp_locks .rodata.str1.8 .rodata .modinfo .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                            h                             :      @               h,            &                    J                                                         E      @               H.      x       &                    Z                     '      8                              U      @               .             &                    n                     _                                    i      @               P/      0       &   	                 ~                     k      (                              y      @               /      x       &                          2                     C                                                                                            @               /      0       &                          2                     (                                                                                                                                                                                                                @               (0      x       &                                                                                                  a      h                                    @               0      p      &                                                                             
                    `	      8                                   @               3             &                                        
                                         @               3             &                    (                    
                                    #     @               3             &                    8                    
                    @               3     @               3      0       &                    R                    @                                     W     0               @      P                             `                                                          p                           7                             u                     $                                                          $      P      '   !                 	                      8)      ,                                                    4                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  [%}pqzKrUp+/6dX3`șAe[w
BV[Cr|MYǌt*އ	H63 aJZCr[svvx'o9^4nr/gN(zPǌbN1DC%sȩ
V>ة7o5	sz'v
$c         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    4          @     @ * )          GNU ,]$Nsqppc_        Linux                Linux   6.1.0-35-amd64      1H  tyt19 	     fyuI @         H1(  t5HvxHt,DBEt"LH  At: 	 tfzuAu&    LIHLELH     H~   D    ff.     @     SHHHFHH          -   H        H[    ff.         SHH  HHIIAuMunH[    2v1tAHڀ:)tV9s͉AHڀ:)uAxH߀?uApHH)>DD@:A1A9u;u{u{	w{m{c{ Y{O{<E{
    6    H    H    H        H  H    D$    D$    H  H    D$    D$    H  H            fC    H                                                      hid_cypress parse failed
 hw start failed
 cypress  fixing up varmilo VA104M consumer control report descriptor
 license=GPL alias=hid:b0003g*v000004B4p000007B1 alias=hid:b0003g*v000004B4p00000001 alias=hid:b0003g*v000004B4p0000ED81 alias=hid:b0003g*v000004B4p0000BCA1 alias=hid:b0003g*v000004B4p0000DE64 alias=hid:b0003g*v000004B4p0000DE61 depends=hid retpoline=Y intree=Y name=hid_cypress vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                        a                  d                                                                                                                                                                                                                                                                                                                                        m    __fentry__                                              9[    __x86_return_thunk                                      
IR    __hid_register_driver                                   a    input_event                                             4s    hid_open_report                                         q    hid_hw_start                                            Ë    _dev_err                                                ;    hid_unregister_driver                                   o    _dev_info                                               e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                   hid_cypress                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0             b  ;               5!        #u            @   ov              
: ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  @    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> B @  ,       o= D   x=       }=              > = 
  `  ]  `       = `      = `      [        *  <   <      Wr G    = H  B  =    @B       `B    J B  = K   B  =    B         A =   H   ]  `       X> B      +U             n_ K   @  = `     <              C =       ]  `       Wr F    ,        p(               ?            F              E = ;    > U      >    @   > U     B       > O    *>    @  :>    `  H>             5!       #u            v        *  M    W>    @  _> P   k> Q    t> TG    "      u  R   > T    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? N   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? V    ? X @  ? Z   ? \   ? ^        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               I @     @        (@ `   @   4@ L               B       C@      L@     [@    m@    ~@      @     @    @           =            K       @   8    ?       { c @   @ `      @ *       e @    g     Z   @ h    @ j @  A k   @  m   X> ^    A o @  A q   )A q   6A s    GA u @    w     V    V    u    @         Q WA 
  h   L  V       Z @   Y  V    0  Z    N  y     V @  ה  {   %  V   eA }    qA  @  1    A    A              S       
       J        U       
       J               W       
        J        Y       
        J     F     @               [       
        J     B        ] A      =               
_ A      A        A        A    @          
a        ;       
K       J     K          d       
       J     c        f        `       
       J     B                      i        b       
       J     F     @               l       
U      J     U                n       
       J     D     F     @                     p       
       J     D        r       
        J     F     @        t       
       J              v       
       J               x       
        J     B               z       
       J            U      Q                        |       
       J     U      Q          ~       
       J                                    
K       J                    ;              
 A       A    x         
   A J [   c A           
   A J Wr F 4
  @ A     B           
   A J  D Wr F 4
  @ W   b     
B           
U  A J > U  B    B            
t                 
          
 hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code cp_driver_exit cp_driver_init hdev cp_probe cp_event cp_input_mapped cp_report_fixup   hid-cypress.ko  ²!F                                                                                                   	                                                                                                                     $            0       $       +     T       $       @     x       $       U            $       j            $                                                                            	                                    <                                      $                   8                          .            8      8    @              A           D       J            @       X   	                g                  w    @       #                                                                                                                           +                     A                     N                   \                     r   	                                                                                                                                                                  __UNIQUE_ID_alias199 __UNIQUE_ID_alias198 __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 cp_input_mapped cp_driver_init cp_driver cp_event cp_probe cp_probe.cold cp_driver_exit cp_report_fixup cp_report_fixup.cold __UNIQUE_ID_license241 __UNIQUE_ID___addressable_cleanup_module240 __UNIQUE_ID___addressable_init_module239 cp_devices .LC5 __mod_hid__cp_devices_device_table hid_unregister_driver hid_hw_start __this_module __hid_register_driver cleanup_module __fentry__ init_module _dev_info _dev_err __x86_return_thunk input_event hid_open_report                 +   $          /   A          +             /             0             +             1                          '                               /   !         +   K         /               <                 +                                  (                                          )   
                              .                      *                    3          .   <                   J                     O          -   V          $   _             B                                     &                                                           @                                                              2                     #                                                           J                                         8                    @                                                                                                                              $                   (                    ,             &      0             J      4             O      8                   <                     @                    D                     H             @       L             c       P                     T                                  +                            0                    X             @       h                    x                                *                      ,           8         ,           P         *            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rela__mcount_loc .rela.smp_locks .rodata.str1.1 .rodata.str1.8 .modinfo .rodata .rodata.cst2 .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                             @       $                              .                     d       <                              ?                                                         :      @               +      P      '                    J                                                         E      @               ,      x       '                    Z                           c                              U      @               `-             '                    n                     2                                    i      @               P.      0       '   	                 ~                     >      (                              y      @               .      x       '                                         h                                          @               .             '   
                       2               l      3                                   2                     =                                                        R                                                  @                                                                                                                                                            @               /      `       '                                                                                                  ~      X                                    @               p/            '                    
                                                                            `	      8                                   @               1             '                    %                    
                                          @               2             '                    5                    
                                    0     @               (2             '                    E                    
                    @               @     @               @2      0       '                     _                    @                                     d     0               @      P                             m                                                          }                           ^                                                  #                                                          $            (   %                 	                      (                                                         p2                                   0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  Bbv|FgMlw샦tf_3DOxEVImkܠ],+(޶r1#
vg(v?VޣPz>߮hϓLS,{8(]'1oȖDUZ14`DخO<#g2Z^r/85I/h8BW>eLn0^ ]kWEA|w(         ~Module signature appended~
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ELF          >                    p4          @     @ ' &          GNU #C
< I        Linux                Linux   6.1.0-35-amd64      vESHH<t
H[    DȀ<uuAA<uD$<)uD<uu        ff.         SG<H=   wD=      a   =   u jA   A   j   VAYAZH[    =
  w;=  w
-   wߋjH޹   jA   A   HY^[    =  ujA   A   j   XHZ[    :/v~.x~/n    jA   A   j   H_AX[        H    H    H        H    H  DD$$    $t$ DD$A@4D$AP@4   )    H  H        C/     H        hid_elecom elecom                              Fixing up Elecom mouse button count
    Fixing up Elecom BM084 report descriptor
 license=GPL alias=hid:b0003g*v0000056Ep0000011C alias=hid:b0003g*v0000056Ep0000010D alias=hid:b0003g*v0000056Ep0000010C alias=hid:b0003g*v0000056Ep000000FF alias=hid:b0003g*v0000056Ep000000FE alias=hid:b0003g*v0000056Ep000000FD alias=hid:b0003g*v0000056Ep000000FC alias=hid:b0003g*v0000056Ep000000FB alias=hid:b0003g*v0000056Ep000000E6 alias=hid:b0005g*v0000056Ep00000061 depends=hid retpoline=Y intree=Y name=hid_elecom vermagic=6.1.0-35-amd64 SMP preempt mod_unload modversions                                  n  a                  n                    n                    n                    n                    n                    n                    n                   n  
                 n                                                                                                                                                                                                                                                                                                                                                                                                                            m    __fentry__                                              
IR    __hid_register_driver                                   9[    __x86_return_thunk                                      o    _dev_info                                               ;    hid_unregister_driver                                   e:X    module_layout                                                                                                                                                                                                                                                                                                                                                                                                                                   hid_elecom                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               GCC: (Debian 12.2.0-14+deb12u1) 12.2.0  GCC: (Debian 12.2.0-14+deb12u1) 12.2.0                      
t             :              
; ;               5!        #u            @   ov              
= ;      ;     ;    	<    <    -<      <<        *         4
     @   /!     `   G<      ;5        Q<        b<    @   n<    `   <    h        p   *        <       <       <       <       <                      <    @   4
  C    <               <       <       <    @  =    `  A           
=      =    @  /=    `  ?=      P=      a=             K      X> E @  ,       o= G   x=       }=              A = 
  `  ]  `       = `      = `      [        *  ?   <      Wr J    = K  B  =    @B       `B    M B  = K   B  =    B         D =   H   ]  `       X> E      +U             n_ K   @  = `     <              F =       ]  `       Wr I    ,        p(               B            I              H = ;    > U      >    @   > U     B       > R    *>    @  :>    `  H>             5!       #u            v        *  P    W>    @  _> S   k> Q    t> TG    "      u  U   > W    > G  @  >    @  > @    >      >      >       >       >    @  ?    `  ? Q   '? K     ;? H            R?    @  4    `  Z?      i? K      `     t? k   @  {? k           	      `      ov  k     ? Y    ? [ @  ? ]   ? _   ? a        @  NR      ?     ?      ? `   @  ? *    @ D     H/  0    [               L @     @        (@ `   @   4@ O               E       C@      L@     [@    m@    ~@      @     @    @           @            N       @   8    ?       { f @   @ `      @ *       h @    j     ]   @ k    @ m @  A n   @  p   X> a    A r @  A t   )A t   6A v    GA x @    z     Y    Y    u    @         T WA 
  h   L  Y       ] @   Y  Y    0  ]    N  |     Y @  ה  ~   %  Y   eA     qA  @  1    A    A              V       
       M        X       
       M               Z       
        M        \       
        M     I     C               ^       
        M     E        ` A      =               
b A      A        A        A    @          
d        >       
K       M     K          g       
       M     f        i        c       
       M     E                      l        e       
       M     I     C               o       
U      M     U                q       
       M     G     I     C                     s       
       M     G        u       
        M     I     C        w       
       M              y       
       M               {       
        M     E               }       
       M            U      Q                               
       M     U      Q                 
       M                                    
K       M                    >              
 A       A    x         
U  A M > U  B     B           
    A M > U  B    B    %B    1B    DB    YB    bB     hid_device_id hid_report_type HID_INPUT_REPORT HID_OUTPUT_REPORT HID_FEATURE_REPORT HID_REPORT_TYPES hid_collection parent_idx hid_usage collection_index usage_index resolution_multiplier wheel_factor hat_min hat_max hat_dir wheel_accumulated hid_field application maxusage report_offset report_size report_count report_type usages_priorities logical_minimum logical_maximum physical_minimum physical_maximum unit_exponent hidinput dpad slot_idx hid_report hidinput_list field_entry_list field_entries maxfield tool_active tool hid_input reports hid_field_entry hid_device dev_rdesc dev_rsize rdesc collection collection_size maxcollection maxapplication country report_enum led_work driver_input_lock ll_driver ll_open_lock ll_open_count battery battery_capacity battery_min battery_max battery_report_type battery_report_id battery_charge_status battery_status battery_avoid_query battery_ratelimit_time claimed initial_quirks io_started hiddev hidraw ff_init hiddev_connect hiddev_disconnect hiddev_hid_event hiddev_report_event debug_rdesc debug_events debug_list debug_list_lock debug_wait hid_report_enum numbered report_list report_id_hash hid_type HID_TYPE_OTHER HID_TYPE_USBMOUSE HID_TYPE_USBNONE hid_battery_status HID_BATTERY_UNKNOWN HID_BATTERY_QUERIED HID_BATTERY_REPORTED hid_driver dyn_list dyn_lock report_table raw_event usage_table report_fixup input_mapping input_mapped input_configured feature_mapping hid_ll_driver raw_request output_report may_wakeup max_buffer_size hid_report_id hid_usage_id usage_hid usage_type usage_code elecom_driver_exit elecom_driver_init hdev elecom_report_fixup button_bit_count padding_bit button_report_size button_usage_maximum nbuttons mouse_button_fixup    hid-elecom.ko   v.                                                                                               	                                                                                                                     $            0       $       +     T       $       @     x       $       U            $       j            $                   $                  $            ,      $            P      $            t                                                            	       &                 :          <       R                   [           $       c                   v            8                  T                   M           `       
          M                 	                                                      2                   [                  j                                                               	                                                                                                                     __UNIQUE_ID_alias203 __UNIQUE_ID_alias202 __UNIQUE_ID_alias201 __UNIQUE_ID_alias200 __UNIQUE_ID_alias199 __UNIQUE_ID_alias198 __UNIQUE_ID_alias197 __UNIQUE_ID_alias196 __UNIQUE_ID_alias195 __UNIQUE_ID_alias194 __UNIQUE_ID_depends193 ____versions __UNIQUE_ID_retpoline192 __UNIQUE_ID_intree191 __UNIQUE_ID_name190 __UNIQUE_ID_vermagic189 _note_10 _note_9 elecom_driver_init elecom_driver mouse_button_fixup mouse_button_fixup.cold elecom_report_fixup elecom_report_fixup.cold elecom_driver_exit __UNIQUE_ID_license244 __UNIQUE_ID___addressable_cleanup_module243 __UNIQUE_ID___addressable_init_module242 elecom_devices hid_unregister_driver __this_module __hid_register_driver cleanup_module __fentry__ init_module _dev_info __x86_return_thunk __mod_hid__elecom_devices_device_table             *              -   K             P          -   a          *             -             -   #         -   A            I       i         -             *                                  '                                          (                                  ,   I                    W             (       \          ,   e                                                   &                                                           `                                         O                                                            "                   h                                                                                                                         $                    O                    T                     `       $             f       (                    ,                    0                    4                    8                    <                    @                    D                    H                    L                    P                    T                    X                   \                   `                   d             !      h             "      l             '      p             I      t             W      x             e      |             g                   h                   m                                                                                 M                    i                                                                                          h             `                  )                      +           8         +           P         )            .symtab .strtab .shstrtab .note.gnu.build-id .note.Linux .rela.text .rela.init.text .rela.text.unlikely .rela.exit.text .rodata.str1.1 .rela__mcount_loc .rodata.str1.8 .modinfo .rodata .rela.return_sites .orc_unwind .rela.orc_unwind_ip __versions .rela.data .rela.exit.data .rela.init.data .rela.gnu.linkonce.this_module .bss .comment .note.GNU-stack .BTF .gnu_debuglink                                                                                          @       $                              .                     d       <                              ?                            m                             :      @               x+             $                    J                     
                                    E      @               h,      x       $                    Z                     ,      i                              U      @               ,             $                    n                                                         i      @               p-      0       $   	                 y      2                                                                                                                 @               -      H       $                          2                     R                                                  "                                                                                                                  (                                          @               -             $                                         @                                                         6                                          @               x.            $                                                                                                  `	      8                                    @               P2      H       $                                        
                                         @               2             $                                        
                                         @               2             $                    (                    
                    @               #     @               2      0       $                    B                    @                                     G     0               @      P                             P                                                          `                           Y                             e                     #                                                           $      h      %   &                 	                      h(                                                         2      t                             0	*H
01
0	`He0	*H
1a0]080 10UDebian Secure Boot CA2(oe:B&C0	`He0
	*H
  2M,F6!mYC4Rr Gp*^.QJOJZc_@(ԄiF]"tntց!66S3SqȾ&ˀ;7CbZYPߨw]aP1QW33fC4>[˚HԠ:}8:Yi>ّ{!4wN8W_̉[ن)Q,F❽ȵC(6c>.7V:]&q1z#nl PvtE?ۿX!U_         ~Module signature appended~
             L  .   wL  ..  M  LICENSE.BSD M  package.jsonM  distM  	ChangeLog   M  	README.md   M bin                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           t